- 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
60 lines
1.3 KiB
Java
60 lines
1.3 KiB
Java
package com.applovin.impl;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class w0 {
|
|
private final Map a;
|
|
private final List b;
|
|
|
|
public Map a() {
|
|
return this.a;
|
|
}
|
|
|
|
public List b() {
|
|
return this.b;
|
|
}
|
|
|
|
public String toString() {
|
|
return "AppAdsTxt(domainEntries=" + a() + ", invalidEntries=" + b() + ")";
|
|
}
|
|
|
|
public w0(Map map, List list) {
|
|
this.a = map;
|
|
this.b = list;
|
|
}
|
|
|
|
public boolean a(Object obj) {
|
|
return obj instanceof w0;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof w0)) {
|
|
return false;
|
|
}
|
|
w0 w0Var = (w0) obj;
|
|
if (!w0Var.a(this)) {
|
|
return false;
|
|
}
|
|
Map a = a();
|
|
Map a2 = w0Var.a();
|
|
if (a != null ? !a.equals(a2) : a2 != null) {
|
|
return false;
|
|
}
|
|
List b = b();
|
|
List b2 = w0Var.b();
|
|
return b != null ? b.equals(b2) : b2 == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
Map a = a();
|
|
int hashCode = a == null ? 43 : a.hashCode();
|
|
List b = b();
|
|
return ((hashCode + 59) * 59) + (b != null ? b.hashCode() : 43);
|
|
}
|
|
}
|