- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
67 lines
2.3 KiB
Java
67 lines
2.3 KiB
Java
package com.vungle.ads.fpd;
|
|
|
|
import com.ironsource.mediationsdk.utils.IronSourceConstants;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.ranges.IntRange;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public enum MonthlyHousingCosts {
|
|
UNDER_500(0, new IntRange(Integer.MIN_VALUE, 500)),
|
|
FROM_500_TO_1000(1, new IntRange(501, 1000)),
|
|
FROM_1000_TO_1500(2, new IntRange(1001, 1500)),
|
|
FROM_1500_TO_2000(3, new IntRange(1501, 2000)),
|
|
FROM_2000_TO_2500(4, new IntRange(2001, 2500)),
|
|
FROM_2500_TO_3000(5, new IntRange(2501, 3000)),
|
|
FROM_3000_TO_3500(6, new IntRange(3001, IronSourceConstants.BN_AUCTION_REQUEST)),
|
|
FROM_3500_TO_4000(7, new IntRange(IronSourceConstants.BN_AUCTION_FAILED, 4000)),
|
|
FROM_4000_TO_4500(8, new IntRange(IronSourceConstants.NT_LOAD, IronSourceConstants.NT_AUCTION_REQUEST)),
|
|
OVER_4500(9, new IntRange(IronSourceConstants.NT_AUCTION_FAILED, Integer.MAX_VALUE));
|
|
|
|
public static final Companion Companion = new Companion(null);
|
|
private final int id;
|
|
private final IntRange range;
|
|
|
|
public final int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public final IntRange getRange() {
|
|
return this.range;
|
|
}
|
|
|
|
MonthlyHousingCosts(int i, IntRange intRange) {
|
|
this.id = i;
|
|
this.range = intRange;
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final MonthlyHousingCosts fromCost$vungle_ads_release(int i) {
|
|
MonthlyHousingCosts monthlyHousingCosts;
|
|
MonthlyHousingCosts[] values = MonthlyHousingCosts.values();
|
|
int length = values.length;
|
|
int i2 = 0;
|
|
while (true) {
|
|
if (i2 >= length) {
|
|
monthlyHousingCosts = null;
|
|
break;
|
|
}
|
|
monthlyHousingCosts = values[i2];
|
|
IntRange range = monthlyHousingCosts.getRange();
|
|
int first = range.getFirst();
|
|
if (i <= range.getLast() && first <= i) {
|
|
break;
|
|
}
|
|
i2++;
|
|
}
|
|
return monthlyHousingCosts == null ? MonthlyHousingCosts.UNDER_500 : monthlyHousingCosts;
|
|
}
|
|
}
|
|
}
|