package c;

import java.io.Serializable;

/* JADX INFO: compiled from: Tuples.kt */
/* JADX INFO: loaded from: classes.dex */
public final class d<A, B> implements Serializable {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private final A f1413b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    private final B f1414c;

    public d(A a2, B b2) {
        this.f1413b = a2;
        this.f1414c = b2;
    }

    public final A a() {
        return this.f1413b;
    }

    public final B b() {
        return this.f1414c;
    }

    public final A c() {
        return this.f1413b;
    }

    public final B d() {
        return this.f1414c;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof d)) {
            return false;
        }
        d dVar = (d) obj;
        return c.q.d.j.a(this.f1413b, dVar.f1413b) && c.q.d.j.a(this.f1414c, dVar.f1414c);
    }

    public int hashCode() {
        A a2 = this.f1413b;
        int iHashCode = (a2 != null ? a2.hashCode() : 0) * 31;
        B b2 = this.f1414c;
        return iHashCode + (b2 != null ? b2.hashCode() : 0);
    }

    public String toString() {
        return '(' + this.f1413b + ", " + this.f1414c + ')';
    }
}
