def RandomToken(length): return ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(length))