├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── STYLE_GUIDE.rst ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── deleteme │ ├── articles │ ├── addingnewdatapacks.rst │ ├── conceptsinsc2reader.rst │ ├── creatingagameengineplugin.rst │ ├── gettingstarted.rst │ └── whatsinareplay.rst │ ├── conf.py │ ├── dataobjects.rst │ ├── decoders.rst │ ├── events │ ├── game.rst │ ├── index.rst │ ├── message.rst │ └── tracker.rst │ ├── factories.rst │ ├── faq.rst │ ├── index.rst │ ├── mainobjects.rst │ ├── plugins.rst │ ├── sc2reader.rst │ ├── supportobjects.rst │ ├── tutorials │ └── prettyprinter.rst │ └── utilities.rst ├── examples ├── sc2autosave.py └── sc2store.py ├── new_units.py ├── sc2dump.cpp ├── sc2reader ├── __init__.py ├── constants.py ├── data │ ├── HotS │ │ ├── 23925_abilities.csv │ │ ├── 23925_units.csv │ │ ├── 24247_abilities.csv │ │ ├── 24247_units.csv │ │ ├── 24764_abilities.csv │ │ ├── 24764_units.csv │ │ ├── base_abilities.csv │ │ └── base_units.csv │ ├── WoL │ │ ├── 16117_abilities.csv │ │ ├── 16117_units.csv │ │ ├── 17326_abilities.csv │ │ ├── 17326_units.csv │ │ ├── 18092_abilities.csv │ │ ├── 18092_units.csv │ │ ├── 19458_abilities.csv │ │ ├── 19458_units.csv │ │ ├── 22612_abilities.csv │ │ ├── 22612_units.csv │ │ ├── 24944_abilities.csv │ │ └── 24944_units.csv │ ├── __init__.py │ ├── ability_lookup.csv │ ├── attributes.json │ ├── command_lookup.csv │ ├── create_lookup.py │ ├── train_commands.json │ ├── unit_info.json │ └── unit_lookup.csv ├── decoders.py ├── engine │ ├── __init__.py │ ├── engine.py │ ├── events.py │ ├── plugins │ │ ├── __init__.py │ │ ├── apm.py │ │ ├── context.py │ │ ├── gameheart.py │ │ └── selection.py │ └── utils.py ├── events │ ├── __init__.py │ ├── base.py │ ├── game.py │ ├── message.py │ └── tracker.py ├── exceptions.py ├── factories │ ├── __init__.py │ ├── plugins │ │ ├── __init__.py │ │ ├── replay.py │ │ └── utils.py │ └── sc2factory.py ├── log_utils.py ├── objects.py ├── readers.py ├── resources.py ├── scripts │ ├── __init__.py │ ├── sc2attributes.py │ ├── sc2json.py │ ├── sc2parse.py │ ├── sc2printer.py │ ├── sc2replayer.py │ └── utils.py └── utils.py ├── setup.py ├── test_replays ├── 1.0.0.16117 │ └── 1.SC2Replay ├── 1.0.1.16195 │ ├── Arctic_vs_Froadac_5766.SC2Replay │ ├── Froadac_vs_Bunnies_5770.SC2Replay │ ├── Froadac_vs_Tetramaster_6031.SC2Replay │ ├── PredatorPR_vs_Froadac_5702.SC2Replay │ └── Taandey_vs_Froadac_5564.SC2Replay ├── 1.0.2.16223 │ ├── Froadac_vs_Jim_6063.SC2Replay │ ├── Froadac_vs_Pubu_5850.SC2Replay │ ├── Pete_vs_Froadac_6016.SC2Replay │ ├── Pseudo_vs_Froadac_5694.SC2Replay │ ├── Technqiue_vs_Froadac_5782.SC2Replay │ └── TvT_Epic-_Tanks_Thors_Banshees.SC2Replay ├── 1.0.3.16291 │ ├── 1v1_Scrap Station_1903.SC2Replay │ ├── Froadac_vs_Calin_5555.SC2Replay │ ├── Froadac_vs_Nissassa_5611.SC2Replay │ ├── Froadac_vs_Oppo_6033.SC2Replay │ ├── Froadac_vs_Zizzer_5984.SC2Replay │ └── RookJackson_vs_Froadac_5821.SC2Replay ├── 1.1.0.16561 │ ├── 1v1_Blistering Sands_1894.SC2Replay │ ├── 1v1_Lost Temple_1893.SC2Replay │ ├── 21087.SC2Replay │ ├── 2v2_Discord IV_18612.SC2Replay │ ├── 2v2_High Orbit_18613.SC2Replay │ ├── 2v2_High Orbit_18614.SC2Replay │ ├── 2v2_Scorched Haven_18616.SC2Replay │ ├── 2v2_Scorched Haven_18617.SC2Replay │ ├── 2v2_Tarsonis Assault_18994.SC2Replay │ ├── 2v2_Twilight Fortress_18620.SC2Replay │ ├── 3v3_Dig Site_11014.SC2Replay │ ├── Froadac_vs_Coontastik_5955.SC2Replay │ ├── Froadac_vs_Gileril_5958.SC2Replay │ ├── Froadac_vs_Shields_5952.SC2Replay │ ├── Ike_vs_Froadac_5957.SC2Replay │ ├── Triiptych_vs_EnS_9384.SC2Replay │ ├── UnknownEvent_0400.SC2Replay │ ├── WeirdInitializationEvent.SC2Replay │ ├── giMpygiMpy_vs_Kim_6731.SC2Replay │ └── test.SC2Replay ├── 1.1.1.16605 │ ├── 1v1_Delta Quadrant_316.SC2Replay │ ├── 1v1_Metalopolis_2039.SC2Replay │ ├── 1v1_Scrap Station_1939.SC2Replay │ ├── 1v1_Shakuras Plateau_1948.SC2Replay │ ├── 1v1_Shakuras Plateau_2881.SC2Replay │ ├── 1v1_Steppes of War_1959.SC2Replay │ ├── 1v1_iCCup Match Point_2037.SC2Replay │ ├── 2v2_Scorched Haven_1935.SC2Replay │ ├── Froadac_vs_Final_5948.SC2Replay │ ├── Protoss_vs_Froadac_5974.SC2Replay │ └── giMpygiMpy_vs_budsTOashes_6733.SC2Replay ├── 1.1.2.16755 │ ├── 1v1_Blistering Sands_341.SC2Replay │ ├── 1v1_Frontier_3005.SC2Replay │ ├── 1v1_Lost Temple_2032.SC2Replay │ ├── 1v1_Lost Temple_2059.SC2Replay │ ├── 1v1_Lost Temple_2060.SC2Replay │ ├── 1v1_Metalopolis_2061.SC2Replay │ ├── 1v1_Metalopolis_342.SC2Replay │ ├── 1v1_Xel'Naga Caverns_2031.SC2Replay │ ├── 1v1_iCCup Fighting Spirit_2058.SC2Replay │ └── Pro_vs_nubington_8448.SC2Replay ├── 1.1.3.16939 │ ├── 11.SC2Replay │ ├── 1v1_Blistering Sands_2747.SC2Replay │ ├── 1v1_Lost Temple_2347.SC2Replay │ ├── 1v1_Metalopolis_2019.SC2Replay │ ├── 23.SC2Replay │ ├── 2v2_Monlyth Ridge_3048.SC2Replay │ ├── 2v2_Monlyth Ridge_5906.SC2Replay │ ├── Froadac_vs_Tamgerine_6065.SC2Replay │ ├── IceNine_vs_nubington_8573.SC2Replay │ ├── Navedy_vs_Froadac_6018.SC2Replay │ ├── compLeX_vs_nubington_8515.SC2Replay │ ├── nubington_vs_BowmanSX_8570.SC2Replay │ └── nubington_vs_BowmanSX_8582.SC2Replay ├── 1.2.0.17326 │ ├── 1v1 with Referee.SC2Replay │ ├── 1v1_Shakuras Plateau_13.SC2Replay │ ├── 1v1_Shakuras Plateau_47.SC2Replay │ ├── 1v1_Steppes of War_200.SC2Replay │ ├── 9.SC2Replay │ ├── Antiochus_vs_nubington_8576.SC2Replay │ ├── Azure_vs_BillyMays_10803.SC2Replay │ ├── Finale_vs_nubington_8606.SC2Replay │ ├── KEVNITO_vs_sscciownU_10046.SC2Replay │ ├── UnknownEvent_041C.SC2Replay │ ├── UnknownEvent_043C.SC2Replay │ └── test1-2.SC2Replay ├── 1.2.1.17682 │ ├── 1v1_Lost Temple_3969.SC2Replay │ ├── 2v2_Scorched Haven_6473.SC2Replay │ ├── BowmanSX_vs_nubington_8614.SC2Replay │ ├── Deadiam_vs_McSwagger_6474.SC2Replay │ ├── Froadac_vs_BattleOtter_6040.SC2Replay │ ├── Laegoose_vs_nitrousx_4626.SC2Replay │ ├── Sharky_vs_trolli_4792.SC2Replay │ └── VTPokebunny_vs_LuckyFool_5768.SC2Replay ├── 1.2.2.17811 │ ├── 1.SC2Replay │ ├── 10.SC2Replay │ ├── 13.SC2Replay │ ├── 14.SC2Replay │ ├── 2.SC2Replay │ ├── 3.SC2Replay │ ├── 3v3_Colony 426_10434.SC2Replay │ ├── 4.SC2Replay │ ├── 5.SC2Replay │ ├── 6.SC2Replay │ ├── 7.SC2Replay │ ├── 8.SC2Replay │ ├── IbuFlaIVIZ_vs_Nilsson_10162.SC2Replay │ └── Nilsson_vs_Omyns_10164.SC2Replay ├── 1.3.0.18092 │ ├── 1v1_The Shattered Temple_2196.SC2Replay │ ├── 1v1_Typhon Peaks_2160.SC2Replay │ ├── 3v3_Ulaan Deeps_2216.SC2Replay │ ├── IPA_vs_EnsignLee_8178.SC2Replay │ ├── Tixx_vs_Nilsson_10167.SC2Replay │ ├── nubington_vs_sMiHorst_8641.SC2Replay │ ├── qxc_vs_PredY_9852.SC2Replay │ └── sMiHorst_vs_albertZERG_10345.SC2Replay ├── 1.3.1.18221 │ ├── 1v1_Metalopolis_2898.SC2Replay │ ├── 1v1_Shakuras Plateau_2877.SC2Replay │ ├── 1v1_Shakuras Plateau_2896.SC2Replay │ ├── 1v1_Tal'darim Altar LE_2875.SC2Replay │ ├── 1v1_The Shattered Temple_2870.SC2Replay │ ├── 1v1_Xel'Naga Caverns_2874.SC2Replay │ ├── Effergy_vs_naeblis_10404.SC2Replay │ ├── iLLUSiONFTW_vs_Nilsson_10170.SC2Replay │ ├── seawake_vs_Xzer_10761.SC2Replay │ └── tehsYs_vs_Nilsson_10175.SC2Replay ├── 1.3.2.18317 │ ├── 4v4_Outpost_10788.SC2Replay │ ├── Azure_vs_BillyMays_10805.SC2Replay │ ├── BadFurDay_vs_TheJester_5450.SC2Replay │ ├── Broom_vs_oTLTRO_5384.SC2Replay │ ├── DerDrahtige_vs_ThArGos_5452.SC2Replay │ ├── Ritsar_vs_Xzer_10778.SC2Replay │ ├── Viiper_vs_Auto_5386.SC2Replay │ ├── Zanti_vs_Metalreflux_5451.SC2Replay │ └── howdini_vs_cKio_5388.SC2Replay ├── 1.3.3.18574 │ ├── Gutterhulk.SC2Replay │ ├── HighOrbit.SC2Replay │ ├── Metalopolis (11).SC2Replay │ ├── Monlyth Ridge (6).SC2Replay │ ├── MonlythRidge.SC2Replay │ ├── Sand Canyon (6).SC2Replay │ ├── Shakuras Plateau (4).SC2Replay │ ├── Slag Pits.SC2Replay │ ├── Tempest.SC2Replay │ └── The Shattered Temple (4).SC2Replay ├── 1.3.4.18701 │ ├── 24415.SC2Replay │ ├── 24420.SC2Replay │ ├── 24422.SC2Replay │ ├── 24425.SC2Replay │ ├── 24427.SC2Replay │ ├── 24557.SC2Replay │ ├── 24558.SC2Replay │ ├── 24652.SC2Replay │ ├── 24758.SC2Replay │ └── 24761.SC2Replay ├── 1.3.5.19132 │ ├── 23815.SC2Replay │ ├── 24360.SC2Replay │ ├── 24363.SC2Replay │ ├── 24367.SC2Replay │ ├── 24369.SC2Replay │ ├── 24371.SC2Replay │ ├── 24648.SC2Replay │ ├── 24708.SC2Replay │ ├── 24805.SC2Replay │ ├── AmandilGMMA_vs_SCDZingy_20328.SC2Replay │ ├── iPStylin_vs_SCDTaCo_20332.SC2Replay │ └── tGKorlith_vs_iPStylin_20333.SC2Replay ├── 1.3.6.19269 │ ├── 24767.SC2Replay │ ├── 24768.SC2Replay │ ├── 24771.SC2Replay │ ├── 24775.SC2Replay │ ├── 24781.SC2Replay │ ├── 24782.SC2Replay │ ├── 24783.SC2Replay │ ├── 24785.SC2Replay │ ├── 24799.SC2Replay │ ├── 24803.SC2Replay │ ├── 24804.SC2Replay │ ├── 24807.SC2Replay │ └── 24808.SC2Replay ├── 1.4.0.19679 │ ├── 36465.SC2Replay │ ├── 36467.SC2Replay │ ├── 36469.SC2Replay │ ├── 36477.SC2Replay │ ├── 36480.SC2Replay │ ├── 36498.SC2Replay │ ├── 36501.SC2Replay │ ├── 36502.SC2Replay │ ├── 36503.SC2Replay │ ├── 36504.SC2Replay │ ├── 36508.SC2Replay │ ├── 36509.SC2Replay │ ├── 36512.SC2Replay │ ├── 36519.SC2Replay │ ├── 36520.SC2Replay │ ├── 36521.SC2Replay │ ├── 36523.SC2Replay │ ├── 36526.SC2Replay │ ├── 36527.SC2Replay │ ├── 36528.SC2Replay │ ├── 36529.SC2Replay │ ├── 36530.SC2Replay │ ├── 36531.SC2Replay │ ├── 36532.SC2Replay │ ├── 36534.SC2Replay │ ├── 36535.SC2Replay │ ├── 36536.SC2Replay │ ├── 36538.SC2Replay │ ├── 36539.SC2Replay │ ├── 36540.SC2Replay │ ├── 36541.SC2Replay │ ├── 36542.SC2Replay │ ├── 36654.SC2Replay │ ├── 36656.SC2Replay │ ├── 36657.SC2Replay │ ├── 36658.SC2Replay │ ├── 36659.SC2Replay │ ├── 36661.SC2Replay │ ├── 36662.SC2Replay │ ├── 36663.SC2Replay │ ├── Backwater+Gulch.SC2Replay │ ├── Discord IV (10).SC2Replay │ ├── Discord IV (11).SC2Replay │ ├── High Orbit (11).SC2Replay │ ├── Plunder+Isle.SC2Replay │ ├── Scorched Haven (23).SC2Replay │ ├── Shakuras Plateau (36).SC2Replay │ ├── Tal'darim Altar LE (24).SC2Replay │ ├── Tempest (6).SC2Replay │ ├── Tempest (7).SC2Replay │ ├── The Boneyard (10).SC2Replay │ ├── The Boneyard (11).SC2Replay │ ├── The Boneyard (9).SC2Replay │ ├── The Shattered Temple (26).SC2Replay │ ├── Typhon Peaks (18).SC2Replay │ └── Xel'Naga Caverns (56).SC2Replay ├── 1.4.3.21029 │ └── ggtracker_398754.SC2Replay ├── 1.5.3.23260 │ ├── Deadlock Ridge (110).SC2Replay │ ├── District 10 (68).SC2Replay │ └── ggtracker_109233.SC2Replay ├── 1.5.4.24540 │ ├── Deadlock Ridge (115).SC2Replay │ └── ggtracker_1471849.SC2Replay ├── 2.0.0.23260 │ └── test2v2.SC2Replay ├── 2.0.0.23925 │ ├── Akilon Wastes (2).SC2Replay │ ├── Akilon Wastes.SC2Replay │ ├── Antiga Shipyard.SC2Replay │ ├── Cloud Kingdom LE (2).SC2Replay │ ├── Cloud Kingdom LE.SC2Replay │ └── jakatak_lunar.SC2Replay ├── 2.0.0.24247 │ ├── Cloud Kingdom LE (13).SC2Replay │ ├── Hunting Ground (2).SC2Replay │ ├── Korhal City (19).SC2Replay │ ├── Newkirk City (7).SC2Replay │ ├── PeepMode.SC2Replay │ └── molten.SC2Replay ├── 2.0.0.24540 │ └── message.SC2Replay ├── 2.0.10.26490 │ ├── replay26490.SC2Replay │ └── replay26490_friendlyfire.SC2Replay ├── 2.0.11.26825 │ └── DaedalusPoint.SC2Replay ├── 2.0.3.24764 │ ├── 1.SC2Replay │ ├── Akilon Wastes (10).SC2Replay │ ├── Akilon Wastes (2).SC2Replay │ ├── Akilon Wastes (3).SC2Replay │ ├── Akilon Wastes.SC2Replay │ ├── Antiga Shipyard (2).SC2Replay │ ├── Antiga Shipyard (3).SC2Replay │ ├── Antiga Shipyard.SC2Replay │ ├── Newkirk City.SC2Replay │ ├── Star Station (2).SC2Replay │ ├── Star Station (3).SC2Replay │ ├── Star Station (4).SC2Replay │ ├── Star Station (5).SC2Replay │ ├── Star Station.SC2Replay │ ├── Swarm Training Stage 3.SC2Replay │ ├── The Bio Lab.SC2Replay │ ├── ggtracker_1571740.SC2Replay │ ├── new_hots.SC2Replay │ ├── new_units.SC2Replay │ ├── resume_from_replay.SC2Replay │ └── wraithan_korhal.SC2Replay ├── 2.0.4.24944 │ ├── Backwater Complex (15).SC2Replay │ ├── Lunar Colony V.SC2Replay │ └── ggtracker_1789768.SC2Replay ├── 2.0.5.25092 │ └── cn1.SC2Replay ├── 2.0.7.25293 │ └── ggtracker_2868002.SC2Replay ├── 2.0.8.25446 │ ├── ggtracker_3024127.SC2Replay │ ├── ggtracker_3024216.SC2Replay │ ├── ggtracker_3117069.SC2Replay │ ├── ggtracker_3167674.SC2Replay │ ├── ggtracker_3167851.SC2Replay │ └── ggtracker_3230037.SC2Replay ├── 2.0.8.25604 │ ├── issue131_arid_wastes.SC2Replay │ ├── issue135.SC2Replay │ ├── issue136.SC2Replay │ └── mlg1.SC2Replay ├── 2.1.3.28667 │ └── Habitation Station LE (54).SC2Replay ├── 2.1.4 │ └── Catallena LE.SC2Replay ├── 3.0.0.38215 │ └── first.SC2Replay ├── event_order.SC2Replay ├── gameheart │ ├── gameheart.SC2Replay │ └── gh_sameteam.SC2Replay └── test_all.py └── test_s2gs ├── hots1.s2gs ├── hots2.s2gs ├── s2gs1.s2gs ├── summary.s2gs └── test_all.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/README.rst -------------------------------------------------------------------------------- /STYLE_GUIDE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/STYLE_GUIDE.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/deleteme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/articles/addingnewdatapacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/articles/addingnewdatapacks.rst -------------------------------------------------------------------------------- /docs/source/articles/conceptsinsc2reader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/articles/conceptsinsc2reader.rst -------------------------------------------------------------------------------- /docs/source/articles/creatingagameengineplugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/articles/creatingagameengineplugin.rst -------------------------------------------------------------------------------- /docs/source/articles/gettingstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/articles/gettingstarted.rst -------------------------------------------------------------------------------- /docs/source/articles/whatsinareplay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/articles/whatsinareplay.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/dataobjects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/dataobjects.rst -------------------------------------------------------------------------------- /docs/source/decoders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/decoders.rst -------------------------------------------------------------------------------- /docs/source/events/game.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/events/game.rst -------------------------------------------------------------------------------- /docs/source/events/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/events/index.rst -------------------------------------------------------------------------------- /docs/source/events/message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/events/message.rst -------------------------------------------------------------------------------- /docs/source/events/tracker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/events/tracker.rst -------------------------------------------------------------------------------- /docs/source/factories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/factories.rst -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/mainobjects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/mainobjects.rst -------------------------------------------------------------------------------- /docs/source/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/plugins.rst -------------------------------------------------------------------------------- /docs/source/sc2reader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/sc2reader.rst -------------------------------------------------------------------------------- /docs/source/supportobjects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/supportobjects.rst -------------------------------------------------------------------------------- /docs/source/tutorials/prettyprinter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/tutorials/prettyprinter.rst -------------------------------------------------------------------------------- /docs/source/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/docs/source/utilities.rst -------------------------------------------------------------------------------- /examples/sc2autosave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/examples/sc2autosave.py -------------------------------------------------------------------------------- /examples/sc2store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/examples/sc2store.py -------------------------------------------------------------------------------- /new_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/new_units.py -------------------------------------------------------------------------------- /sc2dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2dump.cpp -------------------------------------------------------------------------------- /sc2reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/__init__.py -------------------------------------------------------------------------------- /sc2reader/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/constants.py -------------------------------------------------------------------------------- /sc2reader/data/HotS/23925_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/HotS/23925_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/HotS/23925_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/HotS/23925_units.csv -------------------------------------------------------------------------------- /sc2reader/data/HotS/24247_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/HotS/24247_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/HotS/24247_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/HotS/24247_units.csv -------------------------------------------------------------------------------- /sc2reader/data/HotS/24764_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/HotS/24764_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/HotS/24764_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/HotS/24764_units.csv -------------------------------------------------------------------------------- /sc2reader/data/HotS/base_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/HotS/base_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/HotS/base_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/HotS/base_units.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/16117_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/16117_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/16117_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/16117_units.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/17326_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/17326_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/17326_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/17326_units.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/18092_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/18092_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/18092_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/18092_units.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/19458_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/19458_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/19458_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/19458_units.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/22612_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/22612_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/22612_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/22612_units.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/24944_abilities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/24944_abilities.csv -------------------------------------------------------------------------------- /sc2reader/data/WoL/24944_units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/WoL/24944_units.csv -------------------------------------------------------------------------------- /sc2reader/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/__init__.py -------------------------------------------------------------------------------- /sc2reader/data/ability_lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/ability_lookup.csv -------------------------------------------------------------------------------- /sc2reader/data/attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/attributes.json -------------------------------------------------------------------------------- /sc2reader/data/command_lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/command_lookup.csv -------------------------------------------------------------------------------- /sc2reader/data/create_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/create_lookup.py -------------------------------------------------------------------------------- /sc2reader/data/train_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/train_commands.json -------------------------------------------------------------------------------- /sc2reader/data/unit_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/unit_info.json -------------------------------------------------------------------------------- /sc2reader/data/unit_lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/data/unit_lookup.csv -------------------------------------------------------------------------------- /sc2reader/decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/decoders.py -------------------------------------------------------------------------------- /sc2reader/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/__init__.py -------------------------------------------------------------------------------- /sc2reader/engine/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/engine.py -------------------------------------------------------------------------------- /sc2reader/engine/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/events.py -------------------------------------------------------------------------------- /sc2reader/engine/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/plugins/__init__.py -------------------------------------------------------------------------------- /sc2reader/engine/plugins/apm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/plugins/apm.py -------------------------------------------------------------------------------- /sc2reader/engine/plugins/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/plugins/context.py -------------------------------------------------------------------------------- /sc2reader/engine/plugins/gameheart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/plugins/gameheart.py -------------------------------------------------------------------------------- /sc2reader/engine/plugins/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/plugins/selection.py -------------------------------------------------------------------------------- /sc2reader/engine/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/engine/utils.py -------------------------------------------------------------------------------- /sc2reader/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/events/__init__.py -------------------------------------------------------------------------------- /sc2reader/events/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/events/base.py -------------------------------------------------------------------------------- /sc2reader/events/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/events/game.py -------------------------------------------------------------------------------- /sc2reader/events/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/events/message.py -------------------------------------------------------------------------------- /sc2reader/events/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/events/tracker.py -------------------------------------------------------------------------------- /sc2reader/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/exceptions.py -------------------------------------------------------------------------------- /sc2reader/factories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/factories/__init__.py -------------------------------------------------------------------------------- /sc2reader/factories/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sc2reader/factories/plugins/replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/factories/plugins/replay.py -------------------------------------------------------------------------------- /sc2reader/factories/plugins/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/factories/plugins/utils.py -------------------------------------------------------------------------------- /sc2reader/factories/sc2factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/factories/sc2factory.py -------------------------------------------------------------------------------- /sc2reader/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/log_utils.py -------------------------------------------------------------------------------- /sc2reader/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/objects.py -------------------------------------------------------------------------------- /sc2reader/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/readers.py -------------------------------------------------------------------------------- /sc2reader/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/resources.py -------------------------------------------------------------------------------- /sc2reader/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/scripts/__init__.py -------------------------------------------------------------------------------- /sc2reader/scripts/sc2attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/scripts/sc2attributes.py -------------------------------------------------------------------------------- /sc2reader/scripts/sc2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/scripts/sc2json.py -------------------------------------------------------------------------------- /sc2reader/scripts/sc2parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/scripts/sc2parse.py -------------------------------------------------------------------------------- /sc2reader/scripts/sc2printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/scripts/sc2printer.py -------------------------------------------------------------------------------- /sc2reader/scripts/sc2replayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/scripts/sc2replayer.py -------------------------------------------------------------------------------- /sc2reader/scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/scripts/utils.py -------------------------------------------------------------------------------- /sc2reader/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/sc2reader/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/setup.py -------------------------------------------------------------------------------- /test_replays/1.0.0.16117/1.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.0.16117/1.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.1.16195/Arctic_vs_Froadac_5766.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.1.16195/Arctic_vs_Froadac_5766.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.1.16195/Froadac_vs_Bunnies_5770.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.1.16195/Froadac_vs_Bunnies_5770.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.1.16195/Froadac_vs_Tetramaster_6031.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.1.16195/Froadac_vs_Tetramaster_6031.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.1.16195/PredatorPR_vs_Froadac_5702.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.1.16195/PredatorPR_vs_Froadac_5702.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.1.16195/Taandey_vs_Froadac_5564.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.1.16195/Taandey_vs_Froadac_5564.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.2.16223/Froadac_vs_Jim_6063.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.2.16223/Froadac_vs_Jim_6063.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.2.16223/Froadac_vs_Pubu_5850.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.2.16223/Froadac_vs_Pubu_5850.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.2.16223/Pete_vs_Froadac_6016.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.2.16223/Pete_vs_Froadac_6016.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.2.16223/Pseudo_vs_Froadac_5694.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.2.16223/Pseudo_vs_Froadac_5694.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.2.16223/Technqiue_vs_Froadac_5782.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.2.16223/Technqiue_vs_Froadac_5782.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.2.16223/TvT_Epic-_Tanks_Thors_Banshees.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.2.16223/TvT_Epic-_Tanks_Thors_Banshees.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.3.16291/1v1_Scrap Station_1903.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.3.16291/1v1_Scrap Station_1903.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.3.16291/Froadac_vs_Calin_5555.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.3.16291/Froadac_vs_Calin_5555.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.3.16291/Froadac_vs_Nissassa_5611.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.3.16291/Froadac_vs_Nissassa_5611.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.3.16291/Froadac_vs_Oppo_6033.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.3.16291/Froadac_vs_Oppo_6033.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.3.16291/Froadac_vs_Zizzer_5984.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.3.16291/Froadac_vs_Zizzer_5984.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.0.3.16291/RookJackson_vs_Froadac_5821.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.0.3.16291/RookJackson_vs_Froadac_5821.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/1v1_Blistering Sands_1894.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/1v1_Blistering Sands_1894.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/1v1_Lost Temple_1893.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/1v1_Lost Temple_1893.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/21087.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/21087.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/2v2_Discord IV_18612.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/2v2_Discord IV_18612.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/2v2_High Orbit_18613.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/2v2_High Orbit_18613.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/2v2_High Orbit_18614.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/2v2_High Orbit_18614.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/2v2_Scorched Haven_18616.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/2v2_Scorched Haven_18616.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/2v2_Scorched Haven_18617.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/2v2_Scorched Haven_18617.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/2v2_Tarsonis Assault_18994.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/2v2_Tarsonis Assault_18994.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/2v2_Twilight Fortress_18620.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/2v2_Twilight Fortress_18620.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/3v3_Dig Site_11014.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/3v3_Dig Site_11014.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/Froadac_vs_Coontastik_5955.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/Froadac_vs_Coontastik_5955.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/Froadac_vs_Gileril_5958.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/Froadac_vs_Gileril_5958.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/Froadac_vs_Shields_5952.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/Froadac_vs_Shields_5952.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/Ike_vs_Froadac_5957.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/Ike_vs_Froadac_5957.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/Triiptych_vs_EnS_9384.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/Triiptych_vs_EnS_9384.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/UnknownEvent_0400.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/UnknownEvent_0400.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/WeirdInitializationEvent.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/WeirdInitializationEvent.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/giMpygiMpy_vs_Kim_6731.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/giMpygiMpy_vs_Kim_6731.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.0.16561/test.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.0.16561/test.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/1v1_Delta Quadrant_316.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/1v1_Delta Quadrant_316.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/1v1_Metalopolis_2039.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/1v1_Metalopolis_2039.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/1v1_Scrap Station_1939.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/1v1_Scrap Station_1939.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/1v1_Shakuras Plateau_1948.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/1v1_Shakuras Plateau_1948.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/1v1_Shakuras Plateau_2881.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/1v1_Shakuras Plateau_2881.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/1v1_Steppes of War_1959.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/1v1_Steppes of War_1959.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/1v1_iCCup Match Point_2037.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/1v1_iCCup Match Point_2037.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/2v2_Scorched Haven_1935.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/2v2_Scorched Haven_1935.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/Froadac_vs_Final_5948.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/Froadac_vs_Final_5948.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/Protoss_vs_Froadac_5974.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/Protoss_vs_Froadac_5974.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.1.16605/giMpygiMpy_vs_budsTOashes_6733.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.1.16605/giMpygiMpy_vs_budsTOashes_6733.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_Blistering Sands_341.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_Blistering Sands_341.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_Frontier_3005.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_Frontier_3005.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_Lost Temple_2032.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_Lost Temple_2032.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_Lost Temple_2059.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_Lost Temple_2059.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_Lost Temple_2060.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_Lost Temple_2060.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_Metalopolis_2061.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_Metalopolis_2061.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_Metalopolis_342.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_Metalopolis_342.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_Xel'Naga Caverns_2031.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_Xel'Naga Caverns_2031.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/1v1_iCCup Fighting Spirit_2058.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/1v1_iCCup Fighting Spirit_2058.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.2.16755/Pro_vs_nubington_8448.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.2.16755/Pro_vs_nubington_8448.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/11.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/11.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/1v1_Blistering Sands_2747.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/1v1_Blistering Sands_2747.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/1v1_Lost Temple_2347.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/1v1_Lost Temple_2347.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/1v1_Metalopolis_2019.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/1v1_Metalopolis_2019.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/23.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/23.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/2v2_Monlyth Ridge_3048.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/2v2_Monlyth Ridge_3048.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/2v2_Monlyth Ridge_5906.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/2v2_Monlyth Ridge_5906.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/Froadac_vs_Tamgerine_6065.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/Froadac_vs_Tamgerine_6065.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/IceNine_vs_nubington_8573.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/IceNine_vs_nubington_8573.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/Navedy_vs_Froadac_6018.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/Navedy_vs_Froadac_6018.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/compLeX_vs_nubington_8515.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/compLeX_vs_nubington_8515.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/nubington_vs_BowmanSX_8570.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/nubington_vs_BowmanSX_8570.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.1.3.16939/nubington_vs_BowmanSX_8582.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.1.3.16939/nubington_vs_BowmanSX_8582.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/1v1 with Referee.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/1v1 with Referee.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/1v1_Shakuras Plateau_13.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/1v1_Shakuras Plateau_13.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/1v1_Shakuras Plateau_47.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/1v1_Shakuras Plateau_47.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/1v1_Steppes of War_200.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/1v1_Steppes of War_200.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/9.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/9.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/Antiochus_vs_nubington_8576.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/Antiochus_vs_nubington_8576.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/Azure_vs_BillyMays_10803.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/Azure_vs_BillyMays_10803.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/Finale_vs_nubington_8606.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/Finale_vs_nubington_8606.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/KEVNITO_vs_sscciownU_10046.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/KEVNITO_vs_sscciownU_10046.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/UnknownEvent_041C.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/UnknownEvent_041C.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/UnknownEvent_043C.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/UnknownEvent_043C.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.0.17326/test1-2.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.0.17326/test1-2.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.1.17682/1v1_Lost Temple_3969.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.1.17682/1v1_Lost Temple_3969.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.1.17682/2v2_Scorched Haven_6473.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.1.17682/2v2_Scorched Haven_6473.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.1.17682/BowmanSX_vs_nubington_8614.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.1.17682/BowmanSX_vs_nubington_8614.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.1.17682/Deadiam_vs_McSwagger_6474.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.1.17682/Deadiam_vs_McSwagger_6474.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.1.17682/Froadac_vs_BattleOtter_6040.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.1.17682/Froadac_vs_BattleOtter_6040.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.1.17682/Laegoose_vs_nitrousx_4626.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.1.17682/Laegoose_vs_nitrousx_4626.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.1.17682/Sharky_vs_trolli_4792.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.1.17682/Sharky_vs_trolli_4792.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.1.17682/VTPokebunny_vs_LuckyFool_5768.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.1.17682/VTPokebunny_vs_LuckyFool_5768.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/1.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/1.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/10.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/10.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/13.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/13.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/14.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/14.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/2.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/2.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/3.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/3.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/3v3_Colony 426_10434.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/3v3_Colony 426_10434.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/4.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/4.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/5.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/5.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/6.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/6.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/7.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/7.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/8.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/8.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/IbuFlaIVIZ_vs_Nilsson_10162.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/IbuFlaIVIZ_vs_Nilsson_10162.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.2.2.17811/Nilsson_vs_Omyns_10164.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.2.2.17811/Nilsson_vs_Omyns_10164.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.0.18092/1v1_The Shattered Temple_2196.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.0.18092/1v1_The Shattered Temple_2196.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.0.18092/1v1_Typhon Peaks_2160.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.0.18092/1v1_Typhon Peaks_2160.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.0.18092/3v3_Ulaan Deeps_2216.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.0.18092/3v3_Ulaan Deeps_2216.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.0.18092/IPA_vs_EnsignLee_8178.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.0.18092/IPA_vs_EnsignLee_8178.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.0.18092/Tixx_vs_Nilsson_10167.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.0.18092/Tixx_vs_Nilsson_10167.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.0.18092/nubington_vs_sMiHorst_8641.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.0.18092/nubington_vs_sMiHorst_8641.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.0.18092/qxc_vs_PredY_9852.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.0.18092/qxc_vs_PredY_9852.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.0.18092/sMiHorst_vs_albertZERG_10345.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.0.18092/sMiHorst_vs_albertZERG_10345.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/1v1_Metalopolis_2898.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/1v1_Metalopolis_2898.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/1v1_Shakuras Plateau_2877.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/1v1_Shakuras Plateau_2877.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/1v1_Shakuras Plateau_2896.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/1v1_Shakuras Plateau_2896.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/1v1_Tal'darim Altar LE_2875.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/1v1_Tal'darim Altar LE_2875.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/1v1_The Shattered Temple_2870.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/1v1_The Shattered Temple_2870.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/1v1_Xel'Naga Caverns_2874.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/1v1_Xel'Naga Caverns_2874.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/Effergy_vs_naeblis_10404.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/Effergy_vs_naeblis_10404.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/iLLUSiONFTW_vs_Nilsson_10170.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/iLLUSiONFTW_vs_Nilsson_10170.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/seawake_vs_Xzer_10761.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/seawake_vs_Xzer_10761.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.1.18221/tehsYs_vs_Nilsson_10175.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.1.18221/tehsYs_vs_Nilsson_10175.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/4v4_Outpost_10788.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/4v4_Outpost_10788.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/Azure_vs_BillyMays_10805.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/Azure_vs_BillyMays_10805.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/BadFurDay_vs_TheJester_5450.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/BadFurDay_vs_TheJester_5450.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/Broom_vs_oTLTRO_5384.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/Broom_vs_oTLTRO_5384.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/DerDrahtige_vs_ThArGos_5452.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/DerDrahtige_vs_ThArGos_5452.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/Ritsar_vs_Xzer_10778.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/Ritsar_vs_Xzer_10778.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/Viiper_vs_Auto_5386.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/Viiper_vs_Auto_5386.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/Zanti_vs_Metalreflux_5451.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/Zanti_vs_Metalreflux_5451.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.2.18317/howdini_vs_cKio_5388.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.2.18317/howdini_vs_cKio_5388.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/Gutterhulk.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/Gutterhulk.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/HighOrbit.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/HighOrbit.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/Metalopolis (11).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/Metalopolis (11).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/Monlyth Ridge (6).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/Monlyth Ridge (6).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/MonlythRidge.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/MonlythRidge.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/Sand Canyon (6).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/Sand Canyon (6).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/Shakuras Plateau (4).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/Shakuras Plateau (4).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/Slag Pits.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/Slag Pits.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/Tempest.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/Tempest.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.3.18574/The Shattered Temple (4).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.3.18574/The Shattered Temple (4).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24415.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24415.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24420.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24420.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24422.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24422.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24425.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24425.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24427.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24427.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24557.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24557.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24558.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24558.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24652.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24652.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24758.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24758.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.4.18701/24761.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.4.18701/24761.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/23815.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/23815.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/24360.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/24360.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/24363.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/24363.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/24367.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/24367.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/24369.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/24369.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/24371.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/24371.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/24648.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/24648.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/24708.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/24708.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/24805.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/24805.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/AmandilGMMA_vs_SCDZingy_20328.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/AmandilGMMA_vs_SCDZingy_20328.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/iPStylin_vs_SCDTaCo_20332.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/iPStylin_vs_SCDTaCo_20332.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.5.19132/tGKorlith_vs_iPStylin_20333.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.5.19132/tGKorlith_vs_iPStylin_20333.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24767.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24767.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24768.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24768.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24771.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24771.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24775.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24775.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24781.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24781.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24782.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24782.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24783.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24783.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24785.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24785.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24799.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24799.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24803.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24803.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24804.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24804.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24807.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24807.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.3.6.19269/24808.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.3.6.19269/24808.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36465.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36465.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36467.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36467.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36469.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36469.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36477.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36477.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36480.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36480.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36498.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36498.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36501.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36501.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36502.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36502.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36503.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36503.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36504.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36504.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36508.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36508.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36509.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36509.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36512.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36512.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36519.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36519.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36520.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36520.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36521.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36521.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36523.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36523.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36526.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36526.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36527.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36527.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36528.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36528.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36529.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36529.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36530.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36530.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36531.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36531.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36532.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36532.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36534.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36534.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36535.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36535.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36536.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36536.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36538.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36538.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36539.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36539.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36540.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36540.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36541.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36541.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36542.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36542.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36654.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36654.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36656.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36656.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36657.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36657.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36658.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36658.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36659.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36659.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36661.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36661.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36662.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36662.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/36663.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/36663.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Backwater+Gulch.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Backwater+Gulch.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Discord IV (10).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Discord IV (10).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Discord IV (11).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Discord IV (11).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/High Orbit (11).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/High Orbit (11).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Plunder+Isle.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Plunder+Isle.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Scorched Haven (23).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Scorched Haven (23).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Shakuras Plateau (36).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Shakuras Plateau (36).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Tal'darim Altar LE (24).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Tal'darim Altar LE (24).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Tempest (6).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Tempest (6).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Tempest (7).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Tempest (7).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/The Boneyard (10).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/The Boneyard (10).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/The Boneyard (11).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/The Boneyard (11).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/The Boneyard (9).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/The Boneyard (9).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/The Shattered Temple (26).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/The Shattered Temple (26).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Typhon Peaks (18).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Typhon Peaks (18).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.0.19679/Xel'Naga Caverns (56).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.0.19679/Xel'Naga Caverns (56).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.4.3.21029/ggtracker_398754.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.4.3.21029/ggtracker_398754.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.5.3.23260/Deadlock Ridge (110).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.5.3.23260/Deadlock Ridge (110).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.5.3.23260/District 10 (68).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.5.3.23260/District 10 (68).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.5.3.23260/ggtracker_109233.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.5.3.23260/ggtracker_109233.SC2Replay -------------------------------------------------------------------------------- /test_replays/1.5.4.24540/Deadlock Ridge (115).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.5.4.24540/Deadlock Ridge (115).SC2Replay -------------------------------------------------------------------------------- /test_replays/1.5.4.24540/ggtracker_1471849.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/1.5.4.24540/ggtracker_1471849.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.23260/test2v2.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.23260/test2v2.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.23925/Akilon Wastes (2).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.23925/Akilon Wastes (2).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.23925/Akilon Wastes.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.23925/Akilon Wastes.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.23925/Antiga Shipyard.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.23925/Antiga Shipyard.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.23925/Cloud Kingdom LE (2).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.23925/Cloud Kingdom LE (2).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.23925/Cloud Kingdom LE.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.23925/Cloud Kingdom LE.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.23925/jakatak_lunar.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.23925/jakatak_lunar.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.24247/Cloud Kingdom LE (13).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.24247/Cloud Kingdom LE (13).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.24247/Hunting Ground (2).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.24247/Hunting Ground (2).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.24247/Korhal City (19).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.24247/Korhal City (19).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.24247/Newkirk City (7).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.24247/Newkirk City (7).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.24247/PeepMode.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.24247/PeepMode.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.24247/molten.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.24247/molten.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.0.24540/message.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.0.24540/message.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.10.26490/replay26490.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.10.26490/replay26490.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.10.26490/replay26490_friendlyfire.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.10.26490/replay26490_friendlyfire.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.11.26825/DaedalusPoint.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.11.26825/DaedalusPoint.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/1.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/1.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Akilon Wastes (10).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Akilon Wastes (10).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Akilon Wastes (2).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Akilon Wastes (2).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Akilon Wastes (3).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Akilon Wastes (3).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Akilon Wastes.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Akilon Wastes.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Antiga Shipyard (2).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Antiga Shipyard (2).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Antiga Shipyard (3).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Antiga Shipyard (3).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Antiga Shipyard.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Antiga Shipyard.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Newkirk City.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Newkirk City.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Star Station (2).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Star Station (2).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Star Station (3).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Star Station (3).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Star Station (4).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Star Station (4).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Star Station (5).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Star Station (5).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Star Station.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Star Station.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/Swarm Training Stage 3.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/Swarm Training Stage 3.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/The Bio Lab.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/The Bio Lab.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/ggtracker_1571740.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/ggtracker_1571740.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/new_hots.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/new_hots.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/new_units.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/new_units.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/resume_from_replay.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/resume_from_replay.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.3.24764/wraithan_korhal.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.3.24764/wraithan_korhal.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.4.24944/Backwater Complex (15).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.4.24944/Backwater Complex (15).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.4.24944/Lunar Colony V.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.4.24944/Lunar Colony V.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.4.24944/ggtracker_1789768.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.4.24944/ggtracker_1789768.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.5.25092/cn1.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.5.25092/cn1.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.7.25293/ggtracker_2868002.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.7.25293/ggtracker_2868002.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25446/ggtracker_3024127.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25446/ggtracker_3024127.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25446/ggtracker_3024216.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25446/ggtracker_3024216.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25446/ggtracker_3117069.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25446/ggtracker_3117069.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25446/ggtracker_3167674.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25446/ggtracker_3167674.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25446/ggtracker_3167851.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25446/ggtracker_3167851.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25446/ggtracker_3230037.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25446/ggtracker_3230037.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25604/issue131_arid_wastes.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25604/issue131_arid_wastes.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25604/issue135.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25604/issue135.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25604/issue136.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25604/issue136.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.0.8.25604/mlg1.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.0.8.25604/mlg1.SC2Replay -------------------------------------------------------------------------------- /test_replays/2.1.3.28667/Habitation Station LE (54).SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.1.3.28667/Habitation Station LE (54).SC2Replay -------------------------------------------------------------------------------- /test_replays/2.1.4/Catallena LE.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/2.1.4/Catallena LE.SC2Replay -------------------------------------------------------------------------------- /test_replays/3.0.0.38215/first.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/3.0.0.38215/first.SC2Replay -------------------------------------------------------------------------------- /test_replays/event_order.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/event_order.SC2Replay -------------------------------------------------------------------------------- /test_replays/gameheart/gameheart.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/gameheart/gameheart.SC2Replay -------------------------------------------------------------------------------- /test_replays/gameheart/gh_sameteam.SC2Replay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/gameheart/gh_sameteam.SC2Replay -------------------------------------------------------------------------------- /test_replays/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_replays/test_all.py -------------------------------------------------------------------------------- /test_s2gs/hots1.s2gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_s2gs/hots1.s2gs -------------------------------------------------------------------------------- /test_s2gs/hots2.s2gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_s2gs/hots2.s2gs -------------------------------------------------------------------------------- /test_s2gs/s2gs1.s2gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_s2gs/s2gs1.s2gs -------------------------------------------------------------------------------- /test_s2gs/summary.s2gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_s2gs/summary.s2gs -------------------------------------------------------------------------------- /test_s2gs/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraylinKim/sc2reader/HEAD/test_s2gs/test_all.py --------------------------------------------------------------------------------