package R0;

import java.io.Serializable;
import java.util.List;

/* JADX INFO: loaded from: classes.dex */
public final class a implements Serializable {

    /* JADX INFO: renamed from: k, reason: collision with root package name */
    public final List f2619k;

    /* JADX INFO: renamed from: l, reason: collision with root package name */
    public final Boolean f2620l;

    /* JADX INFO: renamed from: m, reason: collision with root package name */
    public final String f2621m;

    /* JADX INFO: renamed from: n, reason: collision with root package name */
    public final List f2622n;

    public a(List list, Boolean bool, String str, List list2) {
        this.f2619k = list;
        this.f2620l = bool;
        this.f2621m = str;
        this.f2622n = list2;
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj != null && a.class == obj.getClass()) {
            a aVar = (a) obj;
            List list = aVar.f2619k;
            List list2 = this.f2619k;
            if (list2 == null ? list != null : !list2.equals(list)) {
                return false;
            }
            Boolean bool = aVar.f2620l;
            Boolean bool2 = this.f2620l;
            if (bool2 == null ? bool != null : !bool2.equals(bool)) {
                return false;
            }
            String str = aVar.f2621m;
            String str2 = this.f2621m;
            if (str2 == null ? str != null : !str2.equals(str)) {
                return false;
            }
            List list3 = aVar.f2622n;
            List list4 = this.f2622n;
            if (list4 != null) {
                return list4.equals(list3);
            }
            if (list3 == null) {
                return true;
            }
        }
        return false;
    }

    public final int hashCode() {
        List list = this.f2619k;
        int iHashCode = (list != null ? list.hashCode() : 0) * 31;
        Boolean bool = this.f2620l;
        int iHashCode2 = (iHashCode + (bool != null ? bool.hashCode() : 0)) * 31;
        String str = this.f2621m;
        int iHashCode3 = (iHashCode2 + (str != null ? str.hashCode() : 0)) * 31;
        List list2 = this.f2622n;
        return iHashCode3 + (list2 != null ? list2.hashCode() : 0);
    }
}
