├── .dockerignore ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .mention-bot ├── .pullapprove.yml ├── .pylintrc ├── .styles.yapf ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── configs ├── auth.json.example ├── config.json.campfort.example ├── config.json.cluster.example ├── config.json.example ├── config.json.map.example ├── config.json.optimizer.example ├── config.json.path.example ├── config.json.pokemon.example └── path.json.example ├── data ├── charged_moves.json ├── fast_moves.json ├── items.json ├── level_to_cpm.json ├── locales │ ├── de.json │ ├── fr.json │ ├── ja.json │ ├── pt_br.json │ ├── ru.json │ ├── zh_cn.json │ ├── zh_hk.json │ └── zh_tw.json ├── pokemon.json ├── pokemon_upgrade_cost.json ├── types.json └── xp_per_level.json ├── docker-compose.yml ├── docker-compose_tor.yml ├── docs ├── auto_restart.md ├── configuration_files.md ├── develop.md ├── faq.md ├── google_map.md ├── installation.md ├── manual_installation.md ├── plugins.md ├── pokemon_iv.md └── pokemon_optimizer.md ├── json-validate.py ├── map-chat ├── .gitignore ├── favicons │ ├── android-chrome-36x36.png │ ├── android-chrome-48x48.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ └── mstile-70x70.png ├── images │ ├── blue_marker.png │ ├── grey_marker.png │ ├── p │ │ ├── 001.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 01.png │ │ ├── 010.png │ │ ├── 0100.png │ │ ├── 0101.png │ │ ├── 0102.png │ │ ├── 0103.png │ │ ├── 0104.png │ │ ├── 0105.png │ │ ├── 0106.png │ │ ├── 0107.png │ │ ├── 0108.png │ │ ├── 0109.png │ │ ├── 011.png │ │ ├── 0110.png │ │ ├── 0111.png │ │ ├── 0112.png │ │ ├── 0113.png │ │ ├── 0114.png │ │ ├── 0115.png │ │ ├── 0116.png │ │ ├── 0117.png │ │ ├── 0118.png │ │ ├── 0119.png │ │ ├── 012.png │ │ ├── 0120.png │ │ ├── 0121.png │ │ ├── 0122.png │ │ ├── 0123.png │ │ ├── 0124.png │ │ ├── 0125.png │ │ ├── 0126.png │ │ ├── 0127.png │ │ ├── 0128.png │ │ ├── 0129.png │ │ ├── 013.png │ │ ├── 0130.png │ │ ├── 0131.png │ │ ├── 0132.png │ │ ├── 0133.png │ │ ├── 0134.png │ │ ├── 0135.png │ │ ├── 0136.png │ │ ├── 0137.png │ │ ├── 0138.png │ │ ├── 0139.png │ │ ├── 014.png │ │ ├── 0140.png │ │ ├── 0141.png │ │ ├── 0142.png │ │ ├── 0143.png │ │ ├── 0144.png │ │ ├── 0145.png │ │ ├── 0146.png │ │ ├── 0147.png │ │ ├── 0148.png │ │ ├── 0149.png │ │ ├── 015.png │ │ ├── 0150.png │ │ ├── 0151.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 02.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ ├── 025.png │ │ ├── 026.png │ │ ├── 027.png │ │ ├── 028.png │ │ ├── 029.png │ │ ├── 03.png │ │ ├── 030.png │ │ ├── 031.png │ │ ├── 032.png │ │ ├── 033.png │ │ ├── 034.png │ │ ├── 035.png │ │ ├── 036.png │ │ ├── 037.png │ │ ├── 038.png │ │ ├── 039.png │ │ ├── 04.png │ │ ├── 040.png │ │ ├── 041.png │ │ ├── 042.png │ │ ├── 043.png │ │ ├── 044.png │ │ ├── 045.png │ │ ├── 046.png │ │ ├── 047.png │ │ ├── 048.png │ │ ├── 049.png │ │ ├── 05.png │ │ ├── 050.png │ │ ├── 051.png │ │ ├── 052.png │ │ ├── 053.png │ │ ├── 054.png │ │ ├── 055.png │ │ ├── 056.png │ │ ├── 057.png │ │ ├── 058.png │ │ ├── 059.png │ │ ├── 06.png │ │ ├── 060.png │ │ ├── 061.png │ │ ├── 062.png │ │ ├── 063.png │ │ ├── 064.png │ │ ├── 065.png │ │ ├── 066.png │ │ ├── 067.png │ │ ├── 068.png │ │ ├── 069.png │ │ ├── 07.png │ │ ├── 070.png │ │ ├── 071.png │ │ ├── 072.png │ │ ├── 073.png │ │ ├── 074.png │ │ ├── 075.png │ │ ├── 076.png │ │ ├── 077.png │ │ ├── 078.png │ │ ├── 079.png │ │ ├── 08.png │ │ ├── 080.png │ │ ├── 081.png │ │ ├── 082.png │ │ ├── 083.png │ │ ├── 084.png │ │ ├── 085.png │ │ ├── 086.png │ │ ├── 087.png │ │ ├── 088.png │ │ ├── 089.png │ │ ├── 09.png │ │ ├── 090.png │ │ ├── 091.png │ │ ├── 092.png │ │ ├── 093.png │ │ ├── 094.png │ │ ├── 095.png │ │ ├── 096.png │ │ ├── 097.png │ │ ├── 098.png │ │ ├── 099.png │ │ ├── 0undefined.png │ │ ├── 100.png │ │ ├── 101.png │ │ ├── 102.png │ │ ├── 103.png │ │ ├── 104.png │ │ ├── 105.png │ │ ├── 106.png │ │ ├── 107.png │ │ ├── 108.png │ │ ├── 109.png │ │ ├── 110.png │ │ ├── 111.png │ │ ├── 112.png │ │ ├── 113.png │ │ ├── 114.png │ │ ├── 115.png │ │ ├── 116.png │ │ ├── 117.png │ │ ├── 118.png │ │ ├── 119.png │ │ ├── 120.png │ │ ├── 121.png │ │ ├── 122.png │ │ ├── 123.png │ │ ├── 124.png │ │ ├── 125.png │ │ ├── 126.png │ │ ├── 127.png │ │ ├── 128.png │ │ ├── 129.png │ │ ├── 130.png │ │ ├── 131.png │ │ ├── 132.png │ │ ├── 133.png │ │ ├── 134.png │ │ ├── 135.png │ │ ├── 136.png │ │ ├── 137.png │ │ ├── 138.png │ │ ├── 139.png │ │ ├── 140.png │ │ ├── 141.png │ │ ├── 142.png │ │ ├── 143.png │ │ ├── 144.png │ │ ├── 145.png │ │ ├── 146.png │ │ ├── 147.png │ │ ├── 148.png │ │ ├── 149.png │ │ ├── 150.png │ │ └── 151.png │ └── twitter_icon_small.png ├── index.html ├── javascript │ ├── browserMqtt.js │ ├── html-sanitizer-minified.js │ ├── main.js │ ├── map.js │ └── modernizr.custom.js ├── map-chat.png └── stylesheets │ └── main.css ├── pokecli.py ├── pokemongo_bot ├── __init__.py ├── api_wrapper.py ├── base_dir.py ├── base_task.py ├── cell_workers │ ├── __init__.py │ ├── camp_fort.py │ ├── catch_pokemon.py │ ├── collect_level_up_reward.py │ ├── complete_tutorial.py │ ├── evolve_pokemon.py │ ├── follow_cluster.py │ ├── follow_path.py │ ├── follow_spiral.py │ ├── handle_soft_ban.py │ ├── incubate_eggs.py │ ├── migrations │ │ ├── catch_log.py │ │ ├── eggs_hatched_log.py │ │ ├── evolve_log.py │ │ ├── pokestop_log.py │ │ ├── softban_log.py │ │ ├── transfer_log.py │ │ └── vanish_log.py │ ├── move_to_fort.py │ ├── move_to_map_pokemon.py │ ├── nickname_pokemon.py │ ├── pokemon_catch_worker.py │ ├── pokemon_optimizer.py │ ├── random_alive_pause.py │ ├── random_pause.py │ ├── recycle_items.py │ ├── show_best_pokemon.py │ ├── spin_fort.py │ ├── telegram_task.py │ ├── transfer_pokemon.py │ ├── update_live_inventory.py │ ├── update_live_stats.py │ ├── update_web_inventory.py │ ├── use_incense.py │ └── utils.py ├── constants.py ├── datastore.py ├── event_handlers │ ├── __init__.py │ ├── colored_logging_handler.py │ ├── logging_handler.py │ ├── social_handler.py │ ├── socketio_handler.py │ └── telegram_handler.py ├── event_manager.py ├── health_record │ ├── __init__.py │ └── bot_event.py ├── human_behaviour.py ├── inventory.py ├── item_list.py ├── lcd.py ├── logger.py ├── metrics.py ├── migrations │ └── pokemongobot.py ├── plugin_loader.py ├── plugins │ └── .keep ├── services │ ├── __init__.py │ └── item_recycle_worker.py ├── sleep_schedule.py ├── socketio_server │ ├── __init__.py │ ├── app.py │ └── runner.py ├── test │ ├── __init__.py │ ├── follow_cluster_test.py │ ├── incubate_eggs_test.py │ ├── log_interval_test.py │ ├── plugin_loader_test.py │ ├── polyline_generator_test.py │ ├── resources │ │ ├── __init__.py │ │ ├── empty_directions.pickle │ │ ├── example_directions.pickle │ │ ├── example_elevations.pickle │ │ ├── example_forts.pickle │ │ ├── plugin_fixture │ │ │ ├── __init__.py │ │ │ ├── fake_task.py │ │ │ └── unsupported_api_task.py │ │ ├── plugin_fixture_test.zip │ │ ├── plugin_sha │ │ │ └── .sha │ │ └── test-pgo-plugin-2d54eddde33061be9b329efae0cfb9bd58842655.zip │ ├── sleep_schedule_test.py │ ├── socketio-client.py │ └── step_walker_test.py ├── tree_config_builder.py ├── walkers │ ├── __init__.py │ ├── polyline_generator.py │ ├── polyline_walker.py │ ├── step_walker.py │ └── walker_factory.py ├── websocket_remote_control.py └── worker_result.py ├── pylint-recursive.py ├── requirements.txt ├── run.sh ├── setup.sh ├── tests ├── __init__.py ├── api_wrapper_test.py ├── base_task_test.py ├── inventory_test.py ├── location_parser_test.py ├── nickname_test.py ├── tree_config_builder_test.py └── update_live_stats_test.py ├── windows_bat ├── PokemonGo-Bot-Configurator.bat ├── PokemonGo-Bot-Install.bat ├── PokemonGo-Bot-Start.bat ├── PokemonGo-Bot-StatusWebpage.url └── PokemonGo-Bot-Updater.bat └── ws_server.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mention-bot: -------------------------------------------------------------------------------- 1 | { 2 | "userBlacklist": ["tejado"] 3 | } 4 | -------------------------------------------------------------------------------- /.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/.pullapprove.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [MESSAGES CONTROL] 2 | disable=line-too-long, 3 | missing-docstring -------------------------------------------------------------------------------- /.styles.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/.styles.yapf -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python pokecli.py $EXTRA_ARGS 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/README.md -------------------------------------------------------------------------------- /configs/auth.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/auth.json.example -------------------------------------------------------------------------------- /configs/config.json.campfort.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/config.json.campfort.example -------------------------------------------------------------------------------- /configs/config.json.cluster.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/config.json.cluster.example -------------------------------------------------------------------------------- /configs/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/config.json.example -------------------------------------------------------------------------------- /configs/config.json.map.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/config.json.map.example -------------------------------------------------------------------------------- /configs/config.json.optimizer.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/config.json.optimizer.example -------------------------------------------------------------------------------- /configs/config.json.path.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/config.json.path.example -------------------------------------------------------------------------------- /configs/config.json.pokemon.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/config.json.pokemon.example -------------------------------------------------------------------------------- /configs/path.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/configs/path.json.example -------------------------------------------------------------------------------- /data/charged_moves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/charged_moves.json -------------------------------------------------------------------------------- /data/fast_moves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/fast_moves.json -------------------------------------------------------------------------------- /data/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/items.json -------------------------------------------------------------------------------- /data/level_to_cpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/level_to_cpm.json -------------------------------------------------------------------------------- /data/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/locales/de.json -------------------------------------------------------------------------------- /data/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/locales/fr.json -------------------------------------------------------------------------------- /data/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/locales/ja.json -------------------------------------------------------------------------------- /data/locales/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/locales/pt_br.json -------------------------------------------------------------------------------- /data/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/locales/ru.json -------------------------------------------------------------------------------- /data/locales/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/locales/zh_cn.json -------------------------------------------------------------------------------- /data/locales/zh_hk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/locales/zh_hk.json -------------------------------------------------------------------------------- /data/locales/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/locales/zh_tw.json -------------------------------------------------------------------------------- /data/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/pokemon.json -------------------------------------------------------------------------------- /data/pokemon_upgrade_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/pokemon_upgrade_cost.json -------------------------------------------------------------------------------- /data/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/types.json -------------------------------------------------------------------------------- /data/xp_per_level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/data/xp_per_level.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose_tor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docker-compose_tor.yml -------------------------------------------------------------------------------- /docs/auto_restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/auto_restart.md -------------------------------------------------------------------------------- /docs/configuration_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/configuration_files.md -------------------------------------------------------------------------------- /docs/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/develop.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/google_map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/google_map.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/manual_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/manual_installation.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/pokemon_iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/pokemon_iv.md -------------------------------------------------------------------------------- /docs/pokemon_optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/docs/pokemon_optimizer.md -------------------------------------------------------------------------------- /json-validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/json-validate.py -------------------------------------------------------------------------------- /map-chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/.gitignore -------------------------------------------------------------------------------- /map-chat/favicons/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/android-chrome-36x36.png -------------------------------------------------------------------------------- /map-chat/favicons/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/android-chrome-48x48.png -------------------------------------------------------------------------------- /map-chat/favicons/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/android-chrome-72x72.png -------------------------------------------------------------------------------- /map-chat/favicons/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/android-chrome-96x96.png -------------------------------------------------------------------------------- /map-chat/favicons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /map-chat/favicons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /map-chat/favicons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /map-chat/favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /map-chat/favicons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /map-chat/favicons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /map-chat/favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /map-chat/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /map-chat/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/browserconfig.xml -------------------------------------------------------------------------------- /map-chat/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /map-chat/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /map-chat/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /map-chat/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/favicon.ico -------------------------------------------------------------------------------- /map-chat/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/manifest.json -------------------------------------------------------------------------------- /map-chat/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /map-chat/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /map-chat/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /map-chat/images/blue_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/blue_marker.png -------------------------------------------------------------------------------- /map-chat/images/grey_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/grey_marker.png -------------------------------------------------------------------------------- /map-chat/images/p/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/001.png -------------------------------------------------------------------------------- /map-chat/images/p/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/002.png -------------------------------------------------------------------------------- /map-chat/images/p/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/003.png -------------------------------------------------------------------------------- /map-chat/images/p/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/004.png -------------------------------------------------------------------------------- /map-chat/images/p/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/005.png -------------------------------------------------------------------------------- /map-chat/images/p/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/006.png -------------------------------------------------------------------------------- /map-chat/images/p/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/007.png -------------------------------------------------------------------------------- /map-chat/images/p/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/008.png -------------------------------------------------------------------------------- /map-chat/images/p/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/009.png -------------------------------------------------------------------------------- /map-chat/images/p/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/01.png -------------------------------------------------------------------------------- /map-chat/images/p/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/010.png -------------------------------------------------------------------------------- /map-chat/images/p/0100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0100.png -------------------------------------------------------------------------------- /map-chat/images/p/0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0101.png -------------------------------------------------------------------------------- /map-chat/images/p/0102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0102.png -------------------------------------------------------------------------------- /map-chat/images/p/0103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0103.png -------------------------------------------------------------------------------- /map-chat/images/p/0104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0104.png -------------------------------------------------------------------------------- /map-chat/images/p/0105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0105.png -------------------------------------------------------------------------------- /map-chat/images/p/0106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0106.png -------------------------------------------------------------------------------- /map-chat/images/p/0107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0107.png -------------------------------------------------------------------------------- /map-chat/images/p/0108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0108.png -------------------------------------------------------------------------------- /map-chat/images/p/0109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0109.png -------------------------------------------------------------------------------- /map-chat/images/p/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/011.png -------------------------------------------------------------------------------- /map-chat/images/p/0110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0110.png -------------------------------------------------------------------------------- /map-chat/images/p/0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0111.png -------------------------------------------------------------------------------- /map-chat/images/p/0112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0112.png -------------------------------------------------------------------------------- /map-chat/images/p/0113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0113.png -------------------------------------------------------------------------------- /map-chat/images/p/0114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0114.png -------------------------------------------------------------------------------- /map-chat/images/p/0115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0115.png -------------------------------------------------------------------------------- /map-chat/images/p/0116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0116.png -------------------------------------------------------------------------------- /map-chat/images/p/0117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0117.png -------------------------------------------------------------------------------- /map-chat/images/p/0118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0118.png -------------------------------------------------------------------------------- /map-chat/images/p/0119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0119.png -------------------------------------------------------------------------------- /map-chat/images/p/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/012.png -------------------------------------------------------------------------------- /map-chat/images/p/0120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0120.png -------------------------------------------------------------------------------- /map-chat/images/p/0121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0121.png -------------------------------------------------------------------------------- /map-chat/images/p/0122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0122.png -------------------------------------------------------------------------------- /map-chat/images/p/0123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0123.png -------------------------------------------------------------------------------- /map-chat/images/p/0124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0124.png -------------------------------------------------------------------------------- /map-chat/images/p/0125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0125.png -------------------------------------------------------------------------------- /map-chat/images/p/0126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0126.png -------------------------------------------------------------------------------- /map-chat/images/p/0127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0127.png -------------------------------------------------------------------------------- /map-chat/images/p/0128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0128.png -------------------------------------------------------------------------------- /map-chat/images/p/0129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0129.png -------------------------------------------------------------------------------- /map-chat/images/p/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/013.png -------------------------------------------------------------------------------- /map-chat/images/p/0130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0130.png -------------------------------------------------------------------------------- /map-chat/images/p/0131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0131.png -------------------------------------------------------------------------------- /map-chat/images/p/0132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0132.png -------------------------------------------------------------------------------- /map-chat/images/p/0133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0133.png -------------------------------------------------------------------------------- /map-chat/images/p/0134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0134.png -------------------------------------------------------------------------------- /map-chat/images/p/0135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0135.png -------------------------------------------------------------------------------- /map-chat/images/p/0136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0136.png -------------------------------------------------------------------------------- /map-chat/images/p/0137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0137.png -------------------------------------------------------------------------------- /map-chat/images/p/0138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0138.png -------------------------------------------------------------------------------- /map-chat/images/p/0139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0139.png -------------------------------------------------------------------------------- /map-chat/images/p/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/014.png -------------------------------------------------------------------------------- /map-chat/images/p/0140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0140.png -------------------------------------------------------------------------------- /map-chat/images/p/0141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0141.png -------------------------------------------------------------------------------- /map-chat/images/p/0142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0142.png -------------------------------------------------------------------------------- /map-chat/images/p/0143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0143.png -------------------------------------------------------------------------------- /map-chat/images/p/0144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0144.png -------------------------------------------------------------------------------- /map-chat/images/p/0145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0145.png -------------------------------------------------------------------------------- /map-chat/images/p/0146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0146.png -------------------------------------------------------------------------------- /map-chat/images/p/0147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0147.png -------------------------------------------------------------------------------- /map-chat/images/p/0148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0148.png -------------------------------------------------------------------------------- /map-chat/images/p/0149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0149.png -------------------------------------------------------------------------------- /map-chat/images/p/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/015.png -------------------------------------------------------------------------------- /map-chat/images/p/0150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0150.png -------------------------------------------------------------------------------- /map-chat/images/p/0151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0151.png -------------------------------------------------------------------------------- /map-chat/images/p/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/016.png -------------------------------------------------------------------------------- /map-chat/images/p/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/017.png -------------------------------------------------------------------------------- /map-chat/images/p/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/018.png -------------------------------------------------------------------------------- /map-chat/images/p/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/019.png -------------------------------------------------------------------------------- /map-chat/images/p/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/02.png -------------------------------------------------------------------------------- /map-chat/images/p/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/020.png -------------------------------------------------------------------------------- /map-chat/images/p/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/021.png -------------------------------------------------------------------------------- /map-chat/images/p/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/022.png -------------------------------------------------------------------------------- /map-chat/images/p/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/023.png -------------------------------------------------------------------------------- /map-chat/images/p/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/024.png -------------------------------------------------------------------------------- /map-chat/images/p/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/025.png -------------------------------------------------------------------------------- /map-chat/images/p/026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/026.png -------------------------------------------------------------------------------- /map-chat/images/p/027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/027.png -------------------------------------------------------------------------------- /map-chat/images/p/028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/028.png -------------------------------------------------------------------------------- /map-chat/images/p/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/029.png -------------------------------------------------------------------------------- /map-chat/images/p/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/03.png -------------------------------------------------------------------------------- /map-chat/images/p/030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/030.png -------------------------------------------------------------------------------- /map-chat/images/p/031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/031.png -------------------------------------------------------------------------------- /map-chat/images/p/032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/032.png -------------------------------------------------------------------------------- /map-chat/images/p/033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/033.png -------------------------------------------------------------------------------- /map-chat/images/p/034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/034.png -------------------------------------------------------------------------------- /map-chat/images/p/035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/035.png -------------------------------------------------------------------------------- /map-chat/images/p/036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/036.png -------------------------------------------------------------------------------- /map-chat/images/p/037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/037.png -------------------------------------------------------------------------------- /map-chat/images/p/038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/038.png -------------------------------------------------------------------------------- /map-chat/images/p/039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/039.png -------------------------------------------------------------------------------- /map-chat/images/p/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/04.png -------------------------------------------------------------------------------- /map-chat/images/p/040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/040.png -------------------------------------------------------------------------------- /map-chat/images/p/041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/041.png -------------------------------------------------------------------------------- /map-chat/images/p/042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/042.png -------------------------------------------------------------------------------- /map-chat/images/p/043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/043.png -------------------------------------------------------------------------------- /map-chat/images/p/044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/044.png -------------------------------------------------------------------------------- /map-chat/images/p/045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/045.png -------------------------------------------------------------------------------- /map-chat/images/p/046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/046.png -------------------------------------------------------------------------------- /map-chat/images/p/047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/047.png -------------------------------------------------------------------------------- /map-chat/images/p/048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/048.png -------------------------------------------------------------------------------- /map-chat/images/p/049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/049.png -------------------------------------------------------------------------------- /map-chat/images/p/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/05.png -------------------------------------------------------------------------------- /map-chat/images/p/050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/050.png -------------------------------------------------------------------------------- /map-chat/images/p/051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/051.png -------------------------------------------------------------------------------- /map-chat/images/p/052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/052.png -------------------------------------------------------------------------------- /map-chat/images/p/053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/053.png -------------------------------------------------------------------------------- /map-chat/images/p/054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/054.png -------------------------------------------------------------------------------- /map-chat/images/p/055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/055.png -------------------------------------------------------------------------------- /map-chat/images/p/056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/056.png -------------------------------------------------------------------------------- /map-chat/images/p/057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/057.png -------------------------------------------------------------------------------- /map-chat/images/p/058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/058.png -------------------------------------------------------------------------------- /map-chat/images/p/059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/059.png -------------------------------------------------------------------------------- /map-chat/images/p/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/06.png -------------------------------------------------------------------------------- /map-chat/images/p/060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/060.png -------------------------------------------------------------------------------- /map-chat/images/p/061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/061.png -------------------------------------------------------------------------------- /map-chat/images/p/062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/062.png -------------------------------------------------------------------------------- /map-chat/images/p/063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/063.png -------------------------------------------------------------------------------- /map-chat/images/p/064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/064.png -------------------------------------------------------------------------------- /map-chat/images/p/065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/065.png -------------------------------------------------------------------------------- /map-chat/images/p/066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/066.png -------------------------------------------------------------------------------- /map-chat/images/p/067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/067.png -------------------------------------------------------------------------------- /map-chat/images/p/068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/068.png -------------------------------------------------------------------------------- /map-chat/images/p/069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/069.png -------------------------------------------------------------------------------- /map-chat/images/p/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/07.png -------------------------------------------------------------------------------- /map-chat/images/p/070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/070.png -------------------------------------------------------------------------------- /map-chat/images/p/071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/071.png -------------------------------------------------------------------------------- /map-chat/images/p/072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/072.png -------------------------------------------------------------------------------- /map-chat/images/p/073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/073.png -------------------------------------------------------------------------------- /map-chat/images/p/074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/074.png -------------------------------------------------------------------------------- /map-chat/images/p/075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/075.png -------------------------------------------------------------------------------- /map-chat/images/p/076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/076.png -------------------------------------------------------------------------------- /map-chat/images/p/077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/077.png -------------------------------------------------------------------------------- /map-chat/images/p/078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/078.png -------------------------------------------------------------------------------- /map-chat/images/p/079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/079.png -------------------------------------------------------------------------------- /map-chat/images/p/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/08.png -------------------------------------------------------------------------------- /map-chat/images/p/080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/080.png -------------------------------------------------------------------------------- /map-chat/images/p/081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/081.png -------------------------------------------------------------------------------- /map-chat/images/p/082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/082.png -------------------------------------------------------------------------------- /map-chat/images/p/083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/083.png -------------------------------------------------------------------------------- /map-chat/images/p/084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/084.png -------------------------------------------------------------------------------- /map-chat/images/p/085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/085.png -------------------------------------------------------------------------------- /map-chat/images/p/086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/086.png -------------------------------------------------------------------------------- /map-chat/images/p/087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/087.png -------------------------------------------------------------------------------- /map-chat/images/p/088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/088.png -------------------------------------------------------------------------------- /map-chat/images/p/089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/089.png -------------------------------------------------------------------------------- /map-chat/images/p/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/09.png -------------------------------------------------------------------------------- /map-chat/images/p/090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/090.png -------------------------------------------------------------------------------- /map-chat/images/p/091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/091.png -------------------------------------------------------------------------------- /map-chat/images/p/092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/092.png -------------------------------------------------------------------------------- /map-chat/images/p/093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/093.png -------------------------------------------------------------------------------- /map-chat/images/p/094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/094.png -------------------------------------------------------------------------------- /map-chat/images/p/095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/095.png -------------------------------------------------------------------------------- /map-chat/images/p/096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/096.png -------------------------------------------------------------------------------- /map-chat/images/p/097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/097.png -------------------------------------------------------------------------------- /map-chat/images/p/098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/098.png -------------------------------------------------------------------------------- /map-chat/images/p/099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/099.png -------------------------------------------------------------------------------- /map-chat/images/p/0undefined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/0undefined.png -------------------------------------------------------------------------------- /map-chat/images/p/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/100.png -------------------------------------------------------------------------------- /map-chat/images/p/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/101.png -------------------------------------------------------------------------------- /map-chat/images/p/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/102.png -------------------------------------------------------------------------------- /map-chat/images/p/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/103.png -------------------------------------------------------------------------------- /map-chat/images/p/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/104.png -------------------------------------------------------------------------------- /map-chat/images/p/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/105.png -------------------------------------------------------------------------------- /map-chat/images/p/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/106.png -------------------------------------------------------------------------------- /map-chat/images/p/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/107.png -------------------------------------------------------------------------------- /map-chat/images/p/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/108.png -------------------------------------------------------------------------------- /map-chat/images/p/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/109.png -------------------------------------------------------------------------------- /map-chat/images/p/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/110.png -------------------------------------------------------------------------------- /map-chat/images/p/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/111.png -------------------------------------------------------------------------------- /map-chat/images/p/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/112.png -------------------------------------------------------------------------------- /map-chat/images/p/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/113.png -------------------------------------------------------------------------------- /map-chat/images/p/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/114.png -------------------------------------------------------------------------------- /map-chat/images/p/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/115.png -------------------------------------------------------------------------------- /map-chat/images/p/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/116.png -------------------------------------------------------------------------------- /map-chat/images/p/117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/117.png -------------------------------------------------------------------------------- /map-chat/images/p/118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/118.png -------------------------------------------------------------------------------- /map-chat/images/p/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/119.png -------------------------------------------------------------------------------- /map-chat/images/p/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/120.png -------------------------------------------------------------------------------- /map-chat/images/p/121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/121.png -------------------------------------------------------------------------------- /map-chat/images/p/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/122.png -------------------------------------------------------------------------------- /map-chat/images/p/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/123.png -------------------------------------------------------------------------------- /map-chat/images/p/124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/124.png -------------------------------------------------------------------------------- /map-chat/images/p/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/125.png -------------------------------------------------------------------------------- /map-chat/images/p/126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/126.png -------------------------------------------------------------------------------- /map-chat/images/p/127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/127.png -------------------------------------------------------------------------------- /map-chat/images/p/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/128.png -------------------------------------------------------------------------------- /map-chat/images/p/129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/129.png -------------------------------------------------------------------------------- /map-chat/images/p/130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/130.png -------------------------------------------------------------------------------- /map-chat/images/p/131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/131.png -------------------------------------------------------------------------------- /map-chat/images/p/132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/132.png -------------------------------------------------------------------------------- /map-chat/images/p/133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/133.png -------------------------------------------------------------------------------- /map-chat/images/p/134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/134.png -------------------------------------------------------------------------------- /map-chat/images/p/135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/135.png -------------------------------------------------------------------------------- /map-chat/images/p/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/136.png -------------------------------------------------------------------------------- /map-chat/images/p/137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/137.png -------------------------------------------------------------------------------- /map-chat/images/p/138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/138.png -------------------------------------------------------------------------------- /map-chat/images/p/139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/139.png -------------------------------------------------------------------------------- /map-chat/images/p/140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/140.png -------------------------------------------------------------------------------- /map-chat/images/p/141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/141.png -------------------------------------------------------------------------------- /map-chat/images/p/142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/142.png -------------------------------------------------------------------------------- /map-chat/images/p/143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/143.png -------------------------------------------------------------------------------- /map-chat/images/p/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/144.png -------------------------------------------------------------------------------- /map-chat/images/p/145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/145.png -------------------------------------------------------------------------------- /map-chat/images/p/146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/146.png -------------------------------------------------------------------------------- /map-chat/images/p/147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/147.png -------------------------------------------------------------------------------- /map-chat/images/p/148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/148.png -------------------------------------------------------------------------------- /map-chat/images/p/149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/149.png -------------------------------------------------------------------------------- /map-chat/images/p/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/150.png -------------------------------------------------------------------------------- /map-chat/images/p/151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/p/151.png -------------------------------------------------------------------------------- /map-chat/images/twitter_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/images/twitter_icon_small.png -------------------------------------------------------------------------------- /map-chat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/index.html -------------------------------------------------------------------------------- /map-chat/javascript/browserMqtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/javascript/browserMqtt.js -------------------------------------------------------------------------------- /map-chat/javascript/html-sanitizer-minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/javascript/html-sanitizer-minified.js -------------------------------------------------------------------------------- /map-chat/javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/javascript/main.js -------------------------------------------------------------------------------- /map-chat/javascript/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/javascript/map.js -------------------------------------------------------------------------------- /map-chat/javascript/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/javascript/modernizr.custom.js -------------------------------------------------------------------------------- /map-chat/map-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/map-chat.png -------------------------------------------------------------------------------- /map-chat/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/map-chat/stylesheets/main.css -------------------------------------------------------------------------------- /pokecli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokecli.py -------------------------------------------------------------------------------- /pokemongo_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/api_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/api_wrapper.py -------------------------------------------------------------------------------- /pokemongo_bot/base_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/base_dir.py -------------------------------------------------------------------------------- /pokemongo_bot/base_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/base_task.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/camp_fort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/camp_fort.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/catch_pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/catch_pokemon.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/collect_level_up_reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/collect_level_up_reward.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/complete_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/complete_tutorial.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/evolve_pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/evolve_pokemon.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/follow_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/follow_cluster.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/follow_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/follow_path.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/follow_spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/follow_spiral.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/handle_soft_ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/handle_soft_ban.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/incubate_eggs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/incubate_eggs.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/migrations/catch_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/migrations/catch_log.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/migrations/eggs_hatched_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/migrations/eggs_hatched_log.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/migrations/evolve_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/migrations/evolve_log.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/migrations/pokestop_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/migrations/pokestop_log.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/migrations/softban_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/migrations/softban_log.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/migrations/transfer_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/migrations/transfer_log.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/migrations/vanish_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/migrations/vanish_log.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/move_to_fort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/move_to_fort.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/move_to_map_pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/move_to_map_pokemon.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/nickname_pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/nickname_pokemon.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/pokemon_catch_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/pokemon_catch_worker.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/pokemon_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/pokemon_optimizer.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/random_alive_pause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/random_alive_pause.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/random_pause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/random_pause.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/recycle_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/recycle_items.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/show_best_pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/show_best_pokemon.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/spin_fort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/spin_fort.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/telegram_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/telegram_task.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/transfer_pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/transfer_pokemon.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/update_live_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/update_live_inventory.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/update_live_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/update_live_stats.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/update_web_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/update_web_inventory.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/use_incense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/use_incense.py -------------------------------------------------------------------------------- /pokemongo_bot/cell_workers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/cell_workers/utils.py -------------------------------------------------------------------------------- /pokemongo_bot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/constants.py -------------------------------------------------------------------------------- /pokemongo_bot/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/datastore.py -------------------------------------------------------------------------------- /pokemongo_bot/event_handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/event_handlers/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/event_handlers/colored_logging_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/event_handlers/colored_logging_handler.py -------------------------------------------------------------------------------- /pokemongo_bot/event_handlers/logging_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/event_handlers/logging_handler.py -------------------------------------------------------------------------------- /pokemongo_bot/event_handlers/social_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/event_handlers/social_handler.py -------------------------------------------------------------------------------- /pokemongo_bot/event_handlers/socketio_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/event_handlers/socketio_handler.py -------------------------------------------------------------------------------- /pokemongo_bot/event_handlers/telegram_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/event_handlers/telegram_handler.py -------------------------------------------------------------------------------- /pokemongo_bot/event_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/event_manager.py -------------------------------------------------------------------------------- /pokemongo_bot/health_record/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/health_record/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/health_record/bot_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/health_record/bot_event.py -------------------------------------------------------------------------------- /pokemongo_bot/human_behaviour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/human_behaviour.py -------------------------------------------------------------------------------- /pokemongo_bot/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/inventory.py -------------------------------------------------------------------------------- /pokemongo_bot/item_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/item_list.py -------------------------------------------------------------------------------- /pokemongo_bot/lcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/lcd.py -------------------------------------------------------------------------------- /pokemongo_bot/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/logger.py -------------------------------------------------------------------------------- /pokemongo_bot/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/metrics.py -------------------------------------------------------------------------------- /pokemongo_bot/migrations/pokemongobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/migrations/pokemongobot.py -------------------------------------------------------------------------------- /pokemongo_bot/plugin_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/plugin_loader.py -------------------------------------------------------------------------------- /pokemongo_bot/plugins/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/plugins/.keep -------------------------------------------------------------------------------- /pokemongo_bot/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokemongo_bot/services/item_recycle_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/services/item_recycle_worker.py -------------------------------------------------------------------------------- /pokemongo_bot/sleep_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/sleep_schedule.py -------------------------------------------------------------------------------- /pokemongo_bot/socketio_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokemongo_bot/socketio_server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/socketio_server/app.py -------------------------------------------------------------------------------- /pokemongo_bot/socketio_server/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/socketio_server/runner.py -------------------------------------------------------------------------------- /pokemongo_bot/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokemongo_bot/test/follow_cluster_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/follow_cluster_test.py -------------------------------------------------------------------------------- /pokemongo_bot/test/incubate_eggs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/incubate_eggs_test.py -------------------------------------------------------------------------------- /pokemongo_bot/test/log_interval_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/log_interval_test.py -------------------------------------------------------------------------------- /pokemongo_bot/test/plugin_loader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/plugin_loader_test.py -------------------------------------------------------------------------------- /pokemongo_bot/test/polyline_generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/polyline_generator_test.py -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/empty_directions.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/empty_directions.pickle -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/example_directions.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/example_directions.pickle -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/example_elevations.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/example_elevations.pickle -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/example_forts.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/example_forts.pickle -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/plugin_fixture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/plugin_fixture/__init__.py -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/plugin_fixture/fake_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/plugin_fixture/fake_task.py -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/plugin_fixture/unsupported_api_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/plugin_fixture/unsupported_api_task.py -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/plugin_fixture_test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/plugin_fixture_test.zip -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/plugin_sha/.sha: -------------------------------------------------------------------------------- 1 | my-version 2 | -------------------------------------------------------------------------------- /pokemongo_bot/test/resources/test-pgo-plugin-2d54eddde33061be9b329efae0cfb9bd58842655.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/resources/test-pgo-plugin-2d54eddde33061be9b329efae0cfb9bd58842655.zip -------------------------------------------------------------------------------- /pokemongo_bot/test/sleep_schedule_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/sleep_schedule_test.py -------------------------------------------------------------------------------- /pokemongo_bot/test/socketio-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/socketio-client.py -------------------------------------------------------------------------------- /pokemongo_bot/test/step_walker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/test/step_walker_test.py -------------------------------------------------------------------------------- /pokemongo_bot/tree_config_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/tree_config_builder.py -------------------------------------------------------------------------------- /pokemongo_bot/walkers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokemongo_bot/walkers/polyline_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/walkers/polyline_generator.py -------------------------------------------------------------------------------- /pokemongo_bot/walkers/polyline_walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/walkers/polyline_walker.py -------------------------------------------------------------------------------- /pokemongo_bot/walkers/step_walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/walkers/step_walker.py -------------------------------------------------------------------------------- /pokemongo_bot/walkers/walker_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/walkers/walker_factory.py -------------------------------------------------------------------------------- /pokemongo_bot/websocket_remote_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/websocket_remote_control.py -------------------------------------------------------------------------------- /pokemongo_bot/worker_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pokemongo_bot/worker_result.py -------------------------------------------------------------------------------- /pylint-recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/pylint-recursive.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/run.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/setup.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/api_wrapper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/tests/api_wrapper_test.py -------------------------------------------------------------------------------- /tests/base_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/tests/base_task_test.py -------------------------------------------------------------------------------- /tests/inventory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/tests/inventory_test.py -------------------------------------------------------------------------------- /tests/location_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/tests/location_parser_test.py -------------------------------------------------------------------------------- /tests/nickname_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/tests/nickname_test.py -------------------------------------------------------------------------------- /tests/tree_config_builder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/tests/tree_config_builder_test.py -------------------------------------------------------------------------------- /tests/update_live_stats_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/tests/update_live_stats_test.py -------------------------------------------------------------------------------- /windows_bat/PokemonGo-Bot-Configurator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/windows_bat/PokemonGo-Bot-Configurator.bat -------------------------------------------------------------------------------- /windows_bat/PokemonGo-Bot-Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/windows_bat/PokemonGo-Bot-Install.bat -------------------------------------------------------------------------------- /windows_bat/PokemonGo-Bot-Start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/windows_bat/PokemonGo-Bot-Start.bat -------------------------------------------------------------------------------- /windows_bat/PokemonGo-Bot-StatusWebpage.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/windows_bat/PokemonGo-Bot-StatusWebpage.url -------------------------------------------------------------------------------- /windows_bat/PokemonGo-Bot-Updater.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/windows_bat/PokemonGo-Bot-Updater.bat -------------------------------------------------------------------------------- /ws_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PokemonGoF/PokemonGo-Bot-Backup/HEAD/ws_server.py --------------------------------------------------------------------------------