22 lines
615 B
Java
22 lines
615 B
Java
package s3;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class b {
|
|
|
|
/* renamed from: a, reason: collision with root package name */
|
|
public static final char[] f8473a = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
|
|
|
|
public static final int a(char c4) {
|
|
if ('0' <= c4 && c4 < ':') {
|
|
return c4 - '0';
|
|
}
|
|
if ('a' <= c4 && c4 < 'g') {
|
|
return c4 - 'W';
|
|
}
|
|
if ('A' <= c4 && c4 < 'G') {
|
|
return c4 - '7';
|
|
}
|
|
throw new IllegalArgumentException("Unexpected hex digit: " + c4);
|
|
}
|
|
}
|