gitextract_2i5rc5bq/ ├── .gitignore ├── LICENSE ├── README.md ├── README.md.txt ├── gconfig.py ├── ljd/ │ ├── __init__.py │ ├── ast/ │ │ ├── __init__.py │ │ ├── builder.py │ │ ├── helpers.py │ │ ├── locals.py │ │ ├── mutator.py │ │ ├── nodes.py │ │ ├── slotworks.py │ │ ├── traverse.py │ │ ├── unwarper.py │ │ └── validator.py │ ├── bytecode/ │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── debuginfo.py │ │ ├── helpers.py │ │ ├── instructions.py │ │ └── prototype.py │ ├── lua/ │ │ ├── __init__.py │ │ └── writer.py │ ├── pseudoasm/ │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── instructions.py │ │ ├── prototype.py │ │ └── writer.py │ ├── rawdump/ │ │ ├── __init__.py │ │ ├── code.py │ │ ├── constants.py │ │ ├── debuginfo.py │ │ ├── header.py │ │ ├── parser.py │ │ └── prototype.py │ └── util/ │ ├── __init__.py │ ├── binstream.py │ ├── indentedstream.py │ └── log.py ├── main.py └── test/ ├── breaks.lua ├── expression.lua ├── ifs.lua ├── loop.lua └── primitive.lua