static bool isLowerHexChar(char c) { ret c >= '0' && c <= '9' || c >= 'a' && c <= 'f'; }