Warkop v5.73.0版本的 MD5 值为:a4330ec2d6f5e146f59fc7622f3cdb45

以下内容为反编译后的 q.java 源代码,内容仅作参考


package is;

import androidx.annotation.NonNull;

public enum q {
    AUDIT_JSON_URL("https://c.paypal.com/r/v1/device/mg-audit"),
    DEVICE_INFO_URL("https://c.paypal.com/r/v1/device/client-metadata"),
    PRODUCTION_BEACON_URL("https://b.stats.paypal.com/counter.cgi"),
    PRODUCTION_JSON_URL("https://c.paypal.com/r/v1/device/mg"),
    RAMP_CONFIG_URL("https://www.paypalobjects.com/rdaAssets/magnes/magnes_android_rac.json"),
    REMOTE_CONFIG_URL("https://www.paypalobjects.com/rdaAssets/magnes/magnes_android_rec.json"),
    SANDBOX_DEVICE_INFO_URL("https://c.sandbox.paypal.com/r/v1/device/client-metadata"),
    SANDBOX_AUDIT_JSON_URL("https://c.sandbox.paypal.com/r/v1/device/mg-audit"),
    SANDBOX_PROD_JSON_URL("https://c.sandbox.paypal.com/r/v1/device/mg-audit"),
    STAGE_AUDIT_JSON_URL("https://www.stage2du13.stage.paypal.com/r/v1/device/mg-audit"),
    STAGE_PROD_JSON_URL("https://www.stage2du13.stage.paypal.com/r/v1/device/mg");


    private final String f73594c;

    q(String str) {
        this.f73594c = str;
    }

    @Override
    @NonNull
    public String toString() {
        return this.f73594c;
    }
}