"""DIMENSION 3 SEASONS q8 (final): confirm the SeasonList deser is the SOLE populator of the season-list vector by enumerating every call [reg+0x898] site; confirm FUN_180174630 is the massinfo body handler; resolve atom names for the season keys. """ import traceback, struct try: print("### all call [reg+0x898] sites (season-vector consumers) ###") for modrm in range(0x90, 0x98): pat = bytes([0xff, modrm]) + struct.pack("= 2: try: v = int(parts[0], 0) except ValueError: try: v = int(parts[1], 0) except (ValueError, IndexError): continue parts = [parts[1], parts[0]] + parts[2:] if v in want: print(" ", hex(v), parts[1] if len(parts) > 1 else parts) except Exception as e: print(" tsv err", e) sys.stdout.flush() os._exit(0) except Exception: traceback.print_exc() sys.stdout.flush() os._exit(0)