Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,108 @@
package kotlin.ranges;
import kotlin.collections.IntIterator;
import kotlin.internal.ProgressionUtilKt;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.markers.KMappedMarker;
/* loaded from: classes5.dex */
public class IntProgression implements Iterable, KMappedMarker {
public static final Companion Companion = new Companion(null);
public final int first;
public final int last;
public final int step;
public final int getFirst() {
return this.first;
}
public final int getLast() {
return this.last;
}
public final int getStep() {
return this.step;
}
public boolean isEmpty() {
if (this.step > 0) {
if (this.first <= this.last) {
return false;
}
} else if (this.first >= this.last) {
return false;
}
return true;
}
public IntProgression(int i, int i2, int i3) {
if (i3 == 0) {
throw new IllegalArgumentException("Step must be non-zero.");
}
if (i3 == Integer.MIN_VALUE) {
throw new IllegalArgumentException("Step must be greater than Int.MIN_VALUE to avoid overflow on negation.");
}
this.first = i;
this.last = ProgressionUtilKt.getProgressionLastElement(i, i2, i3);
this.step = i3;
}
@Override // java.lang.Iterable
public IntIterator iterator() {
return new IntProgressionIterator(this.first, this.last, this.step);
}
public boolean equals(Object obj) {
if (obj instanceof IntProgression) {
if (!isEmpty() || !((IntProgression) obj).isEmpty()) {
IntProgression intProgression = (IntProgression) obj;
if (this.first != intProgression.first || this.last != intProgression.last || this.step != intProgression.step) {
}
}
return true;
}
return false;
}
public int hashCode() {
if (isEmpty()) {
return -1;
}
return (((this.first * 31) + this.last) * 31) + this.step;
}
public String toString() {
StringBuilder sb;
int i;
if (this.step > 0) {
sb = new StringBuilder();
sb.append(this.first);
sb.append("..");
sb.append(this.last);
sb.append(" step ");
i = this.step;
} else {
sb = new StringBuilder();
sb.append(this.first);
sb.append(" downTo ");
sb.append(this.last);
sb.append(" step ");
i = -this.step;
}
sb.append(i);
return sb.toString();
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
public Companion() {
}
public final IntProgression fromClosedRange(int i, int i2, int i3) {
return new IntProgression(i, i2, i3);
}
}
}