├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── hwid_dec.c ├── hwid_extract.py └── ticket_decode.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/hwid-stuff/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/hwid-stuff/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/hwid-stuff/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/hwid-stuff/HEAD/README.md -------------------------------------------------------------------------------- /hwid_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/hwid-stuff/HEAD/hwid_dec.c -------------------------------------------------------------------------------- /hwid_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/hwid-stuff/HEAD/hwid_extract.py -------------------------------------------------------------------------------- /ticket_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massgravel/hwid-stuff/HEAD/ticket_decode.py --------------------------------------------------------------------------------