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,98 @@
package androidx.collection;
/* loaded from: classes.dex */
public final class FloatLongMapKt {
private static final MutableFloatLongMap EmptyFloatLongMap = new MutableFloatLongMap(0);
public static final FloatLongMap emptyFloatLongMap() {
return EmptyFloatLongMap;
}
public static final FloatLongMap floatLongMapOf() {
return EmptyFloatLongMap;
}
public static final FloatLongMap floatLongMapOf(float f, long j) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
return mutableFloatLongMap;
}
public static final FloatLongMap floatLongMapOf(float f, long j, float f2, long j2) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
mutableFloatLongMap.set(f2, j2);
return mutableFloatLongMap;
}
public static final FloatLongMap floatLongMapOf(float f, long j, float f2, long j2, float f3, long j3) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
mutableFloatLongMap.set(f2, j2);
mutableFloatLongMap.set(f3, j3);
return mutableFloatLongMap;
}
public static final FloatLongMap floatLongMapOf(float f, long j, float f2, long j2, float f3, long j3, float f4, long j4) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
mutableFloatLongMap.set(f2, j2);
mutableFloatLongMap.set(f3, j3);
mutableFloatLongMap.set(f4, j4);
return mutableFloatLongMap;
}
public static final FloatLongMap floatLongMapOf(float f, long j, float f2, long j2, float f3, long j3, float f4, long j4, float f5, long j5) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
mutableFloatLongMap.set(f2, j2);
mutableFloatLongMap.set(f3, j3);
mutableFloatLongMap.set(f4, j4);
mutableFloatLongMap.set(f5, j5);
return mutableFloatLongMap;
}
public static final MutableFloatLongMap mutableFloatLongMapOf() {
return new MutableFloatLongMap(0, 1, null);
}
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
return mutableFloatLongMap;
}
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j, float f2, long j2) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
mutableFloatLongMap.set(f2, j2);
return mutableFloatLongMap;
}
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j, float f2, long j2, float f3, long j3) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
mutableFloatLongMap.set(f2, j2);
mutableFloatLongMap.set(f3, j3);
return mutableFloatLongMap;
}
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j, float f2, long j2, float f3, long j3, float f4, long j4) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
mutableFloatLongMap.set(f2, j2);
mutableFloatLongMap.set(f3, j3);
mutableFloatLongMap.set(f4, j4);
return mutableFloatLongMap;
}
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j, float f2, long j2, float f3, long j3, float f4, long j4, float f5, long j5) {
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
mutableFloatLongMap.set(f, j);
mutableFloatLongMap.set(f2, j2);
mutableFloatLongMap.set(f3, j3);
mutableFloatLongMap.set(f4, j4);
mutableFloatLongMap.set(f5, j5);
return mutableFloatLongMap;
}
}