├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── enhancement_suggestion.yml ├── dependabot.yml └── workflows │ ├── lunar.yml │ └── python-publish.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── autowsgr ├── __init__.py ├── bin │ ├── darwin_image_autowsgrs.bin │ └── win32_image_autowsgrs.bin ├── configs.py ├── constants │ ├── __init__.py │ ├── colors.py │ ├── custom_exceptions.py │ ├── data_roots.py │ ├── image_templates.py │ ├── other_constants.py │ ├── positions.py │ └── ui.py ├── data │ ├── fight_task_template.yaml │ ├── images │ │ ├── back_buttons │ │ │ ├── 1.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 5.PNG │ │ │ └── 6.PNG │ │ ├── build_image │ │ │ ├── equipment │ │ │ │ ├── complete.PNG │ │ │ │ ├── fast.PNG │ │ │ │ ├── full_depot.PNG │ │ │ │ └── start.PNG │ │ │ ├── resource.PNG │ │ │ └── ship │ │ │ │ ├── complete.PNG │ │ │ │ ├── fast.PNG │ │ │ │ ├── full_depot.png │ │ │ │ └── start.PNG │ │ ├── chapter_image │ │ │ ├── 1.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 5.PNG │ │ │ ├── 6.PNG │ │ │ ├── 7.PNG │ │ │ ├── 8.PNG │ │ │ └── 9.PNG │ │ ├── choose_ship_image │ │ │ ├── 1.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ └── 4.png │ │ ├── confirm_image │ │ │ ├── 1.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 5.png │ │ │ └── 6.PNG │ │ ├── decisive_battle_image │ │ │ ├── 1.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 5.PNG │ │ │ ├── 6.PNG │ │ │ ├── 7.PNG │ │ │ ├── 8.PNG │ │ │ └── 9.PNG │ │ ├── error_image │ │ │ ├── bad_network1.PNG │ │ │ ├── bad_network2.PNG │ │ │ ├── network_retry.PNG │ │ │ ├── remote_login_confirm.PNG │ │ │ └── user_remote_login.PNG │ │ ├── event │ │ │ ├── 20220928 │ │ │ │ ├── 1.PNG │ │ │ │ ├── 2.PNG │ │ │ │ ├── 3.PNG │ │ │ │ └── 4.PNG │ │ │ ├── 20221118 │ │ │ │ └── 1.PNG │ │ │ ├── 20230117 │ │ │ │ ├── 1.PNG │ │ │ │ ├── 2.PNG │ │ │ │ ├── 3.PNG │ │ │ │ └── 4.PNG │ │ │ ├── 20230613 │ │ │ │ └── 1.PNG │ │ │ ├── 20230809 │ │ │ │ └── 1.png │ │ │ ├── 20230927 │ │ │ │ └── 1.png │ │ │ ├── 20231215 │ │ │ │ └── 1.PNG │ │ │ ├── 20240206 │ │ │ │ └── 1.PNG │ │ │ ├── 20240419 │ │ │ │ ├── 1.PNG │ │ │ │ ├── 2.PNG │ │ │ │ ├── 3.PNG │ │ │ │ └── 4.PNG │ │ │ ├── 20240930 │ │ │ │ ├── 1.PNG │ │ │ │ └── 2.PNG │ │ │ ├── 20241219 │ │ │ │ ├── 1.PNG │ │ │ │ ├── 2.PNG │ │ │ │ ├── 3.PNG │ │ │ │ ├── 4.PNG │ │ │ │ ├── 5.PNG │ │ │ │ └── 6.PNG │ │ │ ├── 20250123 │ │ │ │ ├── 1.PNG │ │ │ │ ├── 2.PNG │ │ │ │ └── 3.PNG │ │ │ ├── 20250424 │ │ │ │ ├── 1.PNG │ │ │ │ ├── 2.PNG │ │ │ │ ├── 3.PNG │ │ │ │ ├── 4.PNG │ │ │ │ ├── 5.PNG │ │ │ │ ├── 6.PNG │ │ │ │ ├── 7.PNG │ │ │ │ ├── 8.PNG │ │ │ │ └── 9.PNG │ │ │ ├── common │ │ │ │ ├── big_monster.PNG │ │ │ │ ├── easy1.PNG │ │ │ │ ├── easy2.PNG │ │ │ │ ├── hard1.png │ │ │ │ ├── hard2.PNG │ │ │ │ ├── little_monster.PNG │ │ │ │ └── special.PNG │ │ │ └── enemy │ │ │ │ ├── BB1.PNG │ │ │ │ ├── BB2.PNG │ │ │ │ ├── BC1.png │ │ │ │ ├── BC2.png │ │ │ │ ├── CLT1.PNG │ │ │ │ ├── CLT2.PNG │ │ │ │ ├── CV1.png │ │ │ │ └── SS1.png │ │ ├── exercise_image │ │ │ └── rival_info.PNG │ │ ├── fight_image │ │ │ ├── 1.PNG │ │ │ ├── 10.PNG │ │ │ ├── 11.PNG │ │ │ ├── 12.PNG │ │ │ ├── 13.PNG │ │ │ ├── 14.PNG │ │ │ ├── 15.PNG │ │ │ ├── 16.png │ │ │ ├── 17.PNG │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 5.PNG │ │ │ ├── 6.PNG │ │ │ ├── 7.png │ │ │ ├── 8.PNG │ │ │ └── 9.PNG │ │ ├── fight_result │ │ │ ├── A.PNG │ │ │ ├── B.PNG │ │ │ ├── C.PNG │ │ │ ├── D.PNG │ │ │ ├── LOOT.PNG │ │ │ ├── S.PNG │ │ │ └── SS.PNG │ │ ├── game_ui │ │ │ ├── 1.PNG │ │ │ ├── 10.PNG │ │ │ ├── 11.PNG │ │ │ ├── 12.PNG │ │ │ ├── 13.PNG │ │ │ ├── 14.PNG │ │ │ ├── 15.PNG │ │ │ ├── 16.PNG │ │ │ ├── 17.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 5.PNG │ │ │ ├── 6.PNG │ │ │ ├── 7.PNG │ │ │ ├── 8.PNG │ │ │ └── 9.PNG │ │ ├── identify_images │ │ │ ├── backyard_page.PNG │ │ │ ├── bath_page.PNG │ │ │ ├── battle_page.PNG │ │ │ ├── build_page1.PNG │ │ │ ├── build_page2.PNG │ │ │ ├── build_page3.PNG │ │ │ ├── canteen_page.PNG │ │ │ ├── choose_repair_page.PNG │ │ │ ├── decisive_battle_entrance.PNG │ │ │ ├── decisive_map_entrance.PNG │ │ │ ├── destroy_page.PNG │ │ │ ├── develop_page1.PNG │ │ │ ├── develop_page2.PNG │ │ │ ├── develop_page3.PNG │ │ │ ├── discard_page.PNG │ │ │ ├── exercise_page1.png │ │ │ ├── exercise_page2.png │ │ │ ├── expedition_page1.png │ │ │ ├── expedition_page2.png │ │ │ ├── expedition_page3.png │ │ │ ├── fight_prepare_page.PNG │ │ │ ├── friend_home_page.PNG │ │ │ ├── friend_page.PNG │ │ │ ├── intensify_page.PNG │ │ │ ├── main_page.PNG │ │ │ ├── map_page.PNG │ │ │ ├── mission_page.PNG │ │ │ ├── options_page.PNG │ │ │ ├── remake_page.PNG │ │ │ ├── skill_page1.PNG │ │ │ ├── skill_page2.PNG │ │ │ └── support_set_page.PNG │ │ ├── normal_map_image │ │ │ ├── 1-1.PNG │ │ │ ├── 1-2.PNG │ │ │ ├── 1-3.PNG │ │ │ ├── 1-4.PNG │ │ │ ├── 1-5.PNG │ │ │ ├── 2-1.PNG │ │ │ ├── 2-2.PNG │ │ │ ├── 2-3.PNG │ │ │ ├── 2-4.PNG │ │ │ ├── 2-5.PNG │ │ │ ├── 2-6.PNG │ │ │ ├── 3-1.PNG │ │ │ ├── 3-2.PNG │ │ │ ├── 3-3.PNG │ │ │ ├── 3-4.PNG │ │ │ ├── 4-1.PNG │ │ │ ├── 4-2.PNG │ │ │ ├── 4-3.PNG │ │ │ ├── 4-4.PNG │ │ │ ├── 5-1.PNG │ │ │ ├── 5-2.PNG │ │ │ ├── 5-3.PNG │ │ │ ├── 5-4.PNG │ │ │ ├── 5-5.PNG │ │ │ ├── 6-1.PNG │ │ │ ├── 6-2.PNG │ │ │ ├── 6-3.PNG │ │ │ ├── 6-4.PNG │ │ │ ├── 7-1.PNG │ │ │ ├── 7-2.PNG │ │ │ ├── 7-3.PNG │ │ │ ├── 7-4.PNG │ │ │ ├── 7-5.PNG │ │ │ ├── 8-1.PNG │ │ │ ├── 8-2.PNG │ │ │ ├── 8-3.PNG │ │ │ ├── 8-4.PNG │ │ │ ├── 8-5.PNG │ │ │ ├── 9-1.PNG │ │ │ ├── 9-2.PNG │ │ │ ├── 9-3.PNG │ │ │ └── 9-4.PNG │ │ ├── ocr_test │ │ │ ├── 1.PNG │ │ │ ├── 10.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 5.PNG │ │ │ ├── 6.PNG │ │ │ ├── 7.PNG │ │ │ ├── 8.PNG │ │ │ └── 9.PNG │ │ ├── repair_image │ │ │ └── 1.PNG │ │ ├── restaurant_image │ │ │ ├── cook.PNG │ │ │ ├── have_cook.PNG │ │ │ └── no_times.PNG │ │ ├── shiptype_image │ │ │ ├── AADG1.PNG │ │ │ ├── AP.png │ │ │ ├── AV1.PNG │ │ │ ├── BB1.PNG │ │ │ ├── BC1.PNG │ │ │ ├── CA1.PNG │ │ │ ├── CL1.PNG │ │ │ ├── CLT1.PNG │ │ │ ├── CV1.PNG │ │ │ ├── CVL1.PNG │ │ │ ├── DD1.PNG │ │ │ ├── NO1.PNG │ │ │ └── SS1.PNG │ │ ├── start_image │ │ │ ├── 1.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.PNG │ │ │ ├── 5.PNG │ │ │ ├── 6.PNG │ │ │ └── 7.PNG │ │ └── symbol_image │ │ │ ├── 1.PNG │ │ │ ├── 10.PNG │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.PNG │ │ │ ├── 2.PNG │ │ │ ├── 3.PNG │ │ │ ├── 4.png │ │ │ ├── 5.PNG │ │ │ ├── 6.PNG │ │ │ ├── 7.PNG │ │ │ ├── 8.PNG │ │ │ └── 9.PNG │ ├── map │ │ ├── decisive_battle │ │ │ ├── 3-4-1.PNG │ │ │ ├── 3-4-2.PNG │ │ │ ├── 3-4-3.PNG │ │ │ ├── 3-5-1.PNG │ │ │ ├── 3-5-2.PNG │ │ │ ├── 3-5-3.PNG │ │ │ ├── 3-6-1.PNG │ │ │ └── 3.yaml │ │ ├── event │ │ │ ├── 20220928 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ │ ├── 20221118 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ │ ├── 20230117 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ │ ├── 20230613 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ │ ├── 20230809 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ │ ├── 20230927 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── E-7.yaml │ │ │ │ ├── E-8.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ ├── H-6.yaml │ │ │ │ ├── H-7.yaml │ │ │ │ └── H-8.yaml │ │ │ ├── 20231215 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ │ ├── 20240206 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── E-7.yaml │ │ │ │ ├── E-8.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ ├── H-6.yaml │ │ │ │ ├── H-7.yaml │ │ │ │ └── H-8.yaml │ │ │ ├── 20240419 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ │ ├── 20240930 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ └── H-5.yaml │ │ │ ├── 20241219 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ │ └── 20250123 │ │ │ │ ├── E-1.yaml │ │ │ │ ├── E-2.yaml │ │ │ │ ├── E-3.yaml │ │ │ │ ├── E-4.yaml │ │ │ │ ├── E-5.yaml │ │ │ │ ├── E-6.yaml │ │ │ │ ├── H-1.yaml │ │ │ │ ├── H-2.yaml │ │ │ │ ├── H-3.yaml │ │ │ │ ├── H-4.yaml │ │ │ │ ├── H-5.yaml │ │ │ │ └── H-6.yaml │ │ └── normal │ │ │ ├── 1-1.yaml │ │ │ ├── 1-2.yaml │ │ │ ├── 1-3.yaml │ │ │ ├── 1-4.yaml │ │ │ ├── 1-5.yaml │ │ │ ├── 2-1.yaml │ │ │ ├── 2-2.yaml │ │ │ ├── 2-3.yaml │ │ │ ├── 2-4.yaml │ │ │ ├── 2-5.yaml │ │ │ ├── 2-6.yaml │ │ │ ├── 3-1.yaml │ │ │ ├── 3-2.yaml │ │ │ ├── 3-3.yaml │ │ │ ├── 3-4.yaml │ │ │ ├── 4-1.yaml │ │ │ ├── 4-2.yaml │ │ │ ├── 4-3.yaml │ │ │ ├── 4-4.yaml │ │ │ ├── 5-1.yaml │ │ │ ├── 5-2.yaml │ │ │ ├── 5-3.yaml │ │ │ ├── 5-4.yaml │ │ │ ├── 5-5.yaml │ │ │ ├── 6-1.yaml │ │ │ ├── 6-2.yaml │ │ │ ├── 6-3.yaml │ │ │ ├── 6-4.yaml │ │ │ ├── 7-1.yaml │ │ │ ├── 7-2.yaml │ │ │ ├── 7-3.yaml │ │ │ ├── 7-4.yaml │ │ │ ├── 7-5.yaml │ │ │ ├── 8-1.yaml │ │ │ ├── 8-2.yaml │ │ │ ├── 8-3.yaml │ │ │ ├── 8-4.yaml │ │ │ ├── 8-5.yaml │ │ │ ├── 9-1.yaml │ │ │ ├── 9-2.yaml │ │ │ ├── 9-3.yaml │ │ │ └── 9-4.yaml │ ├── ocr │ │ ├── relative_location.yaml │ │ └── ship_name.yaml │ └── plans │ │ ├── battle │ │ ├── 困难巡洋.yaml │ │ ├── 困难战列.yaml │ │ ├── 困难潜艇.yaml │ │ ├── 困难航母.yaml │ │ ├── 困难驱逐.yaml │ │ ├── 简单巡洋.yaml │ │ ├── 简单战列.yaml │ │ ├── 简单潜艇.yaml │ │ ├── 简单航母.yaml │ │ └── 简单驱逐.yaml │ │ └── exercise │ │ └── plan_1.yaml ├── fight │ ├── __init__.py │ ├── battle.py │ ├── common.py │ ├── decisive_battle.py │ ├── event │ │ ├── __init__.py │ │ ├── event.py │ │ ├── event_2022_0928.py │ │ ├── event_2022_1118.py │ │ ├── event_2023_0117.py │ │ ├── event_2023_0613.py │ │ ├── event_2023_0809.py │ │ ├── event_2023_0927.py │ │ ├── event_2023_1215.py │ │ ├── event_2024_0206.py │ │ ├── event_2024_0419.py │ │ ├── event_2024_0930.py │ │ ├── event_2024_1219.py │ │ ├── event_2025_0123.py │ │ ├── event_2025_0424.py │ │ └── event_template.py │ ├── exercise.py │ └── normal_fight.py ├── game │ ├── __init__.py │ ├── build.py │ ├── expedition.py │ ├── game_operation.py │ └── get_game_info.py ├── notification │ ├── __init__.py │ ├── miao_alert.py │ └── miao_alert.yaml ├── port │ ├── __init__.py │ ├── common.py │ ├── facility.py │ ├── ship.py │ └── task_runner.py ├── scripts │ ├── __init__.py │ ├── daily_api.py │ └── main.py ├── timer │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── api_dll.py │ │ └── ocr_backend.py │ ├── controllers │ │ ├── __init__.py │ │ ├── android_controller.py │ │ └── os_controller.py │ └── timer.py ├── types.py └── utils │ ├── __init__.py │ ├── api_image.py │ ├── io.py │ ├── logger.py │ ├── math_functions.py │ ├── operator.py │ ├── time.py │ └── update.py ├── docs ├── logo.png └── spelling_wordlist.txt ├── pyproject.toml ├── tools ├── __init__.py ├── crawler.py ├── get_decisive_enemy.py ├── map_recognize.py ├── ship_name.py ├── test_normal_map.py └── text_recognize.py └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=auto 3 | 4 | # Explicitly declare text files you want to always be normalized and converted 5 | # to native line endings on checkout. 6 | *.c text 7 | *.h text 8 | *.yaml text 9 | *.py text 10 | 11 | # Declare files that will always have CRLF line endings on checkout. 12 | *.sln text eol=crlf 13 | 14 | # Denote all files that are truly binary and should not be modified. 15 | *.png binary 16 | *.PNG binary 17 | *.jpg binary 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: 想反馈其他内容?阅读用户文档并加入社群 :) 4 | url: https://docs-autowsgr.notion.site 5 | about: 加入我们的社群,随时提问、分享想法,更多精彩等着你! 6 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "pip" 9 | directory: "/" # Location of package manifests 10 | schedule: 11 | interval: "weekly" 12 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "examples"] 2 | path = examples 3 | url = https://github.com/OpenWSGR/AutoWSGR-examples.git 4 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | include requirements.txt 3 | -------------------------------------------------------------------------------- /autowsgr/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.4.3' 2 | -------------------------------------------------------------------------------- /autowsgr/bin/darwin_image_autowsgrs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/bin/darwin_image_autowsgrs.bin -------------------------------------------------------------------------------- /autowsgr/bin/win32_image_autowsgrs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/bin/win32_image_autowsgrs.bin -------------------------------------------------------------------------------- /autowsgr/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/constants/__init__.py -------------------------------------------------------------------------------- /autowsgr/constants/data_roots.py: -------------------------------------------------------------------------------- 1 | from os.path import dirname, join 2 | 3 | 4 | DATA_ROOT = join(dirname(dirname(__file__)), 'data') 5 | IMG_ROOT = join(DATA_ROOT, 'images') 6 | MAP_ROOT = join(DATA_ROOT, 'map') 7 | SETTING_ROOT = join(DATA_ROOT, 'settings') 8 | OCR_ROOT = join(DATA_ROOT, 'ocr') 9 | 10 | BIN_ROOT = join(dirname(DATA_ROOT), 'bin') 11 | -------------------------------------------------------------------------------- /autowsgr/constants/image_templates.py: -------------------------------------------------------------------------------- 1 | from functools import partial 2 | 3 | from airtest.core.cv import Template 4 | 5 | from autowsgr.constants.data_roots import IMG_ROOT 6 | from autowsgr.utils.io import create_namespace 7 | 8 | 9 | class MyTemplate(Template): 10 | def __radd__(self, other) -> list: 11 | if isinstance(other, list): 12 | return [*other, self] # 添加到列表开头 13 | return NotImplemented 14 | 15 | def __add__(self, other) -> list: 16 | if isinstance(other, list): 17 | return [self, *other] # 添加到列表末尾 18 | return NotImplemented 19 | 20 | 21 | IMG = create_namespace( 22 | IMG_ROOT, 23 | partial(MyTemplate, threshold=0.9, resolution=(960, 540)), 24 | ) 25 | -------------------------------------------------------------------------------- /autowsgr/data/images/back_buttons/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/back_buttons/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/back_buttons/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/back_buttons/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/back_buttons/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/back_buttons/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/back_buttons/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/back_buttons/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/back_buttons/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/back_buttons/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/back_buttons/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/back_buttons/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/equipment/complete.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/equipment/complete.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/equipment/fast.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/equipment/fast.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/equipment/full_depot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/equipment/full_depot.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/equipment/start.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/equipment/start.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/resource.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/resource.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/ship/complete.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/ship/complete.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/ship/fast.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/ship/fast.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/ship/full_depot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/ship/full_depot.png -------------------------------------------------------------------------------- /autowsgr/data/images/build_image/ship/start.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/build_image/ship/start.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/7.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/8.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/chapter_image/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/chapter_image/9.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/choose_ship_image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/choose_ship_image/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/choose_ship_image/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/choose_ship_image/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/choose_ship_image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/choose_ship_image/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/choose_ship_image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/choose_ship_image/4.png -------------------------------------------------------------------------------- /autowsgr/data/images/confirm_image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/confirm_image/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/confirm_image/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/confirm_image/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/confirm_image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/confirm_image/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/confirm_image/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/confirm_image/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/confirm_image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/confirm_image/5.png -------------------------------------------------------------------------------- /autowsgr/data/images/confirm_image/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/confirm_image/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/7.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/8.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/decisive_battle_image/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/decisive_battle_image/9.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/error_image/bad_network1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/error_image/bad_network1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/error_image/bad_network2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/error_image/bad_network2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/error_image/network_retry.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/error_image/network_retry.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/error_image/remote_login_confirm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/error_image/remote_login_confirm.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/error_image/user_remote_login.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/error_image/user_remote_login.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20220928/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20220928/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20220928/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20220928/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20220928/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20220928/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20220928/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20220928/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20221118/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20221118/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20230117/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20230117/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20230117/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20230117/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20230117/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20230117/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20230117/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20230117/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20230613/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20230613/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20230809/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20230809/1.png -------------------------------------------------------------------------------- /autowsgr/data/images/event/20230927/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20230927/1.png -------------------------------------------------------------------------------- /autowsgr/data/images/event/20231215/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20231215/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20240206/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20240206/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20240419/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20240419/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20240419/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20240419/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20240419/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20240419/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20240419/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20240419/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20240930/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20240930/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20240930/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20240930/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20241219/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20241219/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20241219/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20241219/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20241219/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20241219/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20241219/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20241219/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20241219/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20241219/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20241219/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20241219/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250123/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250123/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250123/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250123/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250123/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250123/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/7.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/8.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/20250424/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/20250424/9.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/common/big_monster.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/common/big_monster.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/common/easy1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/common/easy1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/common/easy2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/common/easy2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/common/hard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/common/hard1.png -------------------------------------------------------------------------------- /autowsgr/data/images/event/common/hard2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/common/hard2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/common/little_monster.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/common/little_monster.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/common/special.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/common/special.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/enemy/BB1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/enemy/BB1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/enemy/BB2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/enemy/BB2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/enemy/BC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/enemy/BC1.png -------------------------------------------------------------------------------- /autowsgr/data/images/event/enemy/BC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/enemy/BC2.png -------------------------------------------------------------------------------- /autowsgr/data/images/event/enemy/CLT1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/enemy/CLT1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/enemy/CLT2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/enemy/CLT2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/event/enemy/CV1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/enemy/CV1.png -------------------------------------------------------------------------------- /autowsgr/data/images/event/enemy/SS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/event/enemy/SS1.png -------------------------------------------------------------------------------- /autowsgr/data/images/exercise_image/rival_info.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/exercise_image/rival_info.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/10.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/11.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/12.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/13.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/14.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/15.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/16.png -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/17.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/17.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/18.png -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/19.png -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/7.png -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/8.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_image/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_image/9.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_result/A.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_result/A.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_result/B.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_result/B.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_result/C.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_result/C.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_result/D.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_result/D.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_result/LOOT.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_result/LOOT.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_result/S.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_result/S.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/fight_result/SS.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/fight_result/SS.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/10.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/11.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/12.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/13.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/14.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/15.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/16.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/16.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/17.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/17.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/7.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/8.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/game_ui/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/game_ui/9.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/backyard_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/backyard_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/bath_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/bath_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/battle_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/battle_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/build_page1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/build_page1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/build_page2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/build_page2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/build_page3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/build_page3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/canteen_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/canteen_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/choose_repair_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/choose_repair_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/decisive_battle_entrance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/decisive_battle_entrance.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/decisive_map_entrance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/decisive_map_entrance.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/destroy_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/destroy_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/develop_page1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/develop_page1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/develop_page2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/develop_page2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/develop_page3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/develop_page3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/discard_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/discard_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/exercise_page1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/exercise_page1.png -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/exercise_page2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/exercise_page2.png -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/expedition_page1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/expedition_page1.png -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/expedition_page2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/expedition_page2.png -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/expedition_page3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/expedition_page3.png -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/fight_prepare_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/fight_prepare_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/friend_home_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/friend_home_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/friend_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/friend_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/intensify_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/intensify_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/main_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/main_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/map_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/map_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/mission_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/mission_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/options_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/options_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/remake_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/remake_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/skill_page1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/skill_page1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/skill_page2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/skill_page2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/identify_images/support_set_page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/identify_images/support_set_page.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/1-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/1-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/1-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/1-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/1-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/1-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/1-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/1-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/1-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/1-5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/2-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/2-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/2-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/2-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/2-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/2-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/2-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/2-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/2-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/2-5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/2-6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/2-6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/3-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/3-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/3-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/3-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/3-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/3-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/3-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/3-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/4-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/4-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/4-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/4-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/4-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/4-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/4-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/4-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/5-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/5-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/5-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/5-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/5-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/5-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/5-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/5-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/5-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/5-5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/6-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/6-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/6-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/6-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/6-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/6-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/6-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/6-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/7-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/7-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/7-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/7-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/7-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/7-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/7-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/7-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/7-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/7-5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/8-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/8-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/8-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/8-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/8-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/8-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/8-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/8-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/8-5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/8-5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/9-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/9-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/9-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/9-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/9-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/9-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/normal_map_image/9-4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/normal_map_image/9-4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/10.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/7.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/8.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/ocr_test/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/ocr_test/9.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/repair_image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/repair_image/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/restaurant_image/cook.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/restaurant_image/cook.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/restaurant_image/have_cook.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/restaurant_image/have_cook.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/restaurant_image/no_times.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/restaurant_image/no_times.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/AADG1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/AADG1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/AP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/AP.png -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/AV1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/AV1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/BB1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/BB1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/BC1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/BC1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/CA1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/CA1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/CL1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/CL1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/CLT1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/CLT1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/CV1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/CV1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/CVL1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/CVL1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/DD1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/DD1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/NO1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/NO1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/shiptype_image/SS1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/shiptype_image/SS1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/start_image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/start_image/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/start_image/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/start_image/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/start_image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/start_image/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/start_image/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/start_image/4.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/start_image/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/start_image/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/start_image/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/start_image/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/start_image/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/start_image/7.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/1.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/10.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/11.png -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/12.png -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/13.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/2.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/3.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/4.png -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/5.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/6.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/7.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/8.PNG -------------------------------------------------------------------------------- /autowsgr/data/images/symbol_image/9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/images/symbol_image/9.PNG -------------------------------------------------------------------------------- /autowsgr/data/map/decisive_battle/3-4-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/map/decisive_battle/3-4-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/map/decisive_battle/3-4-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/map/decisive_battle/3-4-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/map/decisive_battle/3-4-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/map/decisive_battle/3-4-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/map/decisive_battle/3-5-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/map/decisive_battle/3-5-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/map/decisive_battle/3-5-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/map/decisive_battle/3-5-2.PNG -------------------------------------------------------------------------------- /autowsgr/data/map/decisive_battle/3-5-3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/map/decisive_battle/3-5-3.PNG -------------------------------------------------------------------------------- /autowsgr/data/map/decisive_battle/3-6-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/data/map/decisive_battle/3-6-1.PNG -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 405 3 | - 98 4 | B: !!python/tuple 5 | - 343 6 | - 163 7 | C: !!python/tuple 8 | - 186 9 | - 317 10 | D: !!python/tuple 11 | - 615 12 | - 136 13 | E: !!python/tuple 14 | - 488 15 | - 234 16 | F: !!python/tuple 17 | - 368 18 | - 328 19 | G: !!python/tuple 20 | - 360 21 | - 426 22 | H: !!python/tuple 23 | - 812 24 | - 167 25 | I: !!python/tuple 26 | - 735 27 | - 256 28 | J: !!python/tuple 29 | - 539 30 | - 366 31 | K: !!python/tuple 32 | - 735 33 | - 452 34 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 322 3 | - 84 4 | B: !!python/tuple 5 | - 181 6 | - 258 7 | C: !!python/tuple 8 | - 665 9 | - 113 10 | D: !!python/tuple 11 | - 495 12 | - 135 13 | E: !!python/tuple 14 | - 314 15 | - 222 16 | F: !!python/tuple 17 | - 338 18 | - 372 19 | G: !!python/tuple 20 | - 411 21 | - 338 22 | H: !!python/tuple 23 | - 635 24 | - 220 25 | I: !!python/tuple 26 | - 841 27 | - 193 28 | J: !!python/tuple 29 | - 487 30 | - 482 31 | K: !!python/tuple 32 | - 549 33 | - 404 34 | L: !!python/tuple 35 | - 741 36 | - 374 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 690 3 | - 444 4 | B: !!python/tuple 5 | - 791 6 | - 324 7 | C: !!python/tuple 8 | - 538 9 | - 405 10 | D: !!python/tuple 11 | - 712 12 | - 188 13 | E: !!python/tuple 14 | - 607 15 | - 284 16 | F: !!python/tuple 17 | - 390 18 | - 395 19 | G: !!python/tuple 20 | - 278 21 | - 459 22 | H: !!python/tuple 23 | - 841 24 | - 91 25 | I: !!python/tuple 26 | - 556 27 | - 118 28 | J: !!python/tuple 29 | - 465 30 | - 269 31 | K: !!python/tuple 32 | - 288 33 | - 321 34 | L: !!python/tuple 35 | - 172 36 | - 339 37 | M: !!python/tuple 38 | - 162 39 | - 184 40 | N: !!python/tuple 41 | - 321 42 | - 151 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 226 3 | - 193 4 | B: !!python/tuple 5 | - 324 6 | - 202 7 | C: !!python/tuple 8 | - 584 9 | - 82 10 | D: !!python/tuple 11 | - 472 12 | - 186 13 | E: !!python/tuple 14 | - 74 15 | - 329 16 | F: !!python/tuple 17 | - 187 18 | - 375 19 | G: !!python/tuple 20 | - 285 21 | - 335 22 | H: !!python/tuple 23 | - 436 24 | - 327 25 | I: !!python/tuple 26 | - 744 27 | - 143 28 | J: !!python/tuple 29 | - 886 30 | - 256 31 | K: !!python/tuple 32 | - 765 33 | - 322 34 | L: !!python/tuple 35 | - 578 36 | - 306 37 | M: !!python/tuple 38 | - 306 39 | - 481 40 | N: !!python/tuple 41 | - 530 42 | - 478 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 388 3 | - 506 4 | B: !!python/tuple 5 | - 443 6 | - 460 7 | C: !!python/tuple 8 | - 232 9 | - 467 10 | D: !!python/tuple 11 | - 375 12 | - 332 13 | E: !!python/tuple 14 | - 140 15 | - 261 16 | F: !!python/tuple 17 | - 275 18 | - 216 19 | G: !!python/tuple 20 | - 441 21 | - 210 22 | H: !!python/tuple 23 | - 557 24 | - 343 25 | I: !!python/tuple 26 | - 285 27 | - 142 28 | J: !!python/tuple 29 | - 80 30 | - 184 31 | K: !!python/tuple 32 | - 450 33 | - 126 34 | L: !!python/tuple 35 | - 629 36 | - 171 37 | M: !!python/tuple 38 | - 396 39 | - 73 40 | N: !!python/tuple 41 | - 700 42 | - 436 43 | O: !!python/tuple 44 | - 874 45 | - 436 46 | P: !!python/tuple 47 | - 802 48 | - 278 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/E-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 530 3 | - 106 4 | B: !!python/tuple 5 | - 709 6 | - 94 7 | C: !!python/tuple 8 | - 691 9 | - 195 10 | D: !!python/tuple 11 | - 900 12 | - 253 13 | E: !!python/tuple 14 | - 443 15 | - 196 16 | F: !!python/tuple 17 | - 767 18 | - 352 19 | G: !!python/tuple 20 | - 306 21 | - 144 22 | H: !!python/tuple 23 | - 261 24 | - 293 25 | I: !!python/tuple 26 | - 73 27 | - 297 28 | J: !!python/tuple 29 | - 68 30 | - 459 31 | K: !!python/tuple 32 | - 592 33 | - 308 34 | L: !!python/tuple 35 | - 435 36 | - 366 37 | M: !!python/tuple 38 | - 636 39 | - 423 40 | N: !!python/tuple 41 | - 626 42 | - 492 43 | O: !!python/tuple 44 | - 453 45 | - 442 46 | P: !!python/tuple 47 | - 235 48 | - 491 49 | Q: !!python/tuple 50 | - 224 51 | - 382 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 405 3 | - 98 4 | B: !!python/tuple 5 | - 343 6 | - 163 7 | C: !!python/tuple 8 | - 186 9 | - 317 10 | D: !!python/tuple 11 | - 615 12 | - 136 13 | E: !!python/tuple 14 | - 488 15 | - 234 16 | F: !!python/tuple 17 | - 368 18 | - 328 19 | G: !!python/tuple 20 | - 360 21 | - 426 22 | H: !!python/tuple 23 | - 812 24 | - 167 25 | I: !!python/tuple 26 | - 735 27 | - 256 28 | J: !!python/tuple 29 | - 539 30 | - 366 31 | K: !!python/tuple 32 | - 735 33 | - 452 34 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 322 3 | - 84 4 | B: !!python/tuple 5 | - 181 6 | - 258 7 | C: !!python/tuple 8 | - 665 9 | - 113 10 | D: !!python/tuple 11 | - 495 12 | - 135 13 | E: !!python/tuple 14 | - 314 15 | - 222 16 | F: !!python/tuple 17 | - 338 18 | - 372 19 | G: !!python/tuple 20 | - 411 21 | - 338 22 | H: !!python/tuple 23 | - 635 24 | - 220 25 | I: !!python/tuple 26 | - 841 27 | - 193 28 | J: !!python/tuple 29 | - 487 30 | - 482 31 | K: !!python/tuple 32 | - 549 33 | - 404 34 | L: !!python/tuple 35 | - 741 36 | - 374 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 690 3 | - 444 4 | B: !!python/tuple 5 | - 791 6 | - 324 7 | C: !!python/tuple 8 | - 538 9 | - 405 10 | D: !!python/tuple 11 | - 712 12 | - 188 13 | E: !!python/tuple 14 | - 607 15 | - 284 16 | F: !!python/tuple 17 | - 390 18 | - 395 19 | G: !!python/tuple 20 | - 278 21 | - 459 22 | H: !!python/tuple 23 | - 841 24 | - 91 25 | I: !!python/tuple 26 | - 556 27 | - 118 28 | J: !!python/tuple 29 | - 465 30 | - 269 31 | K: !!python/tuple 32 | - 288 33 | - 321 34 | L: !!python/tuple 35 | - 172 36 | - 339 37 | M: !!python/tuple 38 | - 162 39 | - 184 40 | N: !!python/tuple 41 | - 321 42 | - 151 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 226 3 | - 193 4 | B: !!python/tuple 5 | - 324 6 | - 202 7 | C: !!python/tuple 8 | - 584 9 | - 82 10 | D: !!python/tuple 11 | - 472 12 | - 186 13 | E: !!python/tuple 14 | - 74 15 | - 329 16 | F: !!python/tuple 17 | - 187 18 | - 375 19 | G: !!python/tuple 20 | - 285 21 | - 335 22 | H: !!python/tuple 23 | - 436 24 | - 327 25 | I: !!python/tuple 26 | - 744 27 | - 143 28 | J: !!python/tuple 29 | - 886 30 | - 256 31 | K: !!python/tuple 32 | - 765 33 | - 322 34 | L: !!python/tuple 35 | - 578 36 | - 306 37 | M: !!python/tuple 38 | - 306 39 | - 481 40 | N: !!python/tuple 41 | - 530 42 | - 478 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 388 3 | - 506 4 | B: !!python/tuple 5 | - 443 6 | - 460 7 | C: !!python/tuple 8 | - 232 9 | - 467 10 | D: !!python/tuple 11 | - 375 12 | - 332 13 | E: !!python/tuple 14 | - 140 15 | - 261 16 | F: !!python/tuple 17 | - 275 18 | - 216 19 | G: !!python/tuple 20 | - 441 21 | - 210 22 | H: !!python/tuple 23 | - 557 24 | - 343 25 | I: !!python/tuple 26 | - 285 27 | - 142 28 | J: !!python/tuple 29 | - 80 30 | - 184 31 | K: !!python/tuple 32 | - 450 33 | - 126 34 | L: !!python/tuple 35 | - 629 36 | - 171 37 | M: !!python/tuple 38 | - 396 39 | - 73 40 | N: !!python/tuple 41 | - 700 42 | - 436 43 | O: !!python/tuple 44 | - 874 45 | - 436 46 | P: !!python/tuple 47 | - 802 48 | - 278 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20220928/H-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 530 3 | - 106 4 | B: !!python/tuple 5 | - 709 6 | - 94 7 | C: !!python/tuple 8 | - 691 9 | - 195 10 | D: !!python/tuple 11 | - 900 12 | - 253 13 | E: !!python/tuple 14 | - 443 15 | - 196 16 | F: !!python/tuple 17 | - 767 18 | - 352 19 | G: !!python/tuple 20 | - 306 21 | - 144 22 | H: !!python/tuple 23 | - 261 24 | - 293 25 | I: !!python/tuple 26 | - 73 27 | - 297 28 | J: !!python/tuple 29 | - 68 30 | - 459 31 | K: !!python/tuple 32 | - 592 33 | - 308 34 | L: !!python/tuple 35 | - 435 36 | - 366 37 | M: !!python/tuple 38 | - 636 39 | - 423 40 | N: !!python/tuple 41 | - 626 42 | - 492 43 | O: !!python/tuple 44 | - 453 45 | - 442 46 | P: !!python/tuple 47 | - 235 48 | - 491 49 | Q: !!python/tuple 50 | - 224 51 | - 382 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 329 3 | - 81 4 | B: !!python/tuple 5 | - 367 6 | - 248 7 | C: !!python/tuple 8 | - 185 9 | - 314 10 | D: !!python/tuple 11 | - 517 12 | - 156 13 | E: !!python/tuple 14 | - 96 15 | - 443 16 | F: !!python/tuple 17 | - 367 18 | - 405 19 | G: !!python/tuple 20 | - 562 21 | - 337 22 | H: !!python/tuple 23 | - 711 24 | - 239 25 | I: !!python/tuple 26 | - 861 27 | - 309 28 | J: !!python/tuple 29 | - 561 30 | - 502 31 | K: !!python/tuple 32 | - 713 33 | - 427 34 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 300 3 | - 119 4 | B: !!python/tuple 5 | - 97 6 | - 300 7 | C: !!python/tuple 8 | - 495 9 | - 143 10 | D: !!python/tuple 11 | - 336 12 | - 295 13 | E: !!python/tuple 14 | - 171 15 | - 441 16 | F: !!python/tuple 17 | - 689 18 | - 140 19 | G: !!python/tuple 20 | - 523 21 | - 309 22 | H: !!python/tuple 23 | - 384 24 | - 479 25 | I: !!python/tuple 26 | - 826 27 | - 187 28 | J: !!python/tuple 29 | - 863 30 | - 338 31 | K: !!python/tuple 32 | - 574 33 | - 474 34 | L: !!python/tuple 35 | - 781 36 | - 476 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 202 3 | - 374 4 | B: !!python/tuple 5 | - 269 6 | - 222 7 | C: !!python/tuple 8 | - 397 9 | - 121 10 | D: !!python/tuple 11 | - 368 12 | - 405 13 | E: !!python/tuple 14 | - 480 15 | - 336 16 | F: !!python/tuple 17 | - 352 18 | - 471 19 | G: !!python/tuple 20 | - 549 21 | - 223 22 | H: !!python/tuple 23 | - 576 24 | - 75 25 | I: !!python/tuple 26 | - 750 27 | - 158 28 | J: !!python/tuple 29 | - 534 30 | - 511 31 | K: !!python/tuple 32 | - 593 33 | - 434 34 | L: !!python/tuple 35 | - 719 36 | - 308 37 | M: !!python/tuple 38 | - 803 39 | - 464 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 323 3 | - 69 4 | B: !!python/tuple 5 | - 60 6 | - 186 7 | C: !!python/tuple 8 | - 369 9 | - 254 10 | D: !!python/tuple 11 | - 481 12 | - 142 13 | E: !!python/tuple 14 | - 630 15 | - 112 16 | F: !!python/tuple 17 | - 586 18 | - 254 19 | G: !!python/tuple 20 | - 736 21 | - 256 22 | H: !!python/tuple 23 | - 142 24 | - 290 25 | I: !!python/tuple 26 | - 283 27 | - 375 28 | J: !!python/tuple 29 | - 126 30 | - 383 31 | K: !!python/tuple 32 | - 43 33 | - 498 34 | L: !!python/tuple 35 | - 200 36 | - 505 37 | M: !!python/tuple 38 | - 433 39 | - 437 40 | N: !!python/tuple 41 | - 709 42 | - 325 43 | O: !!python/tuple 44 | - 765 45 | - 494 46 | P: !!python/tuple 47 | - 608 48 | - 485 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 170 3 | - 158 4 | B: !!python/tuple 5 | - 209 6 | - 306 7 | C: !!python/tuple 8 | - 157 9 | - 442 10 | D: !!python/tuple 11 | - 337 12 | - 111 13 | E: !!python/tuple 14 | - 335 15 | - 204 16 | F: !!python/tuple 17 | - 353 18 | - 376 19 | G: !!python/tuple 20 | - 361 21 | - 465 22 | H: !!python/tuple 23 | - 518 24 | - 79 25 | I: !!python/tuple 26 | - 525 27 | - 159 28 | J: !!python/tuple 29 | - 509 30 | - 223 31 | K: !!python/tuple 32 | - 517 33 | - 308 34 | L: !!python/tuple 35 | - 531 36 | - 413 37 | M: !!python/tuple 38 | - 555 39 | - 486 40 | N: !!python/tuple 41 | - 682 42 | - 136 43 | O: !!python/tuple 44 | - 644 45 | - 306 46 | P: !!python/tuple 47 | - 660 48 | - 470 49 | Q: !!python/tuple 50 | - 813 51 | - 470 52 | R: !!python/tuple 53 | - 831 54 | - 336 55 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/E-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 277 3 | - 74 4 | B: !!python/tuple 5 | - 256 6 | - 263 7 | C: !!python/tuple 8 | - 212 9 | - 352 10 | D: !!python/tuple 11 | - 452 12 | - 76 13 | E: !!python/tuple 14 | - 387 15 | - 156 16 | F: !!python/tuple 17 | - 414 18 | - 323 19 | G: !!python/tuple 20 | - 359 21 | - 418 22 | H: !!python/tuple 23 | - 510 24 | - 484 25 | I: !!python/tuple 26 | - 550 27 | - 412 28 | J: !!python/tuple 29 | - 593 30 | - 174 31 | K: !!python/tuple 32 | - 487 33 | - 284 34 | L: !!python/tuple 35 | - 607 36 | - 109 37 | M: !!python/tuple 38 | - 636 39 | - 298 40 | N: !!python/tuple 41 | - 827 42 | - 69 43 | O: !!python/tuple 44 | - 793 45 | - 270 46 | P: !!python/tuple 47 | - 917 48 | - 136 49 | Q: !!python/tuple 50 | - 881 51 | - 407 52 | R: !!python/tuple 53 | - 740 54 | - 467 55 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 329 3 | - 81 4 | B: !!python/tuple 5 | - 367 6 | - 248 7 | C: !!python/tuple 8 | - 185 9 | - 314 10 | D: !!python/tuple 11 | - 517 12 | - 156 13 | E: !!python/tuple 14 | - 96 15 | - 443 16 | F: !!python/tuple 17 | - 367 18 | - 405 19 | G: !!python/tuple 20 | - 562 21 | - 337 22 | H: !!python/tuple 23 | - 711 24 | - 239 25 | I: !!python/tuple 26 | - 861 27 | - 309 28 | J: !!python/tuple 29 | - 561 30 | - 502 31 | K: !!python/tuple 32 | - 713 33 | - 427 34 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 300 3 | - 119 4 | B: !!python/tuple 5 | - 97 6 | - 300 7 | C: !!python/tuple 8 | - 495 9 | - 143 10 | D: !!python/tuple 11 | - 336 12 | - 295 13 | E: !!python/tuple 14 | - 171 15 | - 441 16 | F: !!python/tuple 17 | - 689 18 | - 140 19 | G: !!python/tuple 20 | - 523 21 | - 309 22 | H: !!python/tuple 23 | - 384 24 | - 479 25 | I: !!python/tuple 26 | - 826 27 | - 187 28 | J: !!python/tuple 29 | - 863 30 | - 338 31 | K: !!python/tuple 32 | - 574 33 | - 474 34 | L: !!python/tuple 35 | - 781 36 | - 476 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 202 3 | - 374 4 | B: !!python/tuple 5 | - 269 6 | - 222 7 | C: !!python/tuple 8 | - 397 9 | - 121 10 | D: !!python/tuple 11 | - 368 12 | - 405 13 | E: !!python/tuple 14 | - 480 15 | - 336 16 | F: !!python/tuple 17 | - 352 18 | - 471 19 | G: !!python/tuple 20 | - 549 21 | - 223 22 | H: !!python/tuple 23 | - 576 24 | - 75 25 | I: !!python/tuple 26 | - 750 27 | - 158 28 | J: !!python/tuple 29 | - 534 30 | - 511 31 | K: !!python/tuple 32 | - 593 33 | - 434 34 | L: !!python/tuple 35 | - 719 36 | - 308 37 | M: !!python/tuple 38 | - 803 39 | - 464 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20221118/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 323 3 | - 69 4 | B: !!python/tuple 5 | - 60 6 | - 186 7 | C: !!python/tuple 8 | - 369 9 | - 254 10 | D: !!python/tuple 11 | - 481 12 | - 142 13 | E: !!python/tuple 14 | - 630 15 | - 112 16 | F: !!python/tuple 17 | - 586 18 | - 254 19 | G: !!python/tuple 20 | - 736 21 | - 256 22 | H: !!python/tuple 23 | - 142 24 | - 290 25 | I: !!python/tuple 26 | - 283 27 | - 375 28 | J: !!python/tuple 29 | - 126 30 | - 383 31 | K: !!python/tuple 32 | - 43 33 | - 498 34 | L: !!python/tuple 35 | - 200 36 | - 505 37 | M: !!python/tuple 38 | - 433 39 | - 437 40 | N: !!python/tuple 41 | - 709 42 | - 325 43 | O: !!python/tuple 44 | - 765 45 | - 494 46 | P: !!python/tuple 47 | - 608 48 | - 485 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 208 3 | - 186 4 | B: !!python/tuple 5 | - 126 6 | - 353 7 | C: !!python/tuple 8 | - 309 9 | - 278 10 | D: !!python/tuple 11 | - 343 12 | - 444 13 | E: !!python/tuple 14 | - 458 15 | - 299 16 | F: !!python/tuple 17 | - 464 18 | - 144 19 | G: !!python/tuple 20 | - 510 21 | - 505 22 | H: !!python/tuple 23 | - 547 24 | - 399 25 | I: !!python/tuple 26 | - 615 27 | - 252 28 | J: !!python/tuple 29 | - 698 30 | - 465 31 | K: !!python/tuple 32 | - 765 33 | - 323 34 | L: !!python/tuple 35 | - 727 36 | - 94 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 89 3 | - 230 4 | B: !!python/tuple 5 | - 247 6 | - 188 7 | C: !!python/tuple 8 | - 354 9 | - 96 10 | D: !!python/tuple 11 | - 223 12 | - 299 13 | E: !!python/tuple 14 | - 412 15 | - 260 16 | F: !!python/tuple 17 | - 537 18 | - 150 19 | G: !!python/tuple 20 | - 416 21 | - 359 22 | H: !!python/tuple 23 | - 633 24 | - 296 25 | I: !!python/tuple 26 | - 402 27 | - 501 28 | J: !!python/tuple 29 | - 768 30 | - 132 31 | K: !!python/tuple 32 | - 728 33 | - 217 34 | L: !!python/tuple 35 | - 891 36 | - 285 37 | M: !!python/tuple 38 | - 710 39 | - 471 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 119 3 | - 359 4 | B: !!python/tuple 5 | - 225 6 | - 481 7 | C: !!python/tuple 8 | - 338 9 | - 344 10 | D: !!python/tuple 11 | - 119 12 | - 219 13 | E: !!python/tuple 14 | - 60 15 | - 83 16 | F: !!python/tuple 17 | - 368 18 | - 494 19 | G: !!python/tuple 20 | - 366 21 | - 184 22 | H: !!python/tuple 23 | - 561 24 | - 148 25 | I: !!python/tuple 26 | - 533 27 | - 330 28 | J: !!python/tuple 29 | - 699 30 | - 215 31 | K: !!python/tuple 32 | - 793 33 | - 150 34 | L: !!python/tuple 35 | - 556 36 | - 485 37 | M: !!python/tuple 38 | - 757 39 | - 329 40 | N: !!python/tuple 41 | - 885 42 | - 421 43 | O: !!python/tuple 44 | - 749 45 | - 497 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 235 3 | - 137 4 | B: !!python/tuple 5 | - 118 6 | - 231 7 | C: !!python/tuple 8 | - 223 9 | - 390 10 | D: !!python/tuple 11 | - 57 12 | - 472 13 | E: !!python/tuple 14 | - 384 15 | - 493 16 | F: !!python/tuple 17 | - 324 18 | - 314 19 | G: !!python/tuple 20 | - 420 21 | - 208 22 | H: !!python/tuple 23 | - 497 24 | - 380 25 | I: !!python/tuple 26 | - 572 27 | - 155 28 | J: !!python/tuple 29 | - 570 30 | - 385 31 | K: !!python/tuple 32 | - 757 33 | - 353 34 | L: !!python/tuple 35 | - 707 36 | - 248 37 | M: !!python/tuple 38 | - 909 39 | - 309 40 | N: !!python/tuple 41 | - 591 42 | - 79 43 | O: !!python/tuple 44 | - 854 45 | - 93 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 125 3 | - 284 4 | B: !!python/tuple 5 | - 234 6 | - 356 7 | C: !!python/tuple 8 | - 333 9 | - 486 10 | D: !!python/tuple 11 | - 130 12 | - 103 13 | E: !!python/tuple 14 | - 324 15 | - 75 16 | F: !!python/tuple 17 | - 252 18 | - 194 19 | G: !!python/tuple 20 | - 436 21 | - 236 22 | H: !!python/tuple 23 | - 621 24 | - 255 25 | I: !!python/tuple 26 | - 383 27 | - 318 28 | J: !!python/tuple 29 | - 546 30 | - 479 31 | K: !!python/tuple 32 | - 552 33 | - 364 34 | L: !!python/tuple 35 | - 670 36 | - 472 37 | M: !!python/tuple 38 | - 747 39 | - 260 40 | N: !!python/tuple 41 | - 920 42 | - 304 43 | O: !!python/tuple 44 | - 891 45 | - 149 46 | P: !!python/tuple 47 | - 787 48 | - 342 49 | Q: !!python/tuple 50 | - 863 51 | - 486 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/E-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 67 3 | - 203 4 | B: !!python/tuple 5 | - 253 6 | - 90 7 | C: !!python/tuple 8 | - 234 9 | - 239 10 | D: !!python/tuple 11 | - 149 12 | - 343 13 | E: !!python/tuple 14 | - 271 15 | - 520 16 | F: !!python/tuple 17 | - 309 18 | - 446 19 | G: !!python/tuple 20 | - 406 21 | - 182 22 | H: !!python/tuple 23 | - 498 24 | - 498 25 | I: !!python/tuple 26 | - 439 27 | - 310 28 | J: !!python/tuple 29 | - 571 30 | - 130 31 | K: !!python/tuple 32 | - 667 33 | - 77 34 | L: !!python/tuple 35 | - 753 36 | - 196 37 | M: !!python/tuple 38 | - 574 39 | - 317 40 | N: !!python/tuple 41 | - 862 42 | - 67 43 | O: !!python/tuple 44 | - 737 45 | - 330 46 | P: !!python/tuple 47 | - 883 48 | - 331 49 | Q: !!python/tuple 50 | - 880 51 | - 507 52 | R: !!python/tuple 53 | - 705 54 | - 496 55 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 208 3 | - 186 4 | B: !!python/tuple 5 | - 126 6 | - 353 7 | C: !!python/tuple 8 | - 309 9 | - 278 10 | D: !!python/tuple 11 | - 343 12 | - 444 13 | E: !!python/tuple 14 | - 458 15 | - 299 16 | F: !!python/tuple 17 | - 464 18 | - 144 19 | G: !!python/tuple 20 | - 510 21 | - 505 22 | H: !!python/tuple 23 | - 547 24 | - 399 25 | I: !!python/tuple 26 | - 615 27 | - 252 28 | J: !!python/tuple 29 | - 698 30 | - 465 31 | K: !!python/tuple 32 | - 765 33 | - 323 34 | L: !!python/tuple 35 | - 727 36 | - 94 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 89 3 | - 230 4 | B: !!python/tuple 5 | - 247 6 | - 188 7 | C: !!python/tuple 8 | - 354 9 | - 96 10 | D: !!python/tuple 11 | - 223 12 | - 299 13 | E: !!python/tuple 14 | - 412 15 | - 260 16 | F: !!python/tuple 17 | - 537 18 | - 150 19 | G: !!python/tuple 20 | - 416 21 | - 359 22 | H: !!python/tuple 23 | - 633 24 | - 296 25 | I: !!python/tuple 26 | - 402 27 | - 501 28 | J: !!python/tuple 29 | - 768 30 | - 132 31 | K: !!python/tuple 32 | - 728 33 | - 217 34 | L: !!python/tuple 35 | - 891 36 | - 285 37 | M: !!python/tuple 38 | - 710 39 | - 471 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 119 3 | - 359 4 | B: !!python/tuple 5 | - 225 6 | - 481 7 | C: !!python/tuple 8 | - 338 9 | - 344 10 | D: !!python/tuple 11 | - 119 12 | - 219 13 | E: !!python/tuple 14 | - 60 15 | - 83 16 | F: !!python/tuple 17 | - 368 18 | - 494 19 | G: !!python/tuple 20 | - 366 21 | - 184 22 | H: !!python/tuple 23 | - 561 24 | - 148 25 | I: !!python/tuple 26 | - 533 27 | - 330 28 | J: !!python/tuple 29 | - 699 30 | - 215 31 | K: !!python/tuple 32 | - 793 33 | - 150 34 | L: !!python/tuple 35 | - 556 36 | - 485 37 | M: !!python/tuple 38 | - 757 39 | - 329 40 | N: !!python/tuple 41 | - 885 42 | - 421 43 | O: !!python/tuple 44 | - 749 45 | - 497 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 235 3 | - 137 4 | B: !!python/tuple 5 | - 118 6 | - 231 7 | C: !!python/tuple 8 | - 223 9 | - 390 10 | D: !!python/tuple 11 | - 57 12 | - 472 13 | E: !!python/tuple 14 | - 384 15 | - 493 16 | F: !!python/tuple 17 | - 324 18 | - 314 19 | G: !!python/tuple 20 | - 420 21 | - 208 22 | H: !!python/tuple 23 | - 497 24 | - 380 25 | I: !!python/tuple 26 | - 572 27 | - 155 28 | J: !!python/tuple 29 | - 570 30 | - 385 31 | K: !!python/tuple 32 | - 757 33 | - 353 34 | L: !!python/tuple 35 | - 707 36 | - 248 37 | M: !!python/tuple 38 | - 909 39 | - 309 40 | N: !!python/tuple 41 | - 591 42 | - 79 43 | O: !!python/tuple 44 | - 854 45 | - 93 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 125 3 | - 284 4 | B: !!python/tuple 5 | - 234 6 | - 356 7 | C: !!python/tuple 8 | - 333 9 | - 486 10 | D: !!python/tuple 11 | - 130 12 | - 103 13 | E: !!python/tuple 14 | - 324 15 | - 75 16 | F: !!python/tuple 17 | - 252 18 | - 194 19 | G: !!python/tuple 20 | - 436 21 | - 236 22 | H: !!python/tuple 23 | - 621 24 | - 255 25 | I: !!python/tuple 26 | - 383 27 | - 318 28 | J: !!python/tuple 29 | - 546 30 | - 479 31 | K: !!python/tuple 32 | - 552 33 | - 364 34 | L: !!python/tuple 35 | - 670 36 | - 472 37 | M: !!python/tuple 38 | - 747 39 | - 260 40 | N: !!python/tuple 41 | - 920 42 | - 304 43 | O: !!python/tuple 44 | - 891 45 | - 149 46 | P: !!python/tuple 47 | - 787 48 | - 342 49 | Q: !!python/tuple 50 | - 863 51 | - 486 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230117/H-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 67 3 | - 203 4 | B: !!python/tuple 5 | - 253 6 | - 90 7 | C: !!python/tuple 8 | - 234 9 | - 239 10 | D: !!python/tuple 11 | - 149 12 | - 343 13 | E: !!python/tuple 14 | - 271 15 | - 520 16 | F: !!python/tuple 17 | - 309 18 | - 446 19 | G: !!python/tuple 20 | - 406 21 | - 182 22 | H: !!python/tuple 23 | - 498 24 | - 498 25 | I: !!python/tuple 26 | - 439 27 | - 310 28 | J: !!python/tuple 29 | - 571 30 | - 130 31 | K: !!python/tuple 32 | - 667 33 | - 77 34 | L: !!python/tuple 35 | - 753 36 | - 196 37 | M: !!python/tuple 38 | - 574 39 | - 317 40 | N: !!python/tuple 41 | - 862 42 | - 67 43 | O: !!python/tuple 44 | - 737 45 | - 330 46 | P: !!python/tuple 47 | - 883 48 | - 331 49 | Q: !!python/tuple 50 | - 880 51 | - 507 52 | R: !!python/tuple 53 | - 705 54 | - 496 55 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/E-1.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/E-2.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 252 3 | - 232 4 | B: !!python/tuple 5 | - 326 6 | - 333 7 | C: !!python/tuple 8 | - 433 9 | - 230 10 | D: !!python/tuple 11 | - 471 12 | - 336 13 | E: !!python/tuple 14 | - 615 15 | - 287 16 | F: !!python/tuple 17 | - 418 18 | - 80 19 | G: !!python/tuple 20 | - 631 21 | - 202 22 | H: !!python/tuple 23 | - 519 24 | - 97 25 | I: !!python/tuple 26 | - 739 27 | - 388 28 | J: !!python/tuple 29 | - 547 30 | - 447 31 | K: !!python/tuple 32 | - 706 33 | - 477 34 | L: !!python/tuple 35 | - 306 36 | - 489 37 | M: !!python/tuple 38 | - 802 39 | - 279 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 629 3 | - 182 4 | B: !!python/tuple 5 | - 433 6 | - 185 7 | C: !!python/tuple 8 | - 509 9 | - 299 10 | D: !!python/tuple 11 | - 216 12 | - 337 13 | E: !!python/tuple 14 | - 80 15 | - 240 16 | F: !!python/tuple 17 | - 338 18 | - 462 19 | G: !!python/tuple 20 | - 211 21 | - 197 22 | H: !!python/tuple 23 | - 321 24 | - 101 25 | I: !!python/tuple 26 | - 426 27 | - 306 28 | J: !!python/tuple 29 | - 491 30 | - 468 31 | K: !!python/tuple 32 | - 731 33 | - 492 34 | L: !!python/tuple 35 | - 651 36 | - 389 37 | M: !!python/tuple 38 | - 760 39 | - 268 40 | N: !!python/tuple 41 | - 608 42 | - 94 43 | O: !!python/tuple 44 | - 864 45 | - 319 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 209 3 | - 228 4 | B: !!python/tuple 5 | - 376 6 | - 276 7 | C: !!python/tuple 8 | - 434 9 | - 208 10 | D: !!python/tuple 11 | - 449 12 | - 117 13 | E: !!python/tuple 14 | - 699 15 | - 74 16 | F: !!python/tuple 17 | - 635 18 | - 150 19 | G: !!python/tuple 20 | - 808 21 | - 124 22 | H: !!python/tuple 23 | - 252 24 | - 372 25 | I: !!python/tuple 26 | - 362 27 | - 490 28 | J: !!python/tuple 29 | - 524 30 | - 363 31 | K: !!python/tuple 32 | - 648 33 | - 331 34 | L: !!python/tuple 35 | - 499 36 | - 511 37 | M: !!python/tuple 38 | - 737 39 | - 290 40 | N: !!python/tuple 41 | - 910 42 | - 418 43 | O: !!python/tuple 44 | - 83 45 | - 434 46 | P: !!python/tuple 47 | - 684 48 | - 473 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/H-1.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/H-2.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 252 3 | - 232 4 | B: !!python/tuple 5 | - 326 6 | - 333 7 | C: !!python/tuple 8 | - 433 9 | - 230 10 | D: !!python/tuple 11 | - 471 12 | - 336 13 | E: !!python/tuple 14 | - 615 15 | - 287 16 | F: !!python/tuple 17 | - 418 18 | - 80 19 | G: !!python/tuple 20 | - 631 21 | - 202 22 | H: !!python/tuple 23 | - 519 24 | - 97 25 | I: !!python/tuple 26 | - 739 27 | - 388 28 | J: !!python/tuple 29 | - 547 30 | - 447 31 | K: !!python/tuple 32 | - 706 33 | - 477 34 | L: !!python/tuple 35 | - 306 36 | - 489 37 | M: !!python/tuple 38 | - 802 39 | - 279 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 629 3 | - 182 4 | B: !!python/tuple 5 | - 433 6 | - 185 7 | C: !!python/tuple 8 | - 509 9 | - 299 10 | D: !!python/tuple 11 | - 216 12 | - 337 13 | E: !!python/tuple 14 | - 80 15 | - 240 16 | F: !!python/tuple 17 | - 338 18 | - 462 19 | G: !!python/tuple 20 | - 211 21 | - 197 22 | H: !!python/tuple 23 | - 321 24 | - 101 25 | I: !!python/tuple 26 | - 426 27 | - 306 28 | J: !!python/tuple 29 | - 491 30 | - 468 31 | K: !!python/tuple 32 | - 731 33 | - 492 34 | L: !!python/tuple 35 | - 651 36 | - 389 37 | M: !!python/tuple 38 | - 760 39 | - 268 40 | N: !!python/tuple 41 | - 608 42 | - 94 43 | O: !!python/tuple 44 | - 864 45 | - 319 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230613/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 209 3 | - 228 4 | B: !!python/tuple 5 | - 376 6 | - 276 7 | C: !!python/tuple 8 | - 434 9 | - 208 10 | D: !!python/tuple 11 | - 449 12 | - 117 13 | E: !!python/tuple 14 | - 699 15 | - 74 16 | F: !!python/tuple 17 | - 635 18 | - 150 19 | G: !!python/tuple 20 | - 808 21 | - 124 22 | H: !!python/tuple 23 | - 252 24 | - 372 25 | I: !!python/tuple 26 | - 362 27 | - 490 28 | J: !!python/tuple 29 | - 524 30 | - 363 31 | K: !!python/tuple 32 | - 648 33 | - 331 34 | L: !!python/tuple 35 | - 499 36 | - 511 37 | M: !!python/tuple 38 | - 737 39 | - 290 40 | N: !!python/tuple 41 | - 910 42 | - 418 43 | O: !!python/tuple 44 | - 83 45 | - 434 46 | P: !!python/tuple 47 | - 684 48 | - 473 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230809/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 248 3 | - 315 4 | B: !!python/tuple 5 | - 368 6 | - 422 7 | C: !!python/tuple 8 | - 262 9 | - 164 10 | D: !!python/tuple 11 | - 399 12 | - 238 13 | E: !!python/tuple 14 | - 562 15 | - 337 16 | F: !!python/tuple 17 | - 518 18 | - 465 19 | G: !!python/tuple 20 | - 527 21 | - 118 22 | H: !!python/tuple 23 | - 585 24 | - 224 25 | I: !!python/tuple 26 | - 779 27 | - 88 28 | J: !!python/tuple 29 | - 669 30 | - 480 31 | K: !!python/tuple 32 | - 742 33 | - 292 34 | L: !!python/tuple 35 | - 891 36 | - 255 37 | M: !!python/tuple 38 | - 834 39 | - 451 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230809/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 165 3 | - 284 4 | B: !!python/tuple 5 | - 226 6 | - 178 7 | C: !!python/tuple 8 | - 263 9 | - 410 10 | D: !!python/tuple 11 | - 375 12 | - 308 13 | E: !!python/tuple 14 | - 414 15 | - 165 16 | F: !!python/tuple 17 | - 578 18 | - 94 19 | G: !!python/tuple 20 | - 591 21 | - 224 22 | H: !!python/tuple 23 | - 503 24 | - 481 25 | I: !!python/tuple 26 | - 470 27 | - 367 28 | J: !!python/tuple 29 | - 683 30 | - 336 31 | K: !!python/tuple 32 | - 636 33 | - 465 34 | L: !!python/tuple 35 | - 796 36 | - 388 37 | M: !!python/tuple 38 | - 794 39 | - 189 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230809/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 614 3 | - 448 4 | B: !!python/tuple 5 | - 674 6 | - 321 7 | C: !!python/tuple 8 | - 841 9 | - 290 10 | D: !!python/tuple 11 | - 441 12 | - 375 13 | E: !!python/tuple 14 | - 400 15 | - 479 16 | F: !!python/tuple 17 | - 489 18 | - 283 19 | G: !!python/tuple 20 | - 703 21 | - 171 22 | H: !!python/tuple 23 | - 608 24 | - 76 25 | I: !!python/tuple 26 | - 446 27 | - 135 28 | J: !!python/tuple 29 | - 318 30 | - 227 31 | K: !!python/tuple 32 | - 290 33 | - 336 34 | L: !!python/tuple 35 | - 228 36 | - 420 37 | M: !!python/tuple 38 | - 66 39 | - 424 40 | N: !!python/tuple 41 | - 111 42 | - 307 43 | O: !!python/tuple 44 | - 274 45 | - 80 46 | P: !!python/tuple 47 | - 119 48 | - 126 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230809/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 248 3 | - 315 4 | B: !!python/tuple 5 | - 368 6 | - 422 7 | C: !!python/tuple 8 | - 262 9 | - 164 10 | D: !!python/tuple 11 | - 399 12 | - 238 13 | E: !!python/tuple 14 | - 562 15 | - 337 16 | F: !!python/tuple 17 | - 518 18 | - 465 19 | G: !!python/tuple 20 | - 527 21 | - 118 22 | H: !!python/tuple 23 | - 585 24 | - 224 25 | I: !!python/tuple 26 | - 779 27 | - 88 28 | J: !!python/tuple 29 | - 669 30 | - 480 31 | K: !!python/tuple 32 | - 742 33 | - 292 34 | L: !!python/tuple 35 | - 891 36 | - 255 37 | M: !!python/tuple 38 | - 834 39 | - 451 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230809/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 165 3 | - 284 4 | B: !!python/tuple 5 | - 226 6 | - 178 7 | C: !!python/tuple 8 | - 263 9 | - 410 10 | D: !!python/tuple 11 | - 375 12 | - 308 13 | E: !!python/tuple 14 | - 414 15 | - 165 16 | F: !!python/tuple 17 | - 578 18 | - 94 19 | G: !!python/tuple 20 | - 591 21 | - 224 22 | H: !!python/tuple 23 | - 503 24 | - 481 25 | I: !!python/tuple 26 | - 470 27 | - 367 28 | J: !!python/tuple 29 | - 683 30 | - 336 31 | K: !!python/tuple 32 | - 636 33 | - 465 34 | L: !!python/tuple 35 | - 796 36 | - 388 37 | M: !!python/tuple 38 | - 794 39 | - 189 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230809/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 614 3 | - 448 4 | B: !!python/tuple 5 | - 674 6 | - 321 7 | C: !!python/tuple 8 | - 841 9 | - 290 10 | D: !!python/tuple 11 | - 441 12 | - 375 13 | E: !!python/tuple 14 | - 400 15 | - 479 16 | F: !!python/tuple 17 | - 489 18 | - 283 19 | G: !!python/tuple 20 | - 703 21 | - 171 22 | H: !!python/tuple 23 | - 608 24 | - 76 25 | I: !!python/tuple 26 | - 446 27 | - 135 28 | J: !!python/tuple 29 | - 318 30 | - 227 31 | K: !!python/tuple 32 | - 290 33 | - 336 34 | L: !!python/tuple 35 | - 228 36 | - 420 37 | M: !!python/tuple 38 | - 66 39 | - 424 40 | N: !!python/tuple 41 | - 111 42 | - 307 43 | O: !!python/tuple 44 | - 274 45 | - 80 46 | P: !!python/tuple 47 | - 119 48 | - 126 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 151 3 | - 218 4 | B: !!python/tuple 5 | - 246 6 | - 112 7 | C: !!python/tuple 8 | - 209 9 | - 360 10 | D: !!python/tuple 11 | - 315 12 | - 332 13 | E: !!python/tuple 14 | - 103 15 | - 489 16 | F: !!python/tuple 17 | - 382 18 | - 166 19 | G: !!python/tuple 20 | - 547 21 | - 136 22 | H: !!python/tuple 23 | - 517 24 | - 242 25 | I: !!python/tuple 26 | - 376 27 | - 465 28 | J: !!python/tuple 29 | - 524 30 | - 451 31 | K: !!python/tuple 32 | - 627 33 | - 329 34 | L: !!python/tuple 35 | - 794 36 | - 256 37 | M: !!python/tuple 38 | - 690 39 | - 482 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 97 3 | - 309 4 | B: !!python/tuple 5 | - 292 6 | - 347 7 | C: !!python/tuple 8 | - 376 9 | - 458 10 | D: !!python/tuple 11 | - 150 12 | - 165 13 | E: !!python/tuple 14 | - 308 15 | - 233 16 | F: !!python/tuple 17 | - 488 18 | - 343 19 | G: !!python/tuple 20 | - 286 21 | - 75 22 | H: !!python/tuple 23 | - 466 24 | - 114 25 | I: !!python/tuple 26 | - 615 27 | - 246 28 | J: !!python/tuple 29 | - 697 30 | - 90 31 | K: !!python/tuple 32 | - 668 33 | - 178 34 | L: !!python/tuple 35 | - 813 36 | - 292 37 | M: !!python/tuple 38 | - 880 39 | - 181 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 705 3 | - 95 4 | B: !!python/tuple 5 | - 758 6 | - 225 7 | C: !!python/tuple 8 | - 877 9 | - 279 10 | D: !!python/tuple 11 | - 509 12 | - 98 13 | E: !!python/tuple 14 | - 561 15 | - 180 16 | F: !!python/tuple 17 | - 630 18 | - 323 19 | G: !!python/tuple 20 | - 699 21 | - 451 22 | H: !!python/tuple 23 | - 878 24 | - 442 25 | I: !!python/tuple 26 | - 503 27 | - 480 28 | J: !!python/tuple 29 | - 464 30 | - 293 31 | K: !!python/tuple 32 | - 314 33 | - 73 34 | L: !!python/tuple 35 | - 427 36 | - 210 37 | M: !!python/tuple 38 | - 188 39 | - 183 40 | N: !!python/tuple 41 | - 345 42 | - 386 43 | O: !!python/tuple 44 | - 280 45 | - 292 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 765 3 | - 298 4 | B: !!python/tuple 5 | - 646 6 | - 368 7 | C: !!python/tuple 8 | - 625 9 | - 483 10 | D: !!python/tuple 11 | - 426 12 | - 471 13 | E: !!python/tuple 14 | - 485 15 | - 339 16 | F: !!python/tuple 17 | - 901 18 | - 172 19 | G: !!python/tuple 20 | - 711 21 | - 158 22 | H: !!python/tuple 23 | - 578 24 | - 241 25 | I: !!python/tuple 26 | - 591 27 | - 75 28 | J: !!python/tuple 29 | - 472 30 | - 142 31 | K: !!python/tuple 32 | - 294 33 | - 82 34 | L: !!python/tuple 35 | - 353 36 | - 253 37 | M: !!python/tuple 38 | - 324 39 | - 407 40 | N: !!python/tuple 41 | - 215 42 | - 267 43 | O: !!python/tuple 44 | - 148 45 | - 466 46 | P: !!python/tuple 47 | - 74 48 | - 344 49 | Q: !!python/tuple 50 | - 72 51 | - 171 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 98 3 | - 443 4 | B: !!python/tuple 5 | - 111 6 | - 292 7 | C: !!python/tuple 8 | - 325 9 | - 233 10 | D: !!python/tuple 11 | - 286 12 | - 533 13 | E: !!python/tuple 14 | - 261 15 | - 374 16 | F: !!python/tuple 17 | - 433 18 | - 471 19 | G: !!python/tuple 20 | - 420 21 | - 330 22 | H: !!python/tuple 23 | - 494 24 | - 140 25 | W: !!python/tuple 26 | - 584 27 | - 472 28 | Y: !!python/tuple 29 | - 569 30 | - 345 31 | T: !!python/tuple 32 | - 758 33 | - 539 34 | Z: !!python/tuple 35 | - 726 36 | - 392 37 | X: !!python/tuple 38 | - 676 39 | - 210 40 | P: !!python/tuple 41 | - 923 42 | - 480 43 | O: !!python/tuple 44 | - 913 45 | - 336 46 | Q: !!python/tuple 47 | - 884 48 | - 157 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/E-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 98 3 | - 263 4 | B: !!python/tuple 5 | - 111 6 | - 113 7 | C: !!python/tuple 8 | - 322 9 | - 52 10 | D: !!python/tuple 11 | - 286 12 | - 352 13 | E: !!python/tuple 14 | - 261 15 | - 195 16 | F: !!python/tuple 17 | - 435 18 | - 293 19 | G: !!python/tuple 20 | - 419 21 | - 148 22 | H: !!python/tuple 23 | - 489 24 | - 4 25 | U: !!python/tuple 26 | - 728 27 | - 480 28 | V: !!python/tuple 29 | - 565 30 | - 405 31 | W: !!python/tuple 32 | - 585 33 | - 291 34 | X: !!python/tuple 35 | - 674 36 | - 29 37 | Y: !!python/tuple 38 | - 571 39 | - 165 40 | Z: !!python/tuple 41 | - 729 42 | - 208 43 | T: !!python/tuple 44 | - 757 45 | - 373 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/E-7.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 98 3 | - 263 4 | I: !!python/tuple 5 | - 697 6 | - 225 7 | J: !!python/tuple 8 | - 623 9 | - 338 10 | K: !!python/tuple 11 | - 547 12 | - 232 13 | L: !!python/tuple 14 | - 810 15 | - 428 16 | M: !!python/tuple 17 | - 677 18 | - 539 19 | N: !!python/tuple 20 | - 630 21 | - 479 22 | O: !!python/tuple 23 | - 435 24 | - 338 25 | P: !!python/tuple 26 | - 445 27 | - 479 28 | Q: !!python/tuple 29 | - 406 30 | - 157 31 | R: !!python/tuple 32 | - 484 33 | - 60 34 | S: !!python/tuple 35 | - 257 36 | - 90 37 | T: !!python/tuple 38 | - 279 39 | - 539 40 | X: !!python/tuple 41 | - 195 42 | - 210 43 | Y: !!python/tuple 44 | - 91 45 | - 340 46 | Z: !!python/tuple 47 | - 240 48 | - 390 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 151 3 | - 218 4 | B: !!python/tuple 5 | - 246 6 | - 112 7 | C: !!python/tuple 8 | - 209 9 | - 360 10 | D: !!python/tuple 11 | - 315 12 | - 332 13 | E: !!python/tuple 14 | - 103 15 | - 489 16 | F: !!python/tuple 17 | - 382 18 | - 166 19 | G: !!python/tuple 20 | - 547 21 | - 136 22 | H: !!python/tuple 23 | - 517 24 | - 242 25 | I: !!python/tuple 26 | - 376 27 | - 465 28 | J: !!python/tuple 29 | - 524 30 | - 451 31 | K: !!python/tuple 32 | - 627 33 | - 329 34 | L: !!python/tuple 35 | - 794 36 | - 256 37 | M: !!python/tuple 38 | - 690 39 | - 482 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 97 3 | - 309 4 | B: !!python/tuple 5 | - 292 6 | - 347 7 | C: !!python/tuple 8 | - 376 9 | - 458 10 | D: !!python/tuple 11 | - 150 12 | - 165 13 | E: !!python/tuple 14 | - 308 15 | - 233 16 | F: !!python/tuple 17 | - 488 18 | - 343 19 | G: !!python/tuple 20 | - 286 21 | - 75 22 | H: !!python/tuple 23 | - 466 24 | - 114 25 | I: !!python/tuple 26 | - 615 27 | - 246 28 | J: !!python/tuple 29 | - 697 30 | - 90 31 | K: !!python/tuple 32 | - 668 33 | - 178 34 | L: !!python/tuple 35 | - 813 36 | - 292 37 | M: !!python/tuple 38 | - 880 39 | - 181 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 705 3 | - 95 4 | B: !!python/tuple 5 | - 758 6 | - 225 7 | C: !!python/tuple 8 | - 877 9 | - 279 10 | D: !!python/tuple 11 | - 509 12 | - 98 13 | E: !!python/tuple 14 | - 561 15 | - 180 16 | F: !!python/tuple 17 | - 630 18 | - 323 19 | G: !!python/tuple 20 | - 699 21 | - 451 22 | H: !!python/tuple 23 | - 878 24 | - 442 25 | I: !!python/tuple 26 | - 503 27 | - 480 28 | J: !!python/tuple 29 | - 464 30 | - 293 31 | K: !!python/tuple 32 | - 314 33 | - 73 34 | L: !!python/tuple 35 | - 427 36 | - 210 37 | M: !!python/tuple 38 | - 188 39 | - 183 40 | N: !!python/tuple 41 | - 345 42 | - 386 43 | O: !!python/tuple 44 | - 280 45 | - 292 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 765 3 | - 298 4 | B: !!python/tuple 5 | - 646 6 | - 368 7 | C: !!python/tuple 8 | - 625 9 | - 483 10 | D: !!python/tuple 11 | - 426 12 | - 471 13 | E: !!python/tuple 14 | - 485 15 | - 339 16 | F: !!python/tuple 17 | - 901 18 | - 172 19 | G: !!python/tuple 20 | - 711 21 | - 158 22 | H: !!python/tuple 23 | - 578 24 | - 241 25 | I: !!python/tuple 26 | - 591 27 | - 75 28 | J: !!python/tuple 29 | - 472 30 | - 142 31 | K: !!python/tuple 32 | - 294 33 | - 82 34 | L: !!python/tuple 35 | - 353 36 | - 253 37 | M: !!python/tuple 38 | - 324 39 | - 407 40 | N: !!python/tuple 41 | - 215 42 | - 267 43 | O: !!python/tuple 44 | - 148 45 | - 466 46 | P: !!python/tuple 47 | - 74 48 | - 344 49 | Q: !!python/tuple 50 | - 72 51 | - 171 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 98 3 | - 443 4 | B: !!python/tuple 5 | - 111 6 | - 292 7 | C: !!python/tuple 8 | - 325 9 | - 233 10 | D: !!python/tuple 11 | - 286 12 | - 533 13 | E: !!python/tuple 14 | - 261 15 | - 374 16 | F: !!python/tuple 17 | - 433 18 | - 471 19 | G: !!python/tuple 20 | - 420 21 | - 330 22 | H: !!python/tuple 23 | - 494 24 | - 140 25 | W: !!python/tuple 26 | - 584 27 | - 472 28 | Y: !!python/tuple 29 | - 569 30 | - 345 31 | T: !!python/tuple 32 | - 758 33 | - 539 34 | Z: !!python/tuple 35 | - 726 36 | - 392 37 | X: !!python/tuple 38 | - 676 39 | - 210 40 | P: !!python/tuple 41 | - 923 42 | - 480 43 | O: !!python/tuple 44 | - 913 45 | - 336 46 | Q: !!python/tuple 47 | - 884 48 | - 157 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/H-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 98 3 | - 263 4 | B: !!python/tuple 5 | - 111 6 | - 113 7 | C: !!python/tuple 8 | - 322 9 | - 52 10 | D: !!python/tuple 11 | - 286 12 | - 352 13 | E: !!python/tuple 14 | - 261 15 | - 195 16 | F: !!python/tuple 17 | - 435 18 | - 293 19 | G: !!python/tuple 20 | - 419 21 | - 148 22 | H: !!python/tuple 23 | - 489 24 | - 4 25 | U: !!python/tuple 26 | - 728 27 | - 480 28 | V: !!python/tuple 29 | - 565 30 | - 405 31 | W: !!python/tuple 32 | - 585 33 | - 291 34 | X: !!python/tuple 35 | - 674 36 | - 29 37 | Y: !!python/tuple 38 | - 571 39 | - 165 40 | Z: !!python/tuple 41 | - 729 42 | - 208 43 | T: !!python/tuple 44 | - 757 45 | - 373 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20230927/H-7.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 98 3 | - 263 4 | I: !!python/tuple 5 | - 697 6 | - 225 7 | J: !!python/tuple 8 | - 623 9 | - 338 10 | K: !!python/tuple 11 | - 547 12 | - 232 13 | L: !!python/tuple 14 | - 810 15 | - 428 16 | M: !!python/tuple 17 | - 677 18 | - 539 19 | N: !!python/tuple 20 | - 630 21 | - 479 22 | O: !!python/tuple 23 | - 435 24 | - 338 25 | P: !!python/tuple 26 | - 445 27 | - 479 28 | Q: !!python/tuple 29 | - 406 30 | - 157 31 | R: !!python/tuple 32 | - 484 33 | - 60 34 | S: !!python/tuple 35 | - 257 36 | - 90 37 | T: !!python/tuple 38 | - 279 39 | - 539 40 | X: !!python/tuple 41 | - 195 42 | - 210 43 | Y: !!python/tuple 44 | - 91 45 | - 340 46 | Z: !!python/tuple 47 | - 240 48 | - 390 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 578 3 | - 249 4 | B: !!python/tuple 5 | - 509 6 | - 165 7 | C: !!python/tuple 8 | - 396 9 | - 96 10 | D: !!python/tuple 11 | - 495 12 | - 413 13 | E: !!python/tuple 14 | - 450 15 | - 323 16 | F: !!python/tuple 17 | - 373 18 | - 239 19 | G: !!python/tuple 20 | - 193 21 | - 97 22 | H: !!python/tuple 23 | - 232 24 | - 189 25 | I: !!python/tuple 26 | - 56 27 | - 282 28 | J: !!python/tuple 29 | - 163 30 | - 344 31 | K: !!python/tuple 32 | - 315 33 | - 381 34 | L: !!python/tuple 35 | - 248 36 | - 488 37 | M: !!python/tuple 38 | - 470 39 | - 486 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 735 3 | - 270 4 | B: !!python/tuple 5 | - 675 6 | - 135 7 | C: !!python/tuple 8 | - 864 9 | - 422 10 | D: !!python/tuple 11 | - 668 12 | - 449 13 | E: !!python/tuple 14 | - 532 15 | - 350 16 | F: !!python/tuple 17 | - 526 18 | - 232 19 | G: !!python/tuple 20 | - 420 21 | - 108 22 | H: !!python/tuple 23 | - 358 24 | - 289 25 | I: !!python/tuple 26 | - 457 27 | - 489 28 | J: !!python/tuple 29 | - 196 30 | - 127 31 | K: !!python/tuple 32 | - 302 33 | - 231 34 | L: !!python/tuple 35 | - 324 36 | - 396 37 | M: !!python/tuple 38 | - 129 39 | - 307 40 | N: !!python/tuple 41 | - 49 42 | - 291 43 | O: !!python/tuple 44 | - 174 45 | - 471 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 886 3 | - 217 4 | B: !!python/tuple 5 | - 674 6 | - 194 7 | C: !!python/tuple 8 | - 526 9 | - 83 10 | D: !!python/tuple 11 | - 871 12 | - 366 13 | E: !!python/tuple 14 | - 715 15 | - 254 16 | F: !!python/tuple 17 | - 516 18 | - 252 19 | G: !!python/tuple 20 | - 443 21 | - 224 22 | H: !!python/tuple 23 | - 346 24 | - 141 25 | I: !!python/tuple 26 | - 255 27 | - 338 28 | J: !!python/tuple 29 | - 187 30 | - 239 31 | K: !!python/tuple 32 | - 781 33 | - 494 34 | L: !!python/tuple 35 | - 548 36 | - 471 37 | M: !!python/tuple 38 | - 628 39 | - 412 40 | N: !!python/tuple 41 | - 397 42 | - 396 43 | O: !!python/tuple 44 | - 53 45 | - 395 46 | P: !!python/tuple 47 | - 208 48 | - 474 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 639 3 | - 503 4 | B: !!python/tuple 5 | - 696 6 | - 403 7 | C: !!python/tuple 8 | - 832 9 | - 317 10 | D: !!python/tuple 11 | - 863 12 | - 134 13 | E: !!python/tuple 14 | - 616 15 | - 276 16 | F: !!python/tuple 17 | - 517 18 | - 342 19 | G: !!python/tuple 20 | - 447 21 | - 443 22 | H: !!python/tuple 23 | - 714 24 | - 178 25 | I: !!python/tuple 26 | - 525 27 | - 119 28 | J: !!python/tuple 29 | - 535 30 | - 232 31 | K: !!python/tuple 32 | - 323 33 | - 328 34 | L: !!python/tuple 35 | - 152 36 | - 430 37 | M: !!python/tuple 38 | - 353 39 | - 170 40 | N: !!python/tuple 41 | - 207 42 | - 83 43 | O: !!python/tuple 44 | - 191 45 | - 190 46 | P: !!python/tuple 47 | - 90 48 | - 269 49 | Q: !!python/tuple 50 | - 82 51 | - 73 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 712 3 | - 293 4 | B: !!python/tuple 5 | - 750 6 | - 140 7 | C: !!python/tuple 8 | - 914 9 | - 81 10 | D: !!python/tuple 11 | - 583 12 | - 186 13 | E: !!python/tuple 14 | - 517 15 | - 80 16 | F: !!python/tuple 17 | - 562 18 | - 345 19 | G: !!python/tuple 20 | - 465 21 | - 261 22 | H: !!python/tuple 23 | - 405 24 | - 157 25 | I: !!python/tuple 26 | - 292 27 | - 98 28 | J: !!python/tuple 29 | - 238 30 | - 218 31 | K: !!python/tuple 32 | - 302 33 | - 293 34 | L: !!python/tuple 35 | - 362 36 | - 372 37 | M: !!python/tuple 38 | - 412 39 | - 442 40 | N: !!python/tuple 41 | - 66 42 | - 68 43 | O: !!python/tuple 44 | - 132 45 | - 202 46 | P: !!python/tuple 47 | - 35 48 | - 369 49 | Q: !!python/tuple 50 | - 216 51 | - 481 52 | R: !!python/tuple 53 | - 148 54 | - 398 55 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 578 3 | - 249 4 | B: !!python/tuple 5 | - 509 6 | - 165 7 | C: !!python/tuple 8 | - 396 9 | - 96 10 | D: !!python/tuple 11 | - 495 12 | - 413 13 | E: !!python/tuple 14 | - 450 15 | - 323 16 | F: !!python/tuple 17 | - 373 18 | - 239 19 | G: !!python/tuple 20 | - 193 21 | - 97 22 | H: !!python/tuple 23 | - 232 24 | - 189 25 | I: !!python/tuple 26 | - 56 27 | - 282 28 | J: !!python/tuple 29 | - 163 30 | - 344 31 | K: !!python/tuple 32 | - 315 33 | - 381 34 | L: !!python/tuple 35 | - 248 36 | - 488 37 | M: !!python/tuple 38 | - 470 39 | - 486 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 735 3 | - 270 4 | B: !!python/tuple 5 | - 675 6 | - 135 7 | C: !!python/tuple 8 | - 864 9 | - 422 10 | D: !!python/tuple 11 | - 668 12 | - 449 13 | E: !!python/tuple 14 | - 532 15 | - 350 16 | F: !!python/tuple 17 | - 526 18 | - 232 19 | G: !!python/tuple 20 | - 420 21 | - 108 22 | H: !!python/tuple 23 | - 358 24 | - 289 25 | I: !!python/tuple 26 | - 457 27 | - 489 28 | J: !!python/tuple 29 | - 196 30 | - 127 31 | K: !!python/tuple 32 | - 302 33 | - 231 34 | L: !!python/tuple 35 | - 324 36 | - 396 37 | M: !!python/tuple 38 | - 129 39 | - 307 40 | N: !!python/tuple 41 | - 49 42 | - 291 43 | O: !!python/tuple 44 | - 174 45 | - 471 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 886 3 | - 217 4 | B: !!python/tuple 5 | - 674 6 | - 194 7 | C: !!python/tuple 8 | - 526 9 | - 83 10 | D: !!python/tuple 11 | - 871 12 | - 366 13 | E: !!python/tuple 14 | - 715 15 | - 254 16 | F: !!python/tuple 17 | - 516 18 | - 252 19 | G: !!python/tuple 20 | - 443 21 | - 224 22 | H: !!python/tuple 23 | - 346 24 | - 141 25 | I: !!python/tuple 26 | - 255 27 | - 338 28 | J: !!python/tuple 29 | - 187 30 | - 239 31 | K: !!python/tuple 32 | - 781 33 | - 494 34 | L: !!python/tuple 35 | - 548 36 | - 471 37 | M: !!python/tuple 38 | - 628 39 | - 412 40 | N: !!python/tuple 41 | - 397 42 | - 396 43 | O: !!python/tuple 44 | - 53 45 | - 395 46 | P: !!python/tuple 47 | - 208 48 | - 474 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 639 3 | - 503 4 | B: !!python/tuple 5 | - 696 6 | - 403 7 | C: !!python/tuple 8 | - 832 9 | - 317 10 | D: !!python/tuple 11 | - 863 12 | - 134 13 | E: !!python/tuple 14 | - 616 15 | - 276 16 | F: !!python/tuple 17 | - 517 18 | - 342 19 | G: !!python/tuple 20 | - 447 21 | - 443 22 | H: !!python/tuple 23 | - 714 24 | - 178 25 | I: !!python/tuple 26 | - 525 27 | - 119 28 | J: !!python/tuple 29 | - 535 30 | - 232 31 | K: !!python/tuple 32 | - 323 33 | - 328 34 | L: !!python/tuple 35 | - 152 36 | - 430 37 | M: !!python/tuple 38 | - 353 39 | - 170 40 | N: !!python/tuple 41 | - 207 42 | - 83 43 | O: !!python/tuple 44 | - 191 45 | - 190 46 | P: !!python/tuple 47 | - 90 48 | - 269 49 | Q: !!python/tuple 50 | - 82 51 | - 73 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20231215/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 712 3 | - 293 4 | B: !!python/tuple 5 | - 750 6 | - 140 7 | C: !!python/tuple 8 | - 914 9 | - 81 10 | D: !!python/tuple 11 | - 583 12 | - 186 13 | E: !!python/tuple 14 | - 517 15 | - 80 16 | F: !!python/tuple 17 | - 562 18 | - 345 19 | G: !!python/tuple 20 | - 465 21 | - 261 22 | H: !!python/tuple 23 | - 405 24 | - 157 25 | I: !!python/tuple 26 | - 292 27 | - 98 28 | J: !!python/tuple 29 | - 238 30 | - 218 31 | K: !!python/tuple 32 | - 302 33 | - 293 34 | L: !!python/tuple 35 | - 362 36 | - 372 37 | M: !!python/tuple 38 | - 412 39 | - 442 40 | N: !!python/tuple 41 | - 66 42 | - 68 43 | O: !!python/tuple 44 | - 132 45 | - 202 46 | P: !!python/tuple 47 | - 35 48 | - 369 49 | Q: !!python/tuple 50 | - 216 51 | - 481 52 | R: !!python/tuple 53 | - 148 54 | - 398 55 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 149 3 | - 366 4 | B: !!python/tuple 5 | - 290 6 | - 233 7 | C: !!python/tuple 8 | - 336 9 | - 112 10 | D: !!python/tuple 11 | - 448 12 | - 225 13 | E: !!python/tuple 14 | - 285 15 | - 465 16 | F: !!python/tuple 17 | - 546 18 | - 149 19 | G: !!python/tuple 20 | - 561 21 | - 315 22 | H: !!python/tuple 23 | - 471 24 | - 465 25 | I: !!python/tuple 26 | - 696 27 | - 277 28 | J: !!python/tuple 29 | - 663 30 | - 494 31 | K: !!python/tuple 32 | - 659 33 | - 412 34 | L: !!python/tuple 35 | - 839 36 | - 195 37 | M: !!python/tuple 38 | - 861 39 | - 405 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 91 3 | - 224 4 | B: !!python/tuple 5 | - 93 6 | - 451 7 | C: !!python/tuple 8 | - 284 9 | - 277 10 | D: !!python/tuple 11 | - 286 12 | - 489 13 | E: !!python/tuple 14 | - 293 15 | - 112 16 | F: !!python/tuple 17 | - 396 18 | - 383 19 | G: !!python/tuple 20 | - 466 21 | - 466 22 | H: !!python/tuple 23 | - 433 24 | - 208 25 | I: !!python/tuple 26 | - 587 27 | - 89 28 | J: !!python/tuple 29 | - 609 30 | - 181 31 | K: !!python/tuple 32 | - 607 33 | - 360 34 | L: !!python/tuple 35 | - 792 36 | - 403 37 | M: !!python/tuple 38 | - 826 39 | - 263 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 112 3 | - 380 4 | B: !!python/tuple 5 | - 321 6 | - 111 7 | C: !!python/tuple 8 | - 285 9 | - 232 10 | D: !!python/tuple 11 | - 254 12 | - 472 13 | E: !!python/tuple 14 | - 262 15 | - 344 16 | F: !!python/tuple 17 | - 418 18 | - 324 19 | G: !!python/tuple 20 | - 479 21 | - 466 22 | H: !!python/tuple 23 | - 576 24 | - 324 25 | I: !!python/tuple 26 | - 545 27 | - 188 28 | J: !!python/tuple 29 | - 682 30 | - 103 31 | K: !!python/tuple 32 | - 710 33 | - 215 34 | L: !!python/tuple 35 | - 664 36 | - 492 37 | M: !!python/tuple 38 | - 886 39 | - 196 40 | N: !!python/tuple 41 | - 753 42 | - 388 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 812 3 | - 353 4 | B: !!python/tuple 5 | - 571 6 | - 355 7 | C: !!python/tuple 8 | - 457 9 | - 487 10 | D: !!python/tuple 11 | - 894 12 | - 231 13 | E: !!python/tuple 14 | - 735 15 | - 172 16 | F: !!python/tuple 17 | - 628 18 | - 280 19 | G: !!python/tuple 20 | - 876 21 | - 98 22 | H: !!python/tuple 23 | - 375 24 | - 366 25 | I: !!python/tuple 26 | - 218 27 | - 411 28 | J: !!python/tuple 29 | - 412 30 | - 277 31 | K: !!python/tuple 32 | - 525 33 | - 96 34 | L: !!python/tuple 35 | - 374 36 | - 186 37 | M: !!python/tuple 38 | - 328 39 | - 81 40 | N: !!python/tuple 41 | - 260 42 | - 255 43 | O: !!python/tuple 44 | - 63 45 | - 491 46 | P: !!python/tuple 47 | - 127 48 | - 306 49 | Q: !!python/tuple 50 | - 120 51 | - 137 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 434 3 | - 81 4 | B: !!python/tuple 5 | - 306 6 | - 215 7 | C: !!python/tuple 8 | - 540 9 | - 171 10 | D: !!python/tuple 11 | - 668 12 | - 96 13 | E: !!python/tuple 14 | - 232 15 | - 480 16 | F: !!python/tuple 17 | - 308 18 | - 352 19 | K: !!python/tuple 20 | - 853 21 | - 164 22 | Q: !!python/tuple 23 | - 448 24 | - 268 25 | R: !!python/tuple 26 | - 458 27 | - 483 28 | U: !!python/tuple 29 | - 831 30 | - 354 31 | W: !!python/tuple 32 | - 662 33 | - 263 34 | X: !!python/tuple 35 | - 533 36 | - 367 37 | Z: !!python/tuple 38 | - 683 39 | - 369 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/E-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 21 3 | - 24 4 | E: !!python/tuple 5 | - 233 6 | - 299 7 | F: !!python/tuple 8 | - 308 9 | - 173 10 | G: !!python/tuple 11 | - 366 12 | - 457 13 | H: !!python/tuple 14 | - 511 15 | - 421 16 | P: !!python/tuple 17 | - 716 18 | - 463 19 | Q: !!python/tuple 20 | - 447 21 | - 83 22 | R: !!python/tuple 23 | - 457 24 | - 299 25 | W: !!python/tuple 26 | - 668 27 | - 80 28 | X: !!python/tuple 29 | - 533 30 | - 185 31 | Y: !!python/tuple 32 | - 621 33 | - 328 34 | Z: !!python/tuple 35 | - 679 36 | - 189 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/E-7.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 923 3 | - 48 4 | K: !!python/tuple 5 | - 377 6 | - 48 7 | M: !!python/tuple 8 | - 631 9 | - 368 10 | N: !!python/tuple 11 | - 548 12 | - 472 13 | O: !!python/tuple 14 | - 390 15 | - 503 16 | P: !!python/tuple 17 | - 232 18 | - 525 19 | S: !!python/tuple 20 | - 442 21 | - 367 22 | T: !!python/tuple 23 | - 494 24 | - 269 25 | U: !!python/tuple 26 | - 353 27 | - 234 28 | V: !!python/tuple 29 | - 295 30 | - 391 31 | Y: !!python/tuple 32 | - 143 33 | - 390 34 | Z: !!python/tuple 35 | - 200 36 | - 248 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/E-8.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 1 3 | - 1 4 | D: !!python/tuple 5 | - 278 6 | - 96 7 | I: !!python/tuple 8 | - 614 9 | - 135 10 | J: !!python/tuple 11 | - 737 12 | - 299 13 | K: !!python/tuple 14 | - 466 15 | - 165 16 | L: !!python/tuple 17 | - 570 18 | - 263 19 | Q: !!python/tuple 20 | - 58 21 | - 264 22 | S: !!python/tuple 23 | - 533 24 | - 488 25 | T: !!python/tuple 26 | - 586 27 | - 390 28 | U: !!python/tuple 29 | - 445 30 | - 353 31 | W: !!python/tuple 32 | - 269 33 | - 262 34 | X: !!python/tuple 35 | - 142 36 | - 367 37 | Z: !!python/tuple 38 | - 290 39 | - 366 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 149 3 | - 366 4 | B: !!python/tuple 5 | - 290 6 | - 233 7 | C: !!python/tuple 8 | - 336 9 | - 112 10 | D: !!python/tuple 11 | - 448 12 | - 225 13 | E: !!python/tuple 14 | - 285 15 | - 465 16 | F: !!python/tuple 17 | - 546 18 | - 149 19 | G: !!python/tuple 20 | - 561 21 | - 315 22 | H: !!python/tuple 23 | - 471 24 | - 465 25 | I: !!python/tuple 26 | - 696 27 | - 277 28 | J: !!python/tuple 29 | - 663 30 | - 494 31 | K: !!python/tuple 32 | - 659 33 | - 412 34 | L: !!python/tuple 35 | - 839 36 | - 195 37 | M: !!python/tuple 38 | - 861 39 | - 405 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 91 3 | - 224 4 | B: !!python/tuple 5 | - 93 6 | - 451 7 | C: !!python/tuple 8 | - 284 9 | - 277 10 | D: !!python/tuple 11 | - 286 12 | - 489 13 | E: !!python/tuple 14 | - 293 15 | - 112 16 | F: !!python/tuple 17 | - 396 18 | - 383 19 | G: !!python/tuple 20 | - 466 21 | - 466 22 | H: !!python/tuple 23 | - 433 24 | - 208 25 | I: !!python/tuple 26 | - 587 27 | - 89 28 | J: !!python/tuple 29 | - 609 30 | - 181 31 | K: !!python/tuple 32 | - 607 33 | - 360 34 | L: !!python/tuple 35 | - 792 36 | - 403 37 | M: !!python/tuple 38 | - 826 39 | - 263 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 112 3 | - 380 4 | B: !!python/tuple 5 | - 321 6 | - 111 7 | C: !!python/tuple 8 | - 285 9 | - 232 10 | D: !!python/tuple 11 | - 254 12 | - 472 13 | E: !!python/tuple 14 | - 262 15 | - 344 16 | F: !!python/tuple 17 | - 418 18 | - 324 19 | G: !!python/tuple 20 | - 479 21 | - 466 22 | H: !!python/tuple 23 | - 576 24 | - 324 25 | I: !!python/tuple 26 | - 545 27 | - 188 28 | J: !!python/tuple 29 | - 682 30 | - 103 31 | K: !!python/tuple 32 | - 710 33 | - 215 34 | L: !!python/tuple 35 | - 664 36 | - 492 37 | M: !!python/tuple 38 | - 886 39 | - 196 40 | N: !!python/tuple 41 | - 753 42 | - 388 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 812 3 | - 353 4 | B: !!python/tuple 5 | - 571 6 | - 355 7 | C: !!python/tuple 8 | - 457 9 | - 487 10 | D: !!python/tuple 11 | - 894 12 | - 231 13 | E: !!python/tuple 14 | - 735 15 | - 172 16 | F: !!python/tuple 17 | - 628 18 | - 280 19 | G: !!python/tuple 20 | - 876 21 | - 98 22 | H: !!python/tuple 23 | - 375 24 | - 366 25 | I: !!python/tuple 26 | - 218 27 | - 411 28 | J: !!python/tuple 29 | - 412 30 | - 277 31 | K: !!python/tuple 32 | - 525 33 | - 96 34 | L: !!python/tuple 35 | - 374 36 | - 186 37 | M: !!python/tuple 38 | - 328 39 | - 81 40 | N: !!python/tuple 41 | - 260 42 | - 255 43 | O: !!python/tuple 44 | - 63 45 | - 491 46 | P: !!python/tuple 47 | - 127 48 | - 306 49 | Q: !!python/tuple 50 | - 120 51 | - 137 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 434 3 | - 81 4 | B: !!python/tuple 5 | - 306 6 | - 215 7 | C: !!python/tuple 8 | - 540 9 | - 171 10 | D: !!python/tuple 11 | - 668 12 | - 96 13 | E: !!python/tuple 14 | - 232 15 | - 480 16 | F: !!python/tuple 17 | - 308 18 | - 352 19 | K: !!python/tuple 20 | - 853 21 | - 164 22 | Q: !!python/tuple 23 | - 448 24 | - 268 25 | R: !!python/tuple 26 | - 458 27 | - 483 28 | U: !!python/tuple 29 | - 831 30 | - 354 31 | W: !!python/tuple 32 | - 662 33 | - 263 34 | X: !!python/tuple 35 | - 533 36 | - 367 37 | Z: !!python/tuple 38 | - 683 39 | - 369 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/H-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 21 3 | - 24 4 | E: !!python/tuple 5 | - 233 6 | - 299 7 | F: !!python/tuple 8 | - 308 9 | - 173 10 | G: !!python/tuple 11 | - 366 12 | - 457 13 | H: !!python/tuple 14 | - 511 15 | - 421 16 | P: !!python/tuple 17 | - 716 18 | - 463 19 | Q: !!python/tuple 20 | - 447 21 | - 83 22 | R: !!python/tuple 23 | - 457 24 | - 299 25 | W: !!python/tuple 26 | - 668 27 | - 80 28 | X: !!python/tuple 29 | - 533 30 | - 185 31 | Y: !!python/tuple 32 | - 621 33 | - 328 34 | Z: !!python/tuple 35 | - 679 36 | - 189 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/H-7.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 923 3 | - 48 4 | K: !!python/tuple 5 | - 377 6 | - 48 7 | M: !!python/tuple 8 | - 631 9 | - 368 10 | N: !!python/tuple 11 | - 548 12 | - 472 13 | O: !!python/tuple 14 | - 390 15 | - 503 16 | P: !!python/tuple 17 | - 232 18 | - 525 19 | S: !!python/tuple 20 | - 442 21 | - 367 22 | T: !!python/tuple 23 | - 494 24 | - 269 25 | U: !!python/tuple 26 | - 353 27 | - 234 28 | V: !!python/tuple 29 | - 295 30 | - 391 31 | Y: !!python/tuple 32 | - 143 33 | - 390 34 | Z: !!python/tuple 35 | - 200 36 | - 248 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240206/H-8.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 1 3 | - 1 4 | D: !!python/tuple 5 | - 278 6 | - 96 7 | I: !!python/tuple 8 | - 614 9 | - 135 10 | J: !!python/tuple 11 | - 737 12 | - 299 13 | K: !!python/tuple 14 | - 466 15 | - 165 16 | L: !!python/tuple 17 | - 570 18 | - 263 19 | Q: !!python/tuple 20 | - 58 21 | - 264 22 | S: !!python/tuple 23 | - 533 24 | - 488 25 | T: !!python/tuple 26 | - 586 27 | - 390 28 | U: !!python/tuple 29 | - 445 30 | - 353 31 | W: !!python/tuple 32 | - 269 33 | - 262 34 | X: !!python/tuple 35 | - 142 36 | - 367 37 | Z: !!python/tuple 38 | - 290 39 | - 366 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 187 3 | - 180 4 | B: !!python/tuple 5 | - 308 6 | - 256 7 | C: !!python/tuple 8 | - 375 9 | - 112 10 | D: !!python/tuple 11 | - 487 12 | - 254 13 | E: !!python/tuple 14 | - 344 15 | - 408 16 | F: !!python/tuple 17 | - 547 18 | - 128 19 | G: !!python/tuple 20 | - 761 21 | - 78 22 | H: !!python/tuple 23 | - 720 24 | - 202 25 | I: !!python/tuple 26 | - 636 27 | - 330 28 | J: !!python/tuple 29 | - 735 30 | - 463 31 | K: !!python/tuple 32 | - 840 33 | - 347 34 | L: !!python/tuple 35 | - 500 36 | - 480 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 299 3 | - 96 4 | B: !!python/tuple 5 | - 202 6 | - 308 7 | C: !!python/tuple 8 | - 487 9 | - 89 10 | D: !!python/tuple 11 | - 354 12 | - 232 13 | E: !!python/tuple 14 | - 374 15 | - 383 16 | F: !!python/tuple 17 | - 538 18 | - 250 19 | G: !!python/tuple 20 | - 506 21 | - 495 22 | H: !!python/tuple 23 | - 586 24 | - 421 25 | I: !!python/tuple 26 | - 638 27 | - 136 28 | J: !!python/tuple 29 | - 772 30 | - 52 31 | K: !!python/tuple 32 | - 759 33 | - 271 34 | L: !!python/tuple 35 | - 842 36 | - 185 37 | M: !!python/tuple 38 | - 781 39 | - 466 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 119 3 | - 276 4 | B: !!python/tuple 5 | - 255 6 | - 160 7 | C: !!python/tuple 8 | - 376 9 | - 270 10 | D: !!python/tuple 11 | - 247 12 | - 389 13 | E: !!python/tuple 14 | - 441 15 | - 148 16 | F: !!python/tuple 17 | - 395 18 | - 502 19 | G: !!python/tuple 20 | - 764 21 | - 406 22 | H: !!python/tuple 23 | - 442 24 | - 412 25 | I: !!python/tuple 26 | - 757 27 | - 262 28 | J: !!python/tuple 29 | - 577 30 | - 331 31 | K: !!python/tuple 32 | - 608 33 | - 194 34 | L: !!python/tuple 35 | - 853 36 | - 142 37 | M: !!python/tuple 38 | - 666 39 | - 497 40 | N: !!python/tuple 41 | - 713 42 | - 81 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 189 3 | - 174 4 | B: !!python/tuple 5 | - 270 6 | - 67 7 | C: !!python/tuple 8 | - 149 9 | - 286 10 | D: !!python/tuple 11 | - 240 12 | - 389 13 | E: !!python/tuple 14 | - 331 15 | - 225 16 | F: !!python/tuple 17 | - 412 18 | - 345 19 | G: !!python/tuple 20 | - 576 21 | - 463 22 | H: !!python/tuple 23 | - 503 24 | - 239 25 | I: !!python/tuple 26 | - 495 27 | - 129 28 | J: !!python/tuple 29 | - 690 30 | - 210 31 | K: !!python/tuple 32 | - 660 33 | - 376 34 | L: !!python/tuple 35 | - 797 36 | - 476 37 | M: !!python/tuple 38 | - 812 39 | - 112 40 | N: !!python/tuple 41 | - 724 42 | - 74 43 | O: !!python/tuple 44 | - 831 45 | - 286 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 112 3 | - 314 4 | B: !!python/tuple 5 | - 247 6 | - 398 7 | C: !!python/tuple 8 | - 269 9 | - 68 10 | D: !!python/tuple 11 | - 202 12 | - 204 13 | E: !!python/tuple 14 | - 472 15 | - 98 16 | F: !!python/tuple 17 | - 359 18 | - 248 19 | G: !!python/tuple 20 | - 375 21 | - 339 22 | H: !!python/tuple 23 | - 539 24 | - 300 25 | I: !!python/tuple 26 | - 621 27 | - 166 28 | J: !!python/tuple 29 | - 727 30 | - 329 31 | K: !!python/tuple 32 | - 465 33 | - 450 34 | L: !!python/tuple 35 | - 752 36 | - 68 37 | M: !!python/tuple 38 | - 819 39 | - 255 40 | N: !!python/tuple 41 | - 862 42 | - 458 43 | O: !!python/tuple 44 | - 669 45 | - 495 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 187 3 | - 180 4 | B: !!python/tuple 5 | - 308 6 | - 256 7 | C: !!python/tuple 8 | - 375 9 | - 112 10 | D: !!python/tuple 11 | - 487 12 | - 254 13 | E: !!python/tuple 14 | - 344 15 | - 408 16 | F: !!python/tuple 17 | - 547 18 | - 128 19 | G: !!python/tuple 20 | - 761 21 | - 78 22 | H: !!python/tuple 23 | - 720 24 | - 202 25 | I: !!python/tuple 26 | - 636 27 | - 330 28 | J: !!python/tuple 29 | - 735 30 | - 463 31 | K: !!python/tuple 32 | - 840 33 | - 347 34 | L: !!python/tuple 35 | - 500 36 | - 480 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 299 3 | - 96 4 | B: !!python/tuple 5 | - 202 6 | - 308 7 | C: !!python/tuple 8 | - 487 9 | - 89 10 | D: !!python/tuple 11 | - 354 12 | - 232 13 | E: !!python/tuple 14 | - 374 15 | - 383 16 | F: !!python/tuple 17 | - 538 18 | - 250 19 | G: !!python/tuple 20 | - 506 21 | - 495 22 | H: !!python/tuple 23 | - 586 24 | - 421 25 | I: !!python/tuple 26 | - 638 27 | - 136 28 | J: !!python/tuple 29 | - 772 30 | - 52 31 | K: !!python/tuple 32 | - 759 33 | - 271 34 | L: !!python/tuple 35 | - 842 36 | - 185 37 | M: !!python/tuple 38 | - 781 39 | - 466 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 119 3 | - 276 4 | B: !!python/tuple 5 | - 255 6 | - 160 7 | C: !!python/tuple 8 | - 376 9 | - 270 10 | D: !!python/tuple 11 | - 247 12 | - 389 13 | E: !!python/tuple 14 | - 441 15 | - 148 16 | F: !!python/tuple 17 | - 395 18 | - 502 19 | G: !!python/tuple 20 | - 764 21 | - 406 22 | H: !!python/tuple 23 | - 442 24 | - 412 25 | I: !!python/tuple 26 | - 757 27 | - 262 28 | J: !!python/tuple 29 | - 577 30 | - 331 31 | K: !!python/tuple 32 | - 608 33 | - 194 34 | L: !!python/tuple 35 | - 853 36 | - 142 37 | M: !!python/tuple 38 | - 666 39 | - 497 40 | N: !!python/tuple 41 | - 713 42 | - 81 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 189 3 | - 174 4 | B: !!python/tuple 5 | - 270 6 | - 67 7 | C: !!python/tuple 8 | - 149 9 | - 286 10 | D: !!python/tuple 11 | - 240 12 | - 389 13 | E: !!python/tuple 14 | - 331 15 | - 225 16 | F: !!python/tuple 17 | - 412 18 | - 345 19 | G: !!python/tuple 20 | - 576 21 | - 463 22 | H: !!python/tuple 23 | - 503 24 | - 239 25 | I: !!python/tuple 26 | - 495 27 | - 129 28 | J: !!python/tuple 29 | - 690 30 | - 210 31 | K: !!python/tuple 32 | - 660 33 | - 376 34 | L: !!python/tuple 35 | - 797 36 | - 476 37 | M: !!python/tuple 38 | - 812 39 | - 112 40 | N: !!python/tuple 41 | - 724 42 | - 74 43 | O: !!python/tuple 44 | - 831 45 | - 286 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240419/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 112 3 | - 314 4 | B: !!python/tuple 5 | - 247 6 | - 398 7 | C: !!python/tuple 8 | - 269 9 | - 68 10 | D: !!python/tuple 11 | - 202 12 | - 204 13 | E: !!python/tuple 14 | - 472 15 | - 98 16 | F: !!python/tuple 17 | - 359 18 | - 248 19 | G: !!python/tuple 20 | - 375 21 | - 339 22 | H: !!python/tuple 23 | - 539 24 | - 300 25 | I: !!python/tuple 26 | - 621 27 | - 166 28 | J: !!python/tuple 29 | - 727 30 | - 329 31 | K: !!python/tuple 32 | - 465 33 | - 450 34 | L: !!python/tuple 35 | - 752 36 | - 68 37 | M: !!python/tuple 38 | - 819 39 | - 255 40 | N: !!python/tuple 41 | - 862 42 | - 458 43 | O: !!python/tuple 44 | - 669 45 | - 495 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240930/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 143 3 | - 246 4 | B: !!python/tuple 5 | - 269 6 | - 156 7 | C: !!python/tuple 8 | - 412 9 | - 83 10 | D: !!python/tuple 11 | - 248 12 | - 390 13 | E: !!python/tuple 14 | - 390 15 | - 255 16 | F: !!python/tuple 17 | - 435 18 | - 173 19 | G: !!python/tuple 20 | - 466 21 | - 494 22 | H: !!python/tuple 23 | - 489 24 | - 398 25 | I: !!python/tuple 26 | - 587 27 | - 305 28 | J: !!python/tuple 29 | - 615 30 | - 180 31 | K: !!python/tuple 32 | - 811 33 | - 277 34 | L: !!python/tuple 35 | - 683 36 | - 496 37 | M: !!python/tuple 38 | - 691 39 | - 370 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240930/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 705 3 | - 90 4 | B: !!python/tuple 5 | - 525 6 | - 106 7 | C: !!python/tuple 8 | - 766 9 | - 315 10 | D: !!python/tuple 11 | - 300 12 | - 112 13 | E: !!python/tuple 14 | - 391 15 | - 188 16 | F: !!python/tuple 17 | - 486 18 | - 262 19 | G: !!python/tuple 20 | - 637 21 | - 262 22 | H: !!python/tuple 23 | - 219 24 | - 233 25 | I: !!python/tuple 26 | - 338 27 | - 339 28 | J: !!python/tuple 29 | - 540 30 | - 406 31 | K: !!python/tuple 32 | - 744 33 | - 472 34 | L: !!python/tuple 35 | - 396 36 | - 486 37 | M: !!python/tuple 38 | - 185 39 | - 467 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240930/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 82 3 | - 217 4 | B: !!python/tuple 5 | - 241 6 | - 201 7 | C: !!python/tuple 8 | - 480 9 | - 104 10 | D: !!python/tuple 11 | - 120 12 | - 369 13 | E: !!python/tuple 14 | - 209 15 | - 377 16 | F: !!python/tuple 17 | - 399 18 | - 241 19 | G: !!python/tuple 20 | - 336 21 | - 352 22 | H: !!python/tuple 23 | - 570 24 | - 244 25 | I: !!python/tuple 26 | - 533 27 | - 354 28 | J: !!python/tuple 29 | - 742 30 | - 186 31 | K: !!python/tuple 32 | - 714 33 | - 300 34 | L: !!python/tuple 35 | - 176 36 | - 495 37 | M: !!python/tuple 38 | - 256 39 | - 443 40 | N: !!python/tuple 41 | - 413 42 | - 482 43 | O: !!python/tuple 44 | - 782 45 | - 449 46 | P: !!python/tuple 47 | - 609 48 | - 495 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240930/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 826 3 | - 301 4 | B: !!python/tuple 5 | - 533 6 | - 148 7 | C: !!python/tuple 8 | - 478 9 | - 80 10 | D: !!python/tuple 11 | - 690 12 | - 232 13 | E: !!python/tuple 14 | - 892 15 | - 457 16 | F: !!python/tuple 17 | - 705 18 | - 396 19 | G: !!python/tuple 20 | - 720 21 | - 496 22 | H: !!python/tuple 23 | - 356 24 | - 152 25 | I: !!python/tuple 26 | - 555 27 | - 315 28 | J: !!python/tuple 29 | - 556 30 | - 486 31 | K: !!python/tuple 32 | - 253 33 | - 96 34 | L: !!python/tuple 35 | - 112 36 | - 216 37 | M: !!python/tuple 38 | - 311 39 | - 220 40 | N: !!python/tuple 41 | - 248 42 | - 330 43 | O: !!python/tuple 44 | - 458 45 | - 331 46 | P: !!python/tuple 47 | - 361 48 | - 480 49 | Q: !!python/tuple 50 | - 134 51 | - 486 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240930/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 143 3 | - 246 4 | B: !!python/tuple 5 | - 269 6 | - 156 7 | C: !!python/tuple 8 | - 412 9 | - 83 10 | D: !!python/tuple 11 | - 248 12 | - 390 13 | E: !!python/tuple 14 | - 390 15 | - 255 16 | F: !!python/tuple 17 | - 435 18 | - 173 19 | G: !!python/tuple 20 | - 466 21 | - 494 22 | H: !!python/tuple 23 | - 489 24 | - 398 25 | I: !!python/tuple 26 | - 587 27 | - 305 28 | J: !!python/tuple 29 | - 615 30 | - 180 31 | K: !!python/tuple 32 | - 811 33 | - 277 34 | L: !!python/tuple 35 | - 683 36 | - 496 37 | M: !!python/tuple 38 | - 691 39 | - 370 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240930/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 705 3 | - 90 4 | B: !!python/tuple 5 | - 525 6 | - 106 7 | C: !!python/tuple 8 | - 766 9 | - 315 10 | D: !!python/tuple 11 | - 300 12 | - 112 13 | E: !!python/tuple 14 | - 391 15 | - 188 16 | F: !!python/tuple 17 | - 486 18 | - 262 19 | G: !!python/tuple 20 | - 637 21 | - 262 22 | H: !!python/tuple 23 | - 219 24 | - 233 25 | I: !!python/tuple 26 | - 338 27 | - 339 28 | J: !!python/tuple 29 | - 540 30 | - 406 31 | K: !!python/tuple 32 | - 744 33 | - 472 34 | L: !!python/tuple 35 | - 396 36 | - 486 37 | M: !!python/tuple 38 | - 185 39 | - 467 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240930/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 82 3 | - 217 4 | B: !!python/tuple 5 | - 241 6 | - 201 7 | C: !!python/tuple 8 | - 480 9 | - 104 10 | D: !!python/tuple 11 | - 120 12 | - 369 13 | E: !!python/tuple 14 | - 209 15 | - 377 16 | F: !!python/tuple 17 | - 399 18 | - 241 19 | G: !!python/tuple 20 | - 336 21 | - 352 22 | H: !!python/tuple 23 | - 570 24 | - 244 25 | I: !!python/tuple 26 | - 533 27 | - 354 28 | J: !!python/tuple 29 | - 742 30 | - 186 31 | K: !!python/tuple 32 | - 714 33 | - 300 34 | L: !!python/tuple 35 | - 176 36 | - 495 37 | M: !!python/tuple 38 | - 256 39 | - 443 40 | N: !!python/tuple 41 | - 413 42 | - 482 43 | O: !!python/tuple 44 | - 782 45 | - 449 46 | P: !!python/tuple 47 | - 609 48 | - 495 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20240930/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 826 3 | - 301 4 | B: !!python/tuple 5 | - 533 6 | - 148 7 | C: !!python/tuple 8 | - 478 9 | - 80 10 | D: !!python/tuple 11 | - 690 12 | - 232 13 | E: !!python/tuple 14 | - 892 15 | - 457 16 | F: !!python/tuple 17 | - 705 18 | - 396 19 | G: !!python/tuple 20 | - 720 21 | - 496 22 | H: !!python/tuple 23 | - 356 24 | - 152 25 | I: !!python/tuple 26 | - 555 27 | - 315 28 | J: !!python/tuple 29 | - 556 30 | - 486 31 | K: !!python/tuple 32 | - 253 33 | - 96 34 | L: !!python/tuple 35 | - 112 36 | - 216 37 | M: !!python/tuple 38 | - 311 39 | - 220 40 | N: !!python/tuple 41 | - 248 42 | - 330 43 | O: !!python/tuple 44 | - 458 45 | - 331 46 | P: !!python/tuple 47 | - 361 48 | - 480 49 | Q: !!python/tuple 50 | - 134 51 | - 486 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 111 3 | - 269 4 | B: !!python/tuple 5 | - 285 6 | - 330 7 | C: !!python/tuple 8 | - 211 9 | - 143 10 | D: !!python/tuple 11 | - 375 12 | - 99 13 | E: !!python/tuple 14 | - 427 15 | - 407 16 | F: !!python/tuple 17 | - 367 18 | - 193 19 | G: !!python/tuple 20 | - 464 21 | - 299 22 | H: !!python/tuple 23 | - 560 24 | - 91 25 | I: !!python/tuple 26 | - 607 27 | - 202 28 | J: !!python/tuple 29 | - 775 30 | - 273 31 | K: !!python/tuple 32 | - 663 33 | - 339 34 | L: !!python/tuple 35 | - 563 36 | - 418 37 | M: !!python/tuple 38 | - 800 39 | - 116 40 | N: !!python/tuple 41 | - 796 42 | - 482 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 658 3 | - 345 4 | B: !!python/tuple 5 | - 547 6 | - 496 7 | C: !!python/tuple 8 | - 352 9 | - 473 10 | D: !!python/tuple 11 | - 171 12 | - 406 13 | E: !!python/tuple 14 | - 405 15 | - 354 16 | F: !!python/tuple 17 | - 517 18 | - 255 19 | G: !!python/tuple 20 | - 212 21 | - 286 22 | H: !!python/tuple 23 | - 155 24 | - 129 25 | I: !!python/tuple 26 | - 255 27 | - 171 28 | J: !!python/tuple 29 | - 443 30 | - 127 31 | K: !!python/tuple 32 | - 562 33 | - 91 34 | L: !!python/tuple 35 | - 660 36 | - 201 37 | M: !!python/tuple 38 | - 775 39 | - 345 40 | N: !!python/tuple 41 | - 830 42 | - 90 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 226 3 | - 120 4 | B: !!python/tuple 5 | - 374 6 | - 76 7 | C: !!python/tuple 8 | - 218 9 | - 339 10 | D: !!python/tuple 11 | - 344 12 | - 428 13 | E: !!python/tuple 14 | - 496 15 | - 159 16 | F: !!python/tuple 17 | - 328 18 | - 240 19 | G: !!python/tuple 20 | - 494 21 | - 303 22 | H: !!python/tuple 23 | - 583 24 | - 76 25 | I: !!python/tuple 26 | - 629 27 | - 203 28 | J: !!python/tuple 29 | - 765 30 | - 303 31 | K: !!python/tuple 32 | - 679 33 | - 316 34 | L: !!python/tuple 35 | - 554 36 | - 437 37 | M: !!python/tuple 38 | - 712 39 | - 503 40 | N: !!python/tuple 41 | - 803 42 | - 482 43 | O: !!python/tuple 44 | - 744 45 | - 86 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 329 3 | - 89 4 | B: !!python/tuple 5 | - 630 6 | - 90 7 | C: !!python/tuple 8 | - 480 9 | - 173 10 | D: !!python/tuple 11 | - 404 12 | - 300 13 | E: !!python/tuple 14 | - 554 15 | - 299 16 | F: !!python/tuple 17 | - 202 18 | - 188 19 | G: !!python/tuple 20 | - 756 21 | - 189 22 | H: !!python/tuple 23 | - 222 24 | - 344 25 | I: !!python/tuple 26 | - 736 27 | - 344 28 | J: !!python/tuple 29 | - 367 30 | - 477 31 | K: !!python/tuple 32 | - 595 33 | - 473 34 | L: !!python/tuple 35 | - 94 36 | - 201 37 | M: !!python/tuple 38 | - 861 39 | - 200 40 | N: !!python/tuple 41 | - 94 42 | - 481 43 | O: !!python/tuple 44 | - 861 45 | - 482 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 284 3 | - 67 4 | B: !!python/tuple 5 | - 271 6 | - 159 7 | C: !!python/tuple 8 | - 467 9 | - 98 10 | D: !!python/tuple 11 | - 675 12 | - 113 13 | E: !!python/tuple 14 | - 765 15 | - 249 16 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/E-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 67 3 | - 277 4 | B: !!python/tuple 5 | - 201 6 | - 186 7 | C: !!python/tuple 8 | - 343 9 | - 83 10 | D: !!python/tuple 11 | - 195 12 | - 322 13 | E: !!python/tuple 14 | - 286 15 | - 466 16 | F: !!python/tuple 17 | - 353 18 | - 218 19 | G: !!python/tuple 20 | - 389 21 | - 340 22 | H: !!python/tuple 23 | - 547 24 | - 76 25 | I: !!python/tuple 26 | - 730 27 | - 74 28 | J: !!python/tuple 29 | - 638 30 | - 135 31 | K: !!python/tuple 32 | - 523 33 | - 240 34 | L: !!python/tuple 35 | - 487 36 | - 408 37 | M: !!python/tuple 38 | - 834 39 | - 226 40 | N: !!python/tuple 41 | - 743 42 | - 279 43 | O: !!python/tuple 44 | - 623 45 | - 363 46 | P: !!python/tuple 47 | - 885 48 | - 407 49 | Q: !!python/tuple 50 | - 420 51 | - 500 52 | R: !!python/tuple 53 | - 742 54 | - 476 55 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 111 3 | - 269 4 | B: !!python/tuple 5 | - 285 6 | - 330 7 | C: !!python/tuple 8 | - 211 9 | - 143 10 | D: !!python/tuple 11 | - 375 12 | - 99 13 | E: !!python/tuple 14 | - 427 15 | - 407 16 | F: !!python/tuple 17 | - 367 18 | - 193 19 | G: !!python/tuple 20 | - 464 21 | - 299 22 | H: !!python/tuple 23 | - 560 24 | - 91 25 | I: !!python/tuple 26 | - 607 27 | - 202 28 | J: !!python/tuple 29 | - 775 30 | - 273 31 | K: !!python/tuple 32 | - 663 33 | - 339 34 | L: !!python/tuple 35 | - 563 36 | - 418 37 | M: !!python/tuple 38 | - 800 39 | - 116 40 | N: !!python/tuple 41 | - 796 42 | - 482 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 658 3 | - 345 4 | B: !!python/tuple 5 | - 547 6 | - 496 7 | C: !!python/tuple 8 | - 352 9 | - 473 10 | D: !!python/tuple 11 | - 171 12 | - 406 13 | E: !!python/tuple 14 | - 405 15 | - 354 16 | F: !!python/tuple 17 | - 517 18 | - 255 19 | G: !!python/tuple 20 | - 212 21 | - 286 22 | H: !!python/tuple 23 | - 155 24 | - 129 25 | I: !!python/tuple 26 | - 255 27 | - 171 28 | J: !!python/tuple 29 | - 443 30 | - 127 31 | K: !!python/tuple 32 | - 562 33 | - 91 34 | L: !!python/tuple 35 | - 660 36 | - 201 37 | M: !!python/tuple 38 | - 775 39 | - 345 40 | N: !!python/tuple 41 | - 830 42 | - 90 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 226 3 | - 120 4 | B: !!python/tuple 5 | - 374 6 | - 76 7 | C: !!python/tuple 8 | - 218 9 | - 339 10 | D: !!python/tuple 11 | - 344 12 | - 428 13 | E: !!python/tuple 14 | - 496 15 | - 159 16 | F: !!python/tuple 17 | - 328 18 | - 240 19 | G: !!python/tuple 20 | - 494 21 | - 303 22 | H: !!python/tuple 23 | - 583 24 | - 76 25 | I: !!python/tuple 26 | - 629 27 | - 203 28 | J: !!python/tuple 29 | - 765 30 | - 303 31 | K: !!python/tuple 32 | - 679 33 | - 316 34 | L: !!python/tuple 35 | - 554 36 | - 437 37 | M: !!python/tuple 38 | - 712 39 | - 503 40 | N: !!python/tuple 41 | - 803 42 | - 482 43 | O: !!python/tuple 44 | - 744 45 | - 86 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 329 3 | - 89 4 | B: !!python/tuple 5 | - 630 6 | - 90 7 | C: !!python/tuple 8 | - 480 9 | - 173 10 | D: !!python/tuple 11 | - 404 12 | - 300 13 | E: !!python/tuple 14 | - 554 15 | - 299 16 | F: !!python/tuple 17 | - 202 18 | - 188 19 | G: !!python/tuple 20 | - 756 21 | - 189 22 | H: !!python/tuple 23 | - 222 24 | - 344 25 | I: !!python/tuple 26 | - 736 27 | - 344 28 | J: !!python/tuple 29 | - 367 30 | - 477 31 | K: !!python/tuple 32 | - 595 33 | - 473 34 | L: !!python/tuple 35 | - 94 36 | - 201 37 | M: !!python/tuple 38 | - 861 39 | - 200 40 | N: !!python/tuple 41 | - 94 42 | - 481 43 | O: !!python/tuple 44 | - 861 45 | - 482 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 284 3 | - 67 4 | B: !!python/tuple 5 | - 271 6 | - 159 7 | C: !!python/tuple 8 | - 467 9 | - 98 10 | D: !!python/tuple 11 | - 675 12 | - 113 13 | E: !!python/tuple 14 | - 765 15 | - 249 16 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20241219/H-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 67 3 | - 277 4 | B: !!python/tuple 5 | - 201 6 | - 186 7 | C: !!python/tuple 8 | - 343 9 | - 83 10 | D: !!python/tuple 11 | - 195 12 | - 322 13 | E: !!python/tuple 14 | - 286 15 | - 466 16 | F: !!python/tuple 17 | - 353 18 | - 218 19 | G: !!python/tuple 20 | - 389 21 | - 340 22 | H: !!python/tuple 23 | - 547 24 | - 76 25 | I: !!python/tuple 26 | - 730 27 | - 74 28 | J: !!python/tuple 29 | - 638 30 | - 135 31 | K: !!python/tuple 32 | - 523 33 | - 240 34 | L: !!python/tuple 35 | - 487 36 | - 408 37 | M: !!python/tuple 38 | - 834 39 | - 226 40 | N: !!python/tuple 41 | - 743 42 | - 279 43 | O: !!python/tuple 44 | - 623 45 | - 363 46 | P: !!python/tuple 47 | - 885 48 | - 407 49 | Q: !!python/tuple 50 | - 420 51 | - 500 52 | R: !!python/tuple 53 | - 742 54 | - 476 55 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/E-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 128 3 | - 237 4 | B: !!python/tuple 5 | - 254 6 | - 147 7 | C: !!python/tuple 8 | - 238 9 | - 373 10 | D: !!python/tuple 11 | - 97 12 | - 493 13 | E: !!python/tuple 14 | - 381 15 | - 253 16 | F: !!python/tuple 17 | - 488 18 | - 156 19 | G: !!python/tuple 20 | - 405 21 | - 457 22 | H: !!python/tuple 23 | - 524 24 | - 338 25 | I: !!python/tuple 26 | - 585 27 | - 471 28 | J: !!python/tuple 29 | - 644 30 | - 256 31 | K: !!python/tuple 32 | - 787 33 | - 494 34 | L: !!python/tuple 35 | - 710 36 | - 346 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/E-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 448 3 | - 119 4 | B: !!python/tuple 5 | - 314 6 | - 264 7 | C: !!python/tuple 8 | - 165 9 | - 210 10 | D: !!python/tuple 11 | - 524 12 | - 234 13 | E: !!python/tuple 14 | - 172 15 | - 352 16 | F: !!python/tuple 17 | - 96 18 | - 488 19 | G: !!python/tuple 20 | - 284 21 | - 465 22 | H: !!python/tuple 23 | - 433 24 | - 360 25 | I: !!python/tuple 26 | - 451 27 | - 509 28 | J: !!python/tuple 29 | - 691 30 | - 232 31 | K: !!python/tuple 32 | - 846 33 | - 366 34 | L: !!python/tuple 35 | - 667 36 | - 502 37 | M: !!python/tuple 38 | - 607 39 | - 412 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/E-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 119 3 | - 229 4 | B: !!python/tuple 5 | - 262 6 | - 217 7 | C: !!python/tuple 8 | - 330 9 | - 88 10 | D: !!python/tuple 11 | - 110 12 | - 382 13 | E: !!python/tuple 14 | - 248 15 | - 367 16 | F: !!python/tuple 17 | - 329 18 | - 486 19 | G: !!python/tuple 20 | - 405 21 | - 373 22 | H: !!python/tuple 23 | - 442 24 | - 230 25 | I: !!python/tuple 26 | - 585 27 | - 119 28 | J: !!python/tuple 29 | - 809 30 | - 171 31 | K: !!python/tuple 32 | - 592 33 | - 247 34 | L: !!python/tuple 35 | - 480 36 | - 501 37 | M: !!python/tuple 38 | - 575 39 | - 396 40 | N: !!python/tuple 41 | - 764 42 | - 322 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/E-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 172 3 | - 216 4 | B: !!python/tuple 5 | - 404 6 | - 201 7 | C: !!python/tuple 8 | - 471 9 | - 86 10 | D: !!python/tuple 11 | - 120 12 | - 380 13 | E: !!python/tuple 14 | - 262 15 | - 359 16 | F: !!python/tuple 17 | - 277 18 | - 501 19 | G: !!python/tuple 20 | - 420 21 | - 403 22 | H: !!python/tuple 23 | - 547 24 | - 510 25 | I: !!python/tuple 26 | - 532 27 | - 306 28 | J: !!python/tuple 29 | - 630 30 | - 172 31 | K: !!python/tuple 32 | - 690 33 | - 298 34 | L: !!python/tuple 35 | - 771 36 | - 165 37 | M: !!python/tuple 38 | - 786 39 | - 388 40 | N: !!python/tuple 41 | - 898 42 | - 487 43 | O: !!python/tuple 44 | - 636 45 | - 489 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/E-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 75 3 | - 286 4 | B: !!python/tuple 5 | - 172 6 | - 215 7 | C: !!python/tuple 8 | - 127 9 | - 457 10 | D: !!python/tuple 11 | - 336 12 | - 201 13 | E: !!python/tuple 14 | - 238 15 | - 351 16 | F: !!python/tuple 17 | - 441 18 | - 285 19 | G: !!python/tuple 20 | - 344 21 | - 487 22 | H: !!python/tuple 23 | - 367 24 | - 405 25 | I: !!python/tuple 26 | - 531 27 | - 491 28 | J: !!python/tuple 29 | - 509 30 | - 398 31 | K: !!python/tuple 32 | - 705 33 | - 395 34 | L: !!python/tuple 35 | - 870 36 | - 336 37 | M: !!python/tuple 38 | - 727 39 | - 229 40 | N: !!python/tuple 41 | - 606 42 | - 263 43 | O: !!python/tuple 44 | - 891 45 | - 231 46 | P: !!python/tuple 47 | - 593 48 | - 88 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/H-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 128 3 | - 237 4 | B: !!python/tuple 5 | - 254 6 | - 147 7 | C: !!python/tuple 8 | - 238 9 | - 373 10 | D: !!python/tuple 11 | - 97 12 | - 493 13 | E: !!python/tuple 14 | - 381 15 | - 253 16 | F: !!python/tuple 17 | - 488 18 | - 156 19 | G: !!python/tuple 20 | - 405 21 | - 457 22 | H: !!python/tuple 23 | - 524 24 | - 338 25 | I: !!python/tuple 26 | - 585 27 | - 471 28 | J: !!python/tuple 29 | - 644 30 | - 256 31 | K: !!python/tuple 32 | - 787 33 | - 494 34 | L: !!python/tuple 35 | - 710 36 | - 346 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/H-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 448 3 | - 119 4 | B: !!python/tuple 5 | - 314 6 | - 264 7 | C: !!python/tuple 8 | - 165 9 | - 210 10 | D: !!python/tuple 11 | - 524 12 | - 234 13 | E: !!python/tuple 14 | - 172 15 | - 352 16 | F: !!python/tuple 17 | - 96 18 | - 488 19 | G: !!python/tuple 20 | - 284 21 | - 465 22 | H: !!python/tuple 23 | - 433 24 | - 360 25 | I: !!python/tuple 26 | - 451 27 | - 509 28 | J: !!python/tuple 29 | - 691 30 | - 232 31 | K: !!python/tuple 32 | - 846 33 | - 366 34 | L: !!python/tuple 35 | - 667 36 | - 502 37 | M: !!python/tuple 38 | - 607 39 | - 412 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/H-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 119 3 | - 229 4 | B: !!python/tuple 5 | - 262 6 | - 217 7 | C: !!python/tuple 8 | - 330 9 | - 88 10 | D: !!python/tuple 11 | - 110 12 | - 382 13 | E: !!python/tuple 14 | - 248 15 | - 367 16 | F: !!python/tuple 17 | - 329 18 | - 486 19 | G: !!python/tuple 20 | - 405 21 | - 373 22 | H: !!python/tuple 23 | - 442 24 | - 230 25 | I: !!python/tuple 26 | - 585 27 | - 119 28 | J: !!python/tuple 29 | - 809 30 | - 171 31 | K: !!python/tuple 32 | - 592 33 | - 247 34 | L: !!python/tuple 35 | - 480 36 | - 501 37 | M: !!python/tuple 38 | - 575 39 | - 396 40 | N: !!python/tuple 41 | - 764 42 | - 322 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/H-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 172 3 | - 216 4 | B: !!python/tuple 5 | - 404 6 | - 201 7 | C: !!python/tuple 8 | - 471 9 | - 86 10 | D: !!python/tuple 11 | - 120 12 | - 380 13 | E: !!python/tuple 14 | - 262 15 | - 359 16 | F: !!python/tuple 17 | - 277 18 | - 501 19 | G: !!python/tuple 20 | - 420 21 | - 403 22 | H: !!python/tuple 23 | - 547 24 | - 510 25 | I: !!python/tuple 26 | - 532 27 | - 306 28 | J: !!python/tuple 29 | - 630 30 | - 172 31 | K: !!python/tuple 32 | - 690 33 | - 298 34 | L: !!python/tuple 35 | - 771 36 | - 165 37 | M: !!python/tuple 38 | - 786 39 | - 388 40 | N: !!python/tuple 41 | - 898 42 | - 487 43 | O: !!python/tuple 44 | - 636 45 | - 489 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/event/20250123/H-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 75 3 | - 286 4 | B: !!python/tuple 5 | - 172 6 | - 215 7 | C: !!python/tuple 8 | - 127 9 | - 457 10 | D: !!python/tuple 11 | - 336 12 | - 201 13 | E: !!python/tuple 14 | - 238 15 | - 351 16 | F: !!python/tuple 17 | - 441 18 | - 285 19 | G: !!python/tuple 20 | - 344 21 | - 487 22 | H: !!python/tuple 23 | - 367 24 | - 405 25 | I: !!python/tuple 26 | - 531 27 | - 491 28 | J: !!python/tuple 29 | - 509 30 | - 398 31 | K: !!python/tuple 32 | - 705 33 | - 395 34 | L: !!python/tuple 35 | - 870 36 | - 336 37 | M: !!python/tuple 38 | - 727 39 | - 229 40 | N: !!python/tuple 41 | - 606 42 | - 263 43 | O: !!python/tuple 44 | - 891 45 | - 231 46 | P: !!python/tuple 47 | - 593 48 | - 88 49 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/1-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 283 3 | - 251 4 | B: !!python/tuple 5 | - 390 6 | - 147 7 | C: !!python/tuple 8 | - 395 9 | - 283 10 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/1-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 254 3 | - 243 4 | B: !!python/tuple 5 | - 368 6 | - 311 7 | C: !!python/tuple 8 | - 352 9 | - 152 10 | D: !!python/tuple 11 | - 500 12 | - 366 13 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/1-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 336 3 | - 288 4 | B: !!python/tuple 5 | - 434 6 | - 403 7 | C: !!python/tuple 8 | - 474 9 | - 271 10 | D: !!python/tuple 11 | - 592 12 | - 346 13 | E: !!python/tuple 14 | - 424 15 | - 151 16 | F: !!python/tuple 17 | - 628 18 | - 183 19 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/1-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 497 3 | - 363 4 | B: !!python/tuple 5 | - 665 6 | - 292 7 | C: !!python/tuple 8 | - 383 9 | - 326 10 | D: !!python/tuple 11 | - 611 12 | - 143 13 | E: !!python/tuple 14 | - 224 15 | - 315 16 | F: !!python/tuple 17 | - 401 18 | - 183 19 | G: !!python/tuple 20 | - 280 21 | - 114 22 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/1-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 589 3 | - 216 4 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/2-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 330 3 | - 104 4 | B: !!python/tuple 5 | - 245 6 | - 236 7 | C: !!python/tuple 8 | - 469 9 | - 139 10 | D: !!python/tuple 11 | - 310 12 | - 374 13 | E: !!python/tuple 14 | - 555 15 | - 269 16 | F: !!python/tuple 17 | - 487 18 | - 411 19 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/2-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 547 3 | - 224 4 | B: !!python/tuple 5 | - 398 6 | - 210 7 | C: !!python/tuple 8 | - 674 9 | - 179 10 | D: !!python/tuple 11 | - 591 12 | - 366 13 | E: !!python/tuple 14 | - 428 15 | - 337 16 | F: !!python/tuple 17 | - 243 18 | - 197 19 | G: !!python/tuple 20 | - 344 21 | - 441 22 | H: !!python/tuple 23 | - 198 24 | - 78 25 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/2-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 131 3 | - 303 4 | B: !!python/tuple 5 | - 323 6 | - 397 7 | C: !!python/tuple 8 | - 191 9 | - 175 10 | D: !!python/tuple 11 | - 348 12 | - 250 13 | E: !!python/tuple 14 | - 558 15 | - 445 16 | F: !!python/tuple 17 | - 337 18 | - 81 19 | G: !!python/tuple 20 | - 457 21 | - 175 22 | H: !!python/tuple 23 | - 697 24 | - 408 25 | I: !!python/tuple 26 | - 518 27 | - 60 28 | J: !!python/tuple 29 | - 672 30 | - 167 31 | K: !!python/tuple 32 | - 788 33 | - 254 34 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/2-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 112 3 | - 340 4 | B: !!python/tuple 5 | - 285 6 | - 352 7 | C: !!python/tuple 8 | - 239 9 | - 168 10 | D: !!python/tuple 11 | - 438 12 | - 288 13 | E: !!python/tuple 14 | - 412 15 | - 389 16 | F: !!python/tuple 17 | - 442 18 | - 190 19 | G: !!python/tuple 20 | - 569 21 | - 343 22 | H: !!python/tuple 23 | - 513 24 | - 456 25 | I: !!python/tuple 26 | - 525 27 | - 91 28 | J: !!python/tuple 29 | - 612 30 | - 186 31 | K: !!python/tuple 32 | - 747 33 | - 404 34 | L: !!python/tuple 35 | - 814 36 | - 134 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/2-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 202 3 | - 78 4 | B: !!python/tuple 5 | - 338 6 | - 127 7 | C: !!python/tuple 8 | - 457 9 | - 89 10 | D: !!python/tuple 11 | - 389 12 | - 217 13 | E: !!python/tuple 14 | - 213 15 | - 280 16 | F: !!python/tuple 17 | - 644 18 | - 44 19 | G: !!python/tuple 20 | - 611 21 | - 160 22 | H: !!python/tuple 23 | - 464 24 | - 299 25 | I: !!python/tuple 26 | - 458 27 | - 375 28 | J: !!python/tuple 29 | - 780 30 | - 134 31 | K: !!python/tuple 32 | - 608 33 | - 254 34 | L: !!python/tuple 35 | - 743 36 | - 365 37 | M: !!python/tuple 38 | - 625 39 | - 448 40 | N: !!python/tuple 41 | - 296 42 | - 463 43 | O: !!python/tuple 44 | - 825 45 | - 276 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/2-6.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 135 3 | - 284 4 | B: !!python/tuple 5 | - 338 6 | - 457 7 | C: !!python/tuple 8 | - 112 9 | - 134 10 | D: !!python/tuple 11 | - 284 12 | - 232 13 | E: !!python/tuple 14 | - 360 15 | - 344 16 | F: !!python/tuple 17 | - 517 18 | - 370 19 | G: !!python/tuple 20 | - 359 21 | - 74 22 | H: !!python/tuple 23 | - 652 24 | - 389 25 | I: !!python/tuple 26 | - 552 27 | - 87 28 | J: !!python/tuple 29 | - 503 30 | - 179 31 | K: !!python/tuple 32 | - 631 33 | - 243 34 | L: !!python/tuple 35 | - 705 36 | - 73 37 | M: !!python/tuple 38 | - 839 39 | - 292 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/3-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 435 3 | - 82 4 | B: !!python/tuple 5 | - 379 6 | - 172 7 | C: !!python/tuple 8 | - 299 9 | - 111 10 | D: !!python/tuple 11 | - 644 12 | - 224 13 | E: !!python/tuple 14 | - 386 15 | - 269 16 | F: !!python/tuple 17 | - 187 18 | - 224 19 | G: !!python/tuple 20 | - 487 21 | - 336 22 | H: !!python/tuple 23 | - 209 24 | - 373 25 | I: !!python/tuple 26 | - 375 27 | - 428 28 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/3-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 787 3 | - 186 4 | B: !!python/tuple 5 | - 623 6 | - 247 7 | C: !!python/tuple 8 | - 599 9 | - 164 10 | D: !!python/tuple 11 | - 708 12 | - 292 13 | E: !!python/tuple 14 | - 465 15 | - 276 16 | F: !!python/tuple 17 | - 682 18 | - 419 19 | G: !!python/tuple 20 | - 442 21 | - 426 22 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/3-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 787 3 | - 262 4 | B: !!python/tuple 5 | - 713 6 | - 209 7 | C: !!python/tuple 8 | - 656 9 | - 340 10 | D: !!python/tuple 11 | - 591 12 | - 220 13 | E: !!python/tuple 14 | - 465 15 | - 126 16 | F: !!python/tuple 17 | - 539 18 | - 437 19 | G: !!python/tuple 20 | - 532 21 | - 321 22 | H: !!python/tuple 23 | - 307 24 | - 224 25 | I: !!python/tuple 26 | - 443 27 | - 270 28 | J: !!python/tuple 29 | - 353 30 | - 381 31 | K: !!python/tuple 32 | - 136 33 | - 389 34 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/3-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 660 3 | - 174 4 | B: !!python/tuple 5 | - 638 6 | - 311 7 | C: !!python/tuple 8 | - 539 9 | - 220 10 | D: !!python/tuple 11 | - 524 12 | - 404 13 | E: !!python/tuple 14 | - 427 15 | - 228 16 | F: !!python/tuple 17 | - 359 18 | - 441 19 | G: !!python/tuple 20 | - 382 21 | - 329 22 | H: !!python/tuple 23 | - 209 24 | - 298 25 | I: !!python/tuple 26 | - 255 27 | - 192 28 | J: !!python/tuple 29 | - 128 30 | - 104 31 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/4-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 641 3 | - 232 4 | B: !!python/tuple 5 | - 608 6 | - 146 7 | C: !!python/tuple 8 | - 584 9 | - 344 10 | D: !!python/tuple 11 | - 486 12 | - 186 13 | E: !!python/tuple 14 | - 660 15 | - 426 16 | F: !!python/tuple 17 | - 445 18 | - 276 19 | G: !!python/tuple 20 | - 247 21 | - 231 22 | H: !!python/tuple 23 | - 794 24 | - 411 25 | I: !!python/tuple 26 | - 263 27 | - 428 28 | J: !!python/tuple 29 | - 90 30 | - 276 31 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/4-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 630 3 | - 374 4 | B: !!python/tuple 5 | - 758 6 | - 247 7 | C: !!python/tuple 8 | - 517 9 | - 348 10 | D: !!python/tuple 11 | - 636 12 | - 276 13 | E: !!python/tuple 14 | - 296 15 | - 306 16 | F: !!python/tuple 17 | - 551 18 | - 141 19 | G: !!python/tuple 20 | - 251 21 | - 408 22 | H: !!python/tuple 23 | - 401 24 | - 189 25 | I: !!python/tuple 26 | - 323 27 | - 83 28 | J: !!python/tuple 29 | - 210 30 | - 104 31 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/4-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 750 3 | - 239 4 | B: !!python/tuple 5 | - 623 6 | - 108 7 | C: !!python/tuple 8 | - 614 9 | - 265 10 | D: !!python/tuple 11 | - 344 12 | - 89 13 | E: !!python/tuple 14 | - 487 15 | - 250 16 | F: !!python/tuple 17 | - 198 18 | - 254 19 | G: !!python/tuple 20 | - 356 21 | - 246 22 | H: !!python/tuple 23 | - 153 24 | - 426 25 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/4-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 600 3 | - 429 4 | B: !!python/tuple 5 | - 668 6 | - 292 7 | C: !!python/tuple 8 | - 303 9 | - 419 10 | D: !!python/tuple 11 | - 423 12 | - 397 13 | E: !!python/tuple 14 | - 551 15 | - 276 16 | F: !!python/tuple 17 | - 194 18 | - 328 19 | G: !!python/tuple 20 | - 427 21 | - 197 22 | H: !!python/tuple 23 | - 524 24 | - 133 25 | I: !!python/tuple 26 | - 139 27 | - 226 28 | J: !!python/tuple 29 | - 398 30 | - 93 31 | K: !!python/tuple 32 | - 260 33 | - 168 34 | L: !!python/tuple 35 | - 131 36 | - 92 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/5-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 682 3 | - 359 4 | B: !!python/tuple 5 | - 769 6 | - 172 7 | C: !!python/tuple 8 | - 494 9 | - 434 10 | D: !!python/tuple 11 | - 516 12 | - 216 13 | E: !!python/tuple 14 | - 116 15 | - 336 16 | F: !!python/tuple 17 | - 254 18 | - 261 19 | G: !!python/tuple 20 | - 344 21 | - 81 22 | H: !!python/tuple 23 | - 134 24 | - 66 25 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/5-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 675 3 | - 434 4 | B: !!python/tuple 5 | - 653 6 | - 266 7 | C: !!python/tuple 8 | - 839 9 | - 209 10 | D: !!python/tuple 11 | - 404 12 | - 389 13 | E: !!python/tuple 14 | - 483 15 | - 258 16 | F: !!python/tuple 17 | - 584 18 | - 81 19 | G: !!python/tuple 20 | - 179 21 | - 452 22 | H: !!python/tuple 23 | - 266 24 | - 239 25 | I: !!python/tuple 26 | - 308 27 | - 83 28 | J: !!python/tuple 29 | - 98 30 | - 126 31 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/5-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 712 3 | - 322 4 | B: !!python/tuple 5 | - 630 6 | - 131 7 | C: !!python/tuple 8 | - 772 9 | - 430 10 | D: !!python/tuple 11 | - 539 12 | - 276 13 | E: !!python/tuple 14 | - 570 15 | - 426 16 | F: !!python/tuple 17 | - 476 18 | - 160 19 | G: !!python/tuple 20 | - 281 21 | - 377 22 | H: !!python/tuple 23 | - 179 24 | - 201 25 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/5-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 615 3 | - 232 4 | B: !!python/tuple 5 | - 540 6 | - 63 7 | C: !!python/tuple 8 | - 690 9 | - 381 10 | D: !!python/tuple 11 | - 321 12 | - 156 13 | E: !!python/tuple 14 | - 487 15 | - 441 16 | F: !!python/tuple 17 | - 449 18 | - 336 19 | G: !!python/tuple 20 | - 236 21 | - 377 22 | H: !!python/tuple 23 | - 82 24 | - 209 25 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/5-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 765 3 | - 419 4 | B: !!python/tuple 5 | - 683 6 | - 299 7 | C: !!python/tuple 8 | - 592 9 | - 89 10 | D: !!python/tuple 11 | - 509 12 | - 419 13 | E: !!python/tuple 14 | - 465 15 | - 224 16 | F: !!python/tuple 17 | - 420 18 | - 84 19 | G: !!python/tuple 20 | - 254 21 | - 422 22 | H: !!python/tuple 23 | - 258 24 | - 264 25 | I: !!python/tuple 26 | - 90 27 | - 196 28 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/6-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 390 3 | - 434 4 | B: !!python/tuple 5 | - 525 6 | - 322 7 | C: !!python/tuple 8 | - 629 9 | - 306 10 | D: !!python/tuple 11 | - 231 12 | - 337 13 | E: !!python/tuple 14 | - 390 15 | - 336 16 | F: !!python/tuple 17 | - 464 18 | - 194 19 | G: !!python/tuple 20 | - 138 21 | - 441 22 | H: !!python/tuple 23 | - 247 24 | - 194 25 | I: !!python/tuple 26 | - 443 27 | - 83 28 | J: !!python/tuple 29 | - 83 30 | - 284 31 | K: !!python/tuple 32 | - 143 33 | - 119 34 | L: !!python/tuple 35 | - 330 36 | - 66 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/6-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 67 3 | - 202 4 | B: !!python/tuple 5 | - 176 6 | - 307 7 | C: !!python/tuple 8 | - 389 9 | - 437 10 | D: !!python/tuple 11 | - 239 12 | - 142 13 | E: !!python/tuple 14 | - 315 15 | - 216 16 | F: !!python/tuple 17 | - 517 18 | - 336 19 | G: !!python/tuple 20 | - 427 21 | - 133 22 | H: !!python/tuple 23 | - 487 24 | - 239 25 | I: !!python/tuple 26 | - 690 27 | - 290 28 | J: !!python/tuple 29 | - 578 30 | - 89 31 | K: !!python/tuple 32 | - 631 33 | - 183 34 | L: !!python/tuple 35 | - 765 36 | - 186 37 | M: !!python/tuple 38 | - 831 39 | - 66 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/6-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 405 3 | - 434 4 | B: !!python/tuple 5 | - 293 6 | - 262 7 | C: !!python/tuple 8 | - 164 9 | - 246 10 | D: !!python/tuple 11 | - 561 12 | - 408 13 | E: !!python/tuple 14 | - 450 15 | - 198 16 | F: !!python/tuple 17 | - 345 18 | - 69 19 | G: !!python/tuple 20 | - 697 21 | - 291 22 | H: !!python/tuple 23 | - 637 24 | - 217 25 | I: !!python/tuple 26 | - 540 27 | - 117 28 | J: !!python/tuple 29 | - 844 30 | - 122 31 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/6-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 138 3 | - 261 4 | B: !!python/tuple 5 | - 379 6 | - 262 7 | C: !!python/tuple 8 | - 239 9 | - 130 10 | D: !!python/tuple 11 | - 216 12 | - 381 13 | E: !!python/tuple 14 | - 420 15 | - 434 16 | F: !!python/tuple 17 | - 427 18 | - 103 19 | G: !!python/tuple 20 | - 510 21 | - 291 22 | H: !!python/tuple 23 | - 599 24 | - 197 25 | I: !!python/tuple 26 | - 634 27 | - 68 28 | J: !!python/tuple 29 | - 773 30 | - 284 31 | K: !!python/tuple 32 | - 661 33 | - 427 34 | L: !!python/tuple 35 | - 900 36 | - 404 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/7-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 712 3 | - 389 4 | B: !!python/tuple 5 | - 668 6 | - 165 7 | C: !!python/tuple 8 | - 581 9 | - 337 10 | D: !!python/tuple 11 | - 543 12 | - 201 13 | E: !!python/tuple 14 | - 600 15 | - 74 16 | F: !!python/tuple 17 | - 434 18 | - 411 19 | G: !!python/tuple 20 | - 434 21 | - 299 22 | H: !!python/tuple 23 | - 416 24 | - 164 25 | I: !!python/tuple 26 | - 297 27 | - 282 28 | J: !!python/tuple 29 | - 233 30 | - 89 31 | K: !!python/tuple 32 | - 271 33 | - 179 34 | L: !!python/tuple 35 | - 274 36 | - 430 37 | M: !!python/tuple 38 | - 216 39 | - 340 40 | N: !!python/tuple 41 | - 90 42 | - 238 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/7-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 517 3 | - 277 4 | B: !!python/tuple 5 | - 630 6 | - 217 7 | C: !!python/tuple 8 | - 502 9 | - 389 10 | D: !!python/tuple 11 | - 385 12 | - 322 13 | E: !!python/tuple 14 | - 457 15 | - 149 16 | F: !!python/tuple 17 | - 757 18 | - 179 19 | G: !!python/tuple 20 | - 659 21 | - 89 22 | H: !!python/tuple 23 | - 269 24 | - 284 25 | I: !!python/tuple 26 | - 334 27 | - 443 28 | J: !!python/tuple 29 | - 128 30 | - 336 31 | K: !!python/tuple 32 | - 256 33 | - 130 34 | L: !!python/tuple 35 | - 874 36 | - 100 37 | M: !!python/tuple 38 | - 111 39 | - 96 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/7-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 645 3 | - 404 4 | B: !!python/tuple 5 | - 660 6 | - 277 7 | C: !!python/tuple 8 | - 753 9 | - 145 10 | D: !!python/tuple 11 | - 475 12 | - 445 13 | E: !!python/tuple 14 | - 543 15 | - 344 16 | F: !!python/tuple 17 | - 562 18 | - 224 19 | G: !!python/tuple 20 | - 614 21 | - 85 22 | H: !!python/tuple 23 | - 322 24 | - 397 25 | I: !!python/tuple 26 | - 364 27 | - 331 28 | J: !!python/tuple 29 | - 428 30 | - 179 31 | K: !!python/tuple 32 | - 492 33 | - 74 34 | L: !!python/tuple 35 | - 210 36 | - 254 37 | M: !!python/tuple 38 | - 314 39 | - 112 40 | N: !!python/tuple 41 | - 120 42 | - 141 43 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/7-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 757 3 | - 258 4 | B: !!python/tuple 5 | - 683 6 | - 71 7 | C: !!python/tuple 8 | - 689 9 | - 347 10 | D: !!python/tuple 11 | - 554 12 | - 205 13 | E: !!python/tuple 14 | - 499 15 | - 100 16 | F: !!python/tuple 17 | - 603 18 | - 407 19 | G: !!python/tuple 20 | - 415 21 | - 201 22 | H: !!python/tuple 23 | - 382 24 | - 85 25 | I: !!python/tuple 26 | - 477 27 | - 440 28 | J: !!python/tuple 29 | - 383 30 | - 393 31 | K: !!python/tuple 32 | - 338 33 | - 321 34 | L: !!python/tuple 35 | - 300 36 | - 137 37 | M: !!python/tuple 38 | - 175 39 | - 137 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/7-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 765 3 | - 399 4 | B: !!python/tuple 5 | - 735 6 | - 251 7 | C: !!python/tuple 8 | - 629 9 | - 434 10 | D: !!python/tuple 11 | - 629 12 | - 295 13 | E: !!python/tuple 14 | - 607 15 | - 190 16 | F: !!python/tuple 17 | - 704 18 | - 115 19 | G: !!python/tuple 20 | - 449 21 | - 445 22 | H: !!python/tuple 23 | - 498 24 | - 303 25 | I: !!python/tuple 26 | - 462 27 | - 140 28 | J: !!python/tuple 29 | - 563 30 | - 78 31 | K: !!python/tuple 32 | - 294 33 | - 422 34 | L: !!python/tuple 35 | - 368 36 | - 287 37 | M: !!python/tuple 38 | - 411 39 | - 70 40 | N: !!python/tuple 41 | - 232 42 | - 252 43 | O: !!python/tuple 44 | - 98 45 | - 197 46 | P: !!python/tuple 47 | - 143 48 | - 344 49 | Q: !!python/tuple 50 | - 98 51 | - 200 52 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/8-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 220 3 | - 206 4 | B: !!python/tuple 5 | - 311 6 | - 98 7 | C: !!python/tuple 8 | - 280 9 | - 339 10 | D: !!python/tuple 11 | - 397 12 | - 274 13 | E: !!python/tuple 14 | - 454 15 | - 164 16 | F: !!python/tuple 17 | - 551 18 | - 100 19 | G: !!python/tuple 20 | - 530 21 | - 423 22 | H: !!python/tuple 23 | - 593 24 | - 330 25 | I: !!python/tuple 26 | - 628 27 | - 208 28 | J: !!python/tuple 29 | - 753 30 | - 121 31 | K: !!python/tuple 32 | - 378 33 | - 435 34 | L: !!python/tuple 35 | - 786 36 | - 349 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/8-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 487 3 | - 397 4 | B: !!python/tuple 5 | - 495 6 | - 262 7 | C: !!python/tuple 8 | - 210 9 | - 224 10 | D: !!python/tuple 11 | - 659 12 | - 374 13 | E: !!python/tuple 14 | - 645 15 | - 261 16 | F: !!python/tuple 17 | - 374 18 | - 111 19 | G: !!python/tuple 20 | - 217 21 | - 74 22 | H: !!python/tuple 23 | - 809 24 | - 426 25 | I: !!python/tuple 26 | - 788 27 | - 308 28 | J: !!python/tuple 29 | - 570 30 | - 171 31 | K: !!python/tuple 32 | - 556 33 | - 74 34 | L: !!python/tuple 35 | - 720 36 | - 89 37 | M: !!python/tuple 38 | - 839 39 | - 142 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/8-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 802 3 | - 164 4 | B: !!python/tuple 5 | - 585 6 | - 314 7 | C: !!python/tuple 8 | - 675 9 | - 201 10 | D: !!python/tuple 11 | - 539 12 | - 89 13 | E: !!python/tuple 14 | - 472 15 | - 186 16 | F: !!python/tuple 17 | - 374 18 | - 366 19 | G: !!python/tuple 20 | - 389 21 | - 254 22 | H: !!python/tuple 23 | - 307 24 | - 172 25 | I: !!python/tuple 26 | - 173 27 | - 278 28 | J: !!python/tuple 29 | - 465 30 | - 449 31 | K: !!python/tuple 32 | - 286 33 | - 52 34 | L: !!python/tuple 35 | - 143 36 | - 133 37 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/8-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 682 3 | - 89 4 | B: !!python/tuple 5 | - 795 6 | - 254 7 | C: !!python/tuple 8 | - 495 9 | - 81 10 | D: !!python/tuple 11 | - 591 12 | - 261 13 | E: !!python/tuple 14 | - 773 15 | - 411 16 | F: !!python/tuple 17 | - 307 18 | - 66 19 | G: !!python/tuple 20 | - 277 21 | - 134 22 | H: !!python/tuple 23 | - 397 24 | - 232 25 | I: !!python/tuple 26 | - 443 27 | - 360 28 | J: !!python/tuple 29 | - 563 30 | - 449 31 | K: !!python/tuple 32 | - 338 33 | - 471 34 | L: !!python/tuple 35 | - 263 36 | - 351 37 | M: !!python/tuple 38 | - 126 39 | - 261 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/8-5.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 171 3 | - 200 4 | B: !!python/tuple 5 | - 291 6 | - 214 7 | C: !!python/tuple 8 | - 372 9 | - 476 10 | D: !!python/tuple 11 | - 432 12 | - 130 13 | E: !!python/tuple 14 | - 478 15 | - 281 16 | F: !!python/tuple 17 | - 575 18 | - 386 19 | G: !!python/tuple 20 | - 671 21 | - 124 22 | H: !!python/tuple 23 | - 711 24 | - 258 25 | I: !!python/tuple 26 | - 262 27 | - 78 28 | J: !!python/tuple 29 | - 837 30 | - 74 31 | K: !!python/tuple 32 | - 832 33 | - 403 34 | L: !!python/tuple 35 | - 731 36 | - 493 37 | M: !!python/tuple 38 | - 833 39 | - 195 40 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/9-1.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 268.8 3 | - 172.8 4 | B: !!python/tuple 5 | - 218 6 | - 254 7 | C: !!python/tuple 8 | - 133 9 | - 307 10 | D: !!python/tuple 11 | - 613 12 | - 184 13 | E: !!python/tuple 14 | - 475 15 | - 216 16 | F: !!python/tuple 17 | - 375 18 | - 298 19 | G: !!python/tuple 20 | - 298 21 | - 353 22 | H: !!python/tuple 23 | - 433 24 | - 400 25 | I: !!python/tuple 26 | - 479 27 | - 370 28 | J: !!python/tuple 29 | - 540 30 | - 340 31 | K: !!python/tuple 32 | - 605 33 | - 235 34 | L: !!python/tuple 35 | - 764 36 | - 160 37 | M: !!python/tuple 38 | - 734 39 | - 248 40 | N: !!python/tuple 41 | - 869 42 | - 302 43 | O: !!python/tuple 44 | - 734 45 | - 354 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/9-2.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 219 3 | - 230 4 | B: !!python/tuple 5 | - 255 6 | - 142 7 | C: !!python/tuple 8 | - 201 9 | - 66 10 | D: !!python/tuple 11 | - 367 12 | - 308 13 | E: !!python/tuple 14 | - 442 15 | - 194 16 | F: !!python/tuple 17 | - 389 18 | - 74 19 | G: !!python/tuple 20 | - 441 21 | - 459 22 | H: !!python/tuple 23 | - 561 24 | - 315 25 | I: !!python/tuple 26 | - 545 27 | - 98 28 | J: !!python/tuple 29 | - 758 30 | - 104 31 | K: !!python/tuple 32 | - 691 33 | - 201 34 | L: !!python/tuple 35 | - 621 36 | - 496 37 | M: !!python/tuple 38 | - 680 39 | - 435 40 | N: !!python/tuple 41 | - 885 42 | - 481 43 | O: !!python/tuple 44 | - 838 45 | - 300 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/9-3.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 494 3 | - 76 4 | B: !!python/tuple 5 | - 427 6 | - 285 7 | C: !!python/tuple 8 | - 562 9 | - 179 10 | D: !!python/tuple 11 | - 659 12 | - 81 13 | E: !!python/tuple 14 | - 869 15 | - 81 16 | F: !!python/tuple 17 | - 833 18 | - 150 19 | G: !!python/tuple 20 | - 740 21 | - 216 22 | H: !!python/tuple 23 | - 263 24 | - 368 25 | I: !!python/tuple 26 | - 594 27 | - 344 28 | J: !!python/tuple 29 | - 914 30 | - 313 31 | K: !!python/tuple 32 | - 712 33 | - 374 34 | L: !!python/tuple 35 | - 847 36 | - 442 37 | M: !!python/tuple 38 | - 645 39 | - 509 40 | N: !!python/tuple 41 | - 531 42 | - 480 43 | O: !!python/tuple 44 | - 305 45 | - 457 46 | -------------------------------------------------------------------------------- /autowsgr/data/map/normal/9-4.yaml: -------------------------------------------------------------------------------- 1 | A: !!python/tuple 2 | - 787 3 | - 225 4 | B: !!python/tuple 5 | - 659 6 | - 128 7 | C: !!python/tuple 8 | - 804 9 | - 382 10 | D: !!python/tuple 11 | - 645 12 | - 292 13 | E: !!python/tuple 14 | - 544 15 | - 224 16 | F: !!python/tuple 17 | - 659 18 | - 473 19 | G: !!python/tuple 20 | - 539 21 | - 442 22 | H: !!python/tuple 23 | - 463 24 | - 365 25 | I: !!python/tuple 26 | - 381 27 | - 256 28 | J: !!python/tuple 29 | - 388 30 | - 193 31 | K: !!python/tuple 32 | - 365 33 | - 494 34 | L: !!python/tuple 35 | - 270 36 | - 338 37 | M: !!python/tuple 38 | - 194 39 | - 223 40 | N: !!python/tuple 41 | - 163 42 | - 472 43 | O: !!python/tuple 44 | - 95 45 | - 408 46 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/困难巡洋.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 7 # 简单1-5 困难6-10 3 | repair_mode: [1, 1, 1, 2, 2, 2] 4 | 5 | node_args: 6 | night: True # 进夜战 7 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/困难战列.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 8 # 简单1-5 困难6-10 3 | 4 | # NodeLevel 5 | node_args: 6 | formation: 5 # 正常情况阵型选择,1-5 7 | night: True # 进夜战 8 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/困难潜艇.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 10 # 简单1-5 困难6-10 3 | repair_mode: 2 4 | 5 | node_args: 6 | night: True # 进夜战 7 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/困难航母.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 9 # 简单1-5 困难6-10 3 | repair_mode: [1, 1, 2, 2, 2, 2] 4 | 5 | node_args: 6 | night: True # 进夜战 7 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/困难驱逐.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 6 # 简单1-5 困难6-10 3 | 4 | node_args: 5 | night: True # 进夜战 6 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/简单巡洋.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 2 # 简单1-5 困难6-10 3 | repair_mode: [1, 1, 1, 2, 2, 2] 4 | 5 | node_args: 6 | night: True # 进夜战 7 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/简单战列.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 3 # 简单1-5 困难6-10 3 | 4 | # NodeLevel 5 | node_args: 6 | formation: 5 # 正常情况阵型选择,1-5 7 | night: True # 进夜战 8 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/简单潜艇.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 5 # 简单1-5 困难6-10 3 | repair_mode: 2 4 | 5 | node_args: 6 | night: True # 进夜战 7 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/简单航母.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 4 # 简单1-5 困难6-10 3 | repair_mode: [1, 1, 2, 2, 2, 2] 4 | 5 | node_args: 6 | night: True # 进夜战 7 | -------------------------------------------------------------------------------- /autowsgr/data/plans/battle/简单驱逐.yaml: -------------------------------------------------------------------------------- 1 | # MapLevel 2 | map: 1 # 简单1-5 困难6-10 3 | 4 | node_args: 5 | night: True # 进夜战 6 | -------------------------------------------------------------------------------- /autowsgr/data/plans/exercise/plan_1.yaml: -------------------------------------------------------------------------------- 1 | # 功能: 演习默认模块 2 | exercise_times: 4 3 | robot: True 4 | fleet_id: 2 5 | selected_nodes: ["player", "robot"] 6 | 7 | node_args: 8 | player: # 如果部分参数未指定,将继承 node_defaults 中的值 9 | formation: 4 10 | enemy_rules: 11 | - [SS >= 1, refresh] 12 | - [BB + BG + CBG + BC >= 2, refresh] 13 | - [CV + AV >= 2, refresh] 14 | night: True 15 | robot: 16 | formation: 1 17 | night: True 18 | -------------------------------------------------------------------------------- /autowsgr/fight/__init__.py: -------------------------------------------------------------------------------- 1 | from autowsgr.fight.battle import BattlePlan 2 | from autowsgr.fight.decisive_battle import DecisiveBattle 3 | from autowsgr.fight.exercise import NormalExercisePlan 4 | from autowsgr.fight.normal_fight import NormalFightPlan 5 | -------------------------------------------------------------------------------- /autowsgr/fight/event/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/fight/event/__init__.py -------------------------------------------------------------------------------- /autowsgr/game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/game/__init__.py -------------------------------------------------------------------------------- /autowsgr/notification/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/notification/__init__.py -------------------------------------------------------------------------------- /autowsgr/notification/miao_alert.yaml: -------------------------------------------------------------------------------- 1 | # 喵提醒设置,请至自行设置texts列表中的值, 2 | # 然后手动将函数添加至想要发出提醒的代码部分,其中第一条消息的函数应该是: 3 | # miao_alert(0),以此类推。 4 | 5 | miao_code: "" # 设置你自己的喵码 6 | texts: 7 | - "船舱已满,请手动分解" 8 | - "第二条消息" 9 | - "第三条消息" 10 | # 可以根据需要继续添加更多的text 11 | -------------------------------------------------------------------------------- /autowsgr/port/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/port/__init__.py -------------------------------------------------------------------------------- /autowsgr/port/facility.py: -------------------------------------------------------------------------------- 1 | class Bathroom: 2 | pass 3 | -------------------------------------------------------------------------------- /autowsgr/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/scripts/__init__.py -------------------------------------------------------------------------------- /autowsgr/timer/__init__.py: -------------------------------------------------------------------------------- 1 | from autowsgr.timer.timer import Timer 2 | -------------------------------------------------------------------------------- /autowsgr/timer/backends/__init__.py: -------------------------------------------------------------------------------- 1 | from autowsgr.timer.backends.ocr_backend import EasyocrBackend, OCRBackend, PaddleOCRBackend 2 | -------------------------------------------------------------------------------- /autowsgr/timer/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | from autowsgr.timer.controllers.android_controller import AndroidController 2 | from autowsgr.timer.controllers.os_controller import MacController, OSController, WindowsController 3 | -------------------------------------------------------------------------------- /autowsgr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/autowsgr/utils/__init__.py -------------------------------------------------------------------------------- /autowsgr/utils/operator.py: -------------------------------------------------------------------------------- 1 | from collections.abc import Iterable 2 | from typing import Any 3 | 4 | 5 | def remove_0_value_from_dict(d: dict) -> dict: 6 | return {k: v for k, v in d.items() if v is not None and v != 0} 7 | 8 | 9 | def unzip_element(o: object) -> list[object] | Any | list: 10 | if not isinstance(o, Iterable): 11 | return [o] 12 | res = [] 13 | for value in o: 14 | if isinstance(value, list | set): 15 | res += unzip_element(value) 16 | else: 17 | res.append(value) 18 | return res 19 | 20 | 21 | def unorder_equal(o1: Iterable, o2: Iterable, skip=None) -> bool: 22 | if skip is None: 23 | skip = [None] 24 | return (set(o1) - set(skip)) == (set(o2) - set(skip)) 25 | -------------------------------------------------------------------------------- /autowsgr/utils/time.py: -------------------------------------------------------------------------------- 1 | from datetime import datetime, time, timedelta 2 | 3 | 4 | def str2time(time_str: str, format='%H:%M:%S'): 5 | return datetime.strptime(time_str, format).time() 6 | 7 | 8 | def time2timedelta(time_obj: time): 9 | return timedelta( 10 | hours=time_obj.hour, 11 | minutes=time_obj.minute, 12 | seconds=time_obj.second, 13 | ) 14 | 15 | 16 | def get_eta(time_obj: time): 17 | now = datetime.now() 18 | return now + time2timedelta(time_obj) 19 | -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/docs/logo.png -------------------------------------------------------------------------------- /docs/spelling_wordlist.txt: -------------------------------------------------------------------------------- 1 | equipments 2 | -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenWSGR/AutoWSGR/0a9e29ad29d10781d5b9bbc5f114c9c565c906fe/tools/__init__.py -------------------------------------------------------------------------------- /tools/test_normal_map.py: -------------------------------------------------------------------------------- 1 | from autowsgr.constants.other_constants import CHAPTER_NODE_COUNT 2 | from autowsgr.fight import NormalFightPlan 3 | from autowsgr.scripts.main import start_script 4 | 5 | 6 | timer = start_script() 7 | plan = NormalFightPlan(timer, 'normal_fight/7-46SS-all.yaml') 8 | for i, nodes in enumerate(CHAPTER_NODE_COUNT): 9 | if i <= 0: 10 | continue 11 | for j in range(1, nodes + 1): 12 | plan._change_fight_map(i, j) 13 | print('测试成功!') 14 | --------------------------------------------------------------------------------