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,109 @@
package com.google.zxing.common.reedsolomon;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes3.dex */
public final class GenericGF {
public static final GenericGF AZTEC_DATA_6;
public static final GenericGF AZTEC_DATA_8;
public static final GenericGF AZTEC_PARAM;
public static final GenericGF DATA_MATRIX_FIELD_256;
public static final GenericGF MAXICODE_FIELD_64;
public static final GenericGF QR_CODE_FIELD_256;
public final int[] expTable;
public final int generatorBase;
public final int[] logTable;
public final GenericGFPoly one;
public final int primitive;
public final int size;
public final GenericGFPoly zero;
public static final GenericGF AZTEC_DATA_12 = new GenericGF(4201, 4096, 1);
public static final GenericGF AZTEC_DATA_10 = new GenericGF(IronSourceError.ERROR_RV_LOAD_FAIL_DUE_TO_INIT, 1024, 1);
public static int addOrSubtract(int i, int i2) {
return i ^ i2;
}
public int getGeneratorBase() {
return this.generatorBase;
}
public GenericGFPoly getZero() {
return this.zero;
}
static {
GenericGF genericGF = new GenericGF(67, 64, 1);
AZTEC_DATA_6 = genericGF;
AZTEC_PARAM = new GenericGF(19, 16, 1);
QR_CODE_FIELD_256 = new GenericGF(285, 256, 0);
GenericGF genericGF2 = new GenericGF(301, 256, 1);
DATA_MATRIX_FIELD_256 = genericGF2;
AZTEC_DATA_8 = genericGF2;
MAXICODE_FIELD_64 = genericGF;
}
public GenericGF(int i, int i2, int i3) {
this.primitive = i;
this.size = i2;
this.generatorBase = i3;
this.expTable = new int[i2];
this.logTable = new int[i2];
int i4 = 1;
for (int i5 = 0; i5 < i2; i5++) {
this.expTable[i5] = i4;
i4 <<= 1;
if (i4 >= i2) {
i4 = (i4 ^ i) & (i2 - 1);
}
}
for (int i6 = 0; i6 < i2 - 1; i6++) {
this.logTable[this.expTable[i6]] = i6;
}
this.zero = new GenericGFPoly(this, new int[]{0});
this.one = new GenericGFPoly(this, new int[]{1});
}
public GenericGFPoly buildMonomial(int i, int i2) {
if (i < 0) {
throw new IllegalArgumentException();
}
if (i2 == 0) {
return this.zero;
}
int[] iArr = new int[i + 1];
iArr[0] = i2;
return new GenericGFPoly(this, iArr);
}
public int exp(int i) {
return this.expTable[i];
}
public int log(int i) {
if (i == 0) {
throw new IllegalArgumentException();
}
return this.logTable[i];
}
public int inverse(int i) {
if (i == 0) {
throw new ArithmeticException();
}
return this.expTable[(this.size - this.logTable[i]) - 1];
}
public int multiply(int i, int i2) {
if (i == 0 || i2 == 0) {
return 0;
}
int[] iArr = this.expTable;
int[] iArr2 = this.logTable;
return iArr[(iArr2[i] + iArr2[i2]) % (this.size - 1)];
}
public String toString() {
return "GF(0x" + Integer.toHexString(this.primitive) + ',' + this.size + ')';
}
}