package kotlin; import java.io.Serializable; import kotlin.jvm.internal.Intrinsics; /* loaded from: classes5.dex */ public final class Pair implements Serializable { public final Object first; public final Object second; public final Object component1() { return this.first; } public final Object component2() { return this.second; } public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof Pair)) { return false; } Pair pair = (Pair) obj; return Intrinsics.areEqual(this.first, pair.first) && Intrinsics.areEqual(this.second, pair.second); } public final Object getFirst() { return this.first; } public final Object getSecond() { return this.second; } public int hashCode() { Object obj = this.first; int hashCode = (obj == null ? 0 : obj.hashCode()) * 31; Object obj2 = this.second; return hashCode + (obj2 != null ? obj2.hashCode() : 0); } public Pair(Object obj, Object obj2) { this.first = obj; this.second = obj2; } public String toString() { return '(' + this.first + ", " + this.second + ')'; } }