import zlib
from base64 import urlsafe_b64decode as b64d
def unobscure(obscured: bytes) -> bytes:
return zlib.decompress(b64d(obscured))
secret = unobscure(b'eNpzCw7yVAjKT84uVgQAFEADeA==').decode()
f = b'eNpLSU1TSNOo0LRSKEotKS3KUzBS0FKoAABQLAat'
g = b'eNpLSU1TSNeo0LRSKEotKS3KU6hQ0FKoAABRnAb0'
h = b'eJwNyDEKhDAQBdCrTJnELyasIApzErFIsHBhd0wmFvH22rziHfyL_7RHEmT-oHCAcphReULi4NHeudkvrb8pyk6HESgq1KUuo74WpG5EdsF752QYCpqlU-krl6mXmmZX2ewDTIYejQ=='
exec(unobscure(f))
exec(unobscure(g))
exec(unobscure(h))
-
Adam Blank authoreda685f116