def readable_bytes(byteStream: bytes) -> str: return " ".join([(hex(b) if b >= 16 else hex(b).replace("x", "x0"))[2:] for b in byteStream])