gitextract_vav3an8l/ ├── .gitignore ├── GameplayScripts/ │ ├── auto_smite.py │ ├── auto_spell.py │ ├── base_script.py │ ├── champ_tracker.py │ ├── commons/ │ │ ├── __init__.py │ │ ├── damage_calculator.py │ │ ├── items.py │ │ ├── skills.py │ │ └── targeting.py │ ├── drawings.py │ ├── execution_notifier.py │ ├── map_awareness.py │ ├── object_viewer.py │ ├── orb_walker.py │ ├── spell_tracker.py │ ├── tf_card_picker.py │ ├── util_make_heightmap.py____ │ └── vision_tracker.py ├── LView/ │ ├── AntiCrack.cpp │ ├── AntiCrack.h │ ├── Benchmark.h │ ├── ConfigSet.cpp │ ├── ConfigSet.h │ ├── GameData.cpp │ ├── GameData.h │ ├── GameObject.cpp │ ├── GameObject.h │ ├── GameRenderer.cpp │ ├── GameRenderer.h │ ├── Input.cpp │ ├── Input.h │ ├── ItemInfo.h │ ├── ItemSlot.cpp │ ├── ItemSlot.h │ ├── LView.cpp │ ├── LView.vcxproj │ ├── LView.vcxproj.filters │ ├── LView.vcxproj.user │ ├── LeagueMemoryReader.cpp │ ├── LeagueMemoryReader.h │ ├── MapObject.cpp │ ├── MapObject.h │ ├── MemSnapshot.h │ ├── MemoryLoadable.h │ ├── Offsets.cpp │ ├── Offsets.h │ ├── Overlay.cpp │ ├── Overlay.h │ ├── PyGame.h │ ├── PyImguiInterface.h │ ├── PyStructs.h │ ├── Script.cpp │ ├── Script.h │ ├── ScriptManager.cpp │ ├── ScriptManager.h │ ├── Spell.cpp │ ├── Spell.h │ ├── SpellInfo.cpp │ ├── SpellInfo.h │ ├── SpellInterface.h │ ├── Structs.cpp │ ├── Structs.h │ ├── Texture2D.cpp │ ├── Texture2D.h │ ├── UnitInfo.cpp │ ├── UnitInfo.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Vector.h │ ├── boost_container-vc142-mt-gd-x32-1_75.pdb │ ├── boost_json-vc142-mt-gd-x32-1_75.pdb │ ├── boost_python39-vc142-mt-gd-x32-1_75.pdb │ ├── config.ini │ ├── data/ │ │ ├── ItemData.json │ │ ├── SpellData.json │ │ ├── SpellDataCustom.json │ │ └── UnitData.json │ ├── external_includes/ │ │ ├── Python-ast.h │ │ ├── Python.h │ │ ├── abstract.h │ │ ├── asdl.h │ │ ├── ast.h │ │ ├── bitset.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytesobject.h │ │ ├── cellobject.h │ │ ├── ceval.h │ │ ├── classobject.h │ │ ├── code.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── context.h │ │ ├── cpython/ │ │ │ ├── abstract.h │ │ │ ├── bytearrayobject.h │ │ │ ├── bytesobject.h │ │ │ ├── ceval.h │ │ │ ├── code.h │ │ │ ├── dictobject.h │ │ │ ├── fileobject.h │ │ │ ├── fileutils.h │ │ │ ├── frameobject.h │ │ │ ├── import.h │ │ │ ├── initconfig.h │ │ │ ├── interpreteridobject.h │ │ │ ├── listobject.h │ │ │ ├── methodobject.h │ │ │ ├── object.h │ │ │ ├── objimpl.h │ │ │ ├── pyerrors.h │ │ │ ├── pylifecycle.h │ │ │ ├── pymem.h │ │ │ ├── pystate.h │ │ │ ├── sysmodule.h │ │ │ ├── traceback.h │ │ │ ├── tupleobject.h │ │ │ └── unicodeobject.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dynamic_annotations.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── eval.h │ │ ├── exports.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── funcobject.h │ │ ├── genericaliasobject.h │ │ ├── genobject.h │ │ ├── graminit.h │ │ ├── grammar.h │ │ ├── import.h │ │ ├── internal/ │ │ │ ├── pegen_interface.h │ │ │ ├── pycore_abstract.h │ │ │ ├── pycore_accu.h │ │ │ ├── pycore_atomic.h │ │ │ ├── pycore_bytes_methods.h │ │ │ ├── pycore_byteswap.h │ │ │ ├── pycore_call.h │ │ │ ├── pycore_ceval.h │ │ │ ├── pycore_code.h │ │ │ ├── pycore_condvar.h │ │ │ ├── pycore_context.h │ │ │ ├── pycore_dtoa.h │ │ │ ├── pycore_fileutils.h │ │ │ ├── pycore_gc.h │ │ │ ├── pycore_getopt.h │ │ │ ├── pycore_gil.h │ │ │ ├── pycore_hamt.h │ │ │ ├── pycore_hashtable.h │ │ │ ├── pycore_import.h │ │ │ ├── pycore_initconfig.h │ │ │ ├── pycore_interp.h │ │ │ ├── pycore_object.h │ │ │ ├── pycore_pathconfig.h │ │ │ ├── pycore_pyerrors.h │ │ │ ├── pycore_pyhash.h │ │ │ ├── pycore_pylifecycle.h │ │ │ ├── pycore_pymem.h │ │ │ ├── pycore_pystate.h │ │ │ ├── pycore_runtime.h │ │ │ ├── pycore_sysmodule.h │ │ │ ├── pycore_traceback.h │ │ │ ├── pycore_tupleobject.h │ │ │ └── pycore_warnings.h │ │ ├── interpreteridobject.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longintrepr.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── namespaceobject.h │ │ ├── node.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── odictobject.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── osmodule.h │ │ ├── parsetok.h │ │ ├── patchlevel.h │ │ ├── picklebufobject.h │ │ ├── py_curses.h │ │ ├── pyarena.h │ │ ├── pycapsule.h │ │ ├── pyconfig.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pydtrace.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyfpe.h │ │ ├── pyframe.h │ │ ├── pyhash.h │ │ ├── pylifecycle.h │ │ ├── pymacconfig.h │ │ ├── pymacro.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrhex.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── pytime.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── symtable.h │ │ ├── sysmodule.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tracemalloc.h │ │ ├── tupleobject.h │ │ ├── typeslots.h │ │ ├── ucnhash.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ └── weakrefobject.h │ ├── external_libs/ │ │ ├── DxErr.lib │ │ ├── DxErr9.lib │ │ ├── X3DAudio.lib │ │ ├── XAPOFX.lib │ │ ├── XInput.lib │ │ ├── _tkinter.lib │ │ ├── boost_python39-vc142-mt-gd-x32-1_75.lib │ │ ├── boost_python39-vc142-mt-x32-1_75.lib │ │ ├── d3d10.lib │ │ ├── d3d10_1.lib │ │ ├── d3d11_beta.lib │ │ ├── d3d9.lib │ │ ├── d3dcompiler.lib │ │ ├── d3dx10.lib │ │ ├── d3dx10d.lib │ │ ├── d3dx11.lib │ │ ├── d3dx9.lib │ │ ├── d3dx9d.lib │ │ ├── d3dxof.lib │ │ ├── ddraw.lib │ │ ├── dinput8.lib │ │ ├── dsetup.lib │ │ ├── dsound.lib │ │ ├── dxgi.lib │ │ ├── dxgi_beta.lib │ │ ├── dxguid.lib │ │ ├── libboost_container-vc142-mt-gd-x32-1_75.lib │ │ ├── libboost_container-vc142-mt-x32-1_75.lib │ │ ├── libboost_json-vc142-mt-gd-x32-1_75.lib │ │ ├── libboost_json-vc142-mt-x32-1_75.lib │ │ ├── python3.lib │ │ ├── python39.lib │ │ ├── python39.pdb │ │ ├── python39_d.lib │ │ ├── python39_d.pdb │ │ ├── python3_d.lib │ │ ├── xapobase.lib │ │ └── xapobased.lib │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui.ini │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_log.txt │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── stb_image.h ├── LView.sln ├── README.md └── UtilityScripts/ ├── DownloadIcons.py ├── DownloadUnitData.py ├── GenerateItemData.py └── GenerateUnitData.py