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,85 @@
package com.amazonaws.services.cognitoidentity.model;
import com.amazonaws.AmazonWebServiceRequest;
import java.io.Serializable;
import java.util.Map;
/* loaded from: classes.dex */
public class GetIdRequest extends AmazonWebServiceRequest implements Serializable {
public String accountId;
public String identityPoolId;
public Map logins;
public String getAccountId() {
return this.accountId;
}
public String getIdentityPoolId() {
return this.identityPoolId;
}
public Map getLogins() {
return this.logins;
}
public GetIdRequest withAccountId(String str) {
this.accountId = str;
return this;
}
public GetIdRequest withIdentityPoolId(String str) {
this.identityPoolId = str;
return this;
}
public GetIdRequest withLogins(Map map) {
this.logins = map;
return this;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getAccountId() != null) {
sb.append("AccountId: " + getAccountId() + ",");
}
if (getIdentityPoolId() != null) {
sb.append("IdentityPoolId: " + getIdentityPoolId() + ",");
}
if (getLogins() != null) {
sb.append("Logins: " + getLogins());
}
sb.append("}");
return sb.toString();
}
public int hashCode() {
return (((((getAccountId() == null ? 0 : getAccountId().hashCode()) + 31) * 31) + (getIdentityPoolId() == null ? 0 : getIdentityPoolId().hashCode())) * 31) + (getLogins() != null ? getLogins().hashCode() : 0);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || !(obj instanceof GetIdRequest)) {
return false;
}
GetIdRequest getIdRequest = (GetIdRequest) obj;
if ((getIdRequest.getAccountId() == null) ^ (getAccountId() == null)) {
return false;
}
if (getIdRequest.getAccountId() != null && !getIdRequest.getAccountId().equals(getAccountId())) {
return false;
}
if ((getIdRequest.getIdentityPoolId() == null) ^ (getIdentityPoolId() == null)) {
return false;
}
if (getIdRequest.getIdentityPoolId() != null && !getIdRequest.getIdentityPoolId().equals(getIdentityPoolId())) {
return false;
}
if ((getIdRequest.getLogins() == null) ^ (getLogins() == null)) {
return false;
}
return getIdRequest.getLogins() == null || getIdRequest.getLogins().equals(getLogins());
}
}