├── .gitignore ├── API_version.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── Source ├── Catchem.sln ├── Catchem.sln.DotSettings ├── Catchem │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Catchem.csproj │ ├── Classes │ │ ├── Adb.cs │ │ ├── BotRpcMessage.cs │ │ ├── BotWindowData.cs │ │ ├── CatchemNotified.cs │ │ ├── CatchemSettings.cs │ │ ├── ItemUiData.cs │ │ ├── NewMapObject.cs │ │ ├── PokemonUiData.cs │ │ ├── Telegram.cs │ │ ├── TelegramSettings.cs │ │ ├── WpfEventListener.cs │ │ └── WpfLogger.cs │ ├── Config │ │ └── Translations │ │ │ ├── translation.da.json │ │ │ ├── translation.de.json │ │ │ ├── translation.en.json │ │ │ ├── translation.es.json │ │ │ ├── translation.et.json │ │ │ ├── translation.fi.json │ │ │ ├── translation.fr.json │ │ │ ├── translation.gr.json │ │ │ ├── translation.hu.json │ │ │ ├── translation.id.json │ │ │ ├── translation.it.json │ │ │ ├── translation.kr.json │ │ │ ├── translation.nl.json │ │ │ ├── translation.no.json │ │ │ ├── translation.pl.json │ │ │ ├── translation.pt-br.json │ │ │ ├── translation.pt-pt.json │ │ │ ├── translation.ru_RU.json │ │ │ ├── translation.sv.json │ │ │ ├── translation.th.json │ │ │ ├── translation.tr.json │ │ │ ├── translation.uk_UA.json │ │ │ ├── translation.vi.json │ │ │ ├── translation.zh_CN.json │ │ │ └── translation.zh_tw.json │ ├── Controllers │ │ ├── Schedule.xaml │ │ ├── Schedule.xaml.cs │ │ ├── ScheduleActionEditor.xaml │ │ ├── ScheduleActionEditor.xaml.cs │ │ ├── UsedItemProgres.xaml │ │ └── UsedItemProgres.xaml.cs │ ├── Events │ │ ├── TelegramCaptchaRequiredEvent.cs │ │ ├── TelegramCommandEvent.cs │ │ ├── TelegramMessageEvent.cs │ │ ├── TelegramPlayerLevelUpEvent.cs │ │ └── TelegramPokemonCaughtEvent.cs │ ├── Extensions │ │ ├── AsyncHelpers.cs │ │ ├── Converters.cs │ │ ├── Extensions.cs │ │ ├── GifImage.cs │ │ ├── ImageExtensins.cs │ │ ├── PlayerMovement.cs │ │ ├── RichTextBoxExtensions.cs │ │ ├── ThreadSafeCollection.cs │ │ └── UiHandlers.cs │ ├── FodyWeavers.xml │ ├── Helpers │ │ ├── HeatMapHelper.cs │ │ └── IpAddress.cs │ ├── Interfaces │ │ └── IBotPage.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowHelpers │ │ ├── DebugHelper.cs │ │ ├── RpcHelper.cs │ │ └── SelfIntegrity.cs │ ├── Pages │ │ ├── AccountSettingsTab.xaml │ │ ├── AccountSettingsTab.xaml.cs │ │ ├── GlobalMapPage.xaml │ │ ├── GlobalMapPage.xaml.cs │ │ ├── MapPage.xaml │ │ ├── MapPage.xaml.cs │ │ ├── PlayerPage.xaml │ │ ├── PlayerPage.xaml.cs │ │ ├── PokePage.xaml │ │ ├── PokePage.xaml.cs │ │ ├── PokedexPage.xaml │ │ ├── PokedexPage.xaml.cs │ │ ├── PokemonListPage.xaml │ │ ├── PokemonListPage.xaml.cs │ │ ├── RouteCreatorPage.xaml │ │ ├── RouteCreatorPage.xaml.cs │ │ ├── SettingsPage.xaml │ │ ├── SettingsPage.xaml.cs │ │ ├── TelegramPage.xaml │ │ ├── TelegramPage.xaml.cs │ │ ├── TemplateEditor.xaml │ │ └── TemplateEditor.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── 001_inv.png │ │ ├── 002_inv.png │ │ ├── 003_inv.png │ │ ├── 004_inv.png │ │ ├── 005_inv.png │ │ ├── 006_inv.png │ │ ├── 007_inv.png │ │ ├── 008_inv.png │ │ ├── 009_inv.png │ │ ├── 010_inv.png │ │ ├── 011_inv.png │ │ ├── 012_inv.png │ │ ├── 013_inv.png │ │ ├── 014_inv.png │ │ ├── 015_inv.png │ │ ├── 016_inv.png │ │ ├── 017_inv.png │ │ ├── 018_inv.png │ │ ├── 019_inv.png │ │ ├── 020_inv.png │ │ ├── 021_inv.png │ │ ├── 022_inv.png │ │ ├── 023_inv.png │ │ ├── 024_inv.png │ │ ├── 025_inv.png │ │ ├── 026_inv.png │ │ ├── 027_inv.png │ │ ├── 028_inv.png │ │ ├── 029_inv.png │ │ ├── 030_inv.png │ │ ├── 031_inv.png │ │ ├── 032_inv.png │ │ ├── 033_inv.png │ │ ├── 034_inv.png │ │ ├── 035_inv.png │ │ ├── 036_inv.png │ │ ├── 037_inv.png │ │ ├── 038_inv.png │ │ ├── 039_inv.png │ │ ├── 040_inv.png │ │ ├── 041_inv.png │ │ ├── 042_inv.png │ │ ├── 043_inv.png │ │ ├── 044_inv.png │ │ ├── 045_inv.png │ │ ├── 046_inv.png │ │ ├── 047_inv.png │ │ ├── 048_inv.png │ │ ├── 049_inv.png │ │ ├── 050_inv.png │ │ ├── 051_inv.png │ │ ├── 052_inv.png │ │ ├── 053_inv.png │ │ ├── 054_inv.png │ │ ├── 055_inv.png │ │ ├── 056_inv.png │ │ ├── 057_inv.png │ │ ├── 058_inv.png │ │ ├── 059_inv.png │ │ ├── 060_inv.png │ │ ├── 061_inv.png │ │ ├── 062_inv.png │ │ ├── 063_inv.png │ │ ├── 064_inv.png │ │ ├── 065_inv.png │ │ ├── 066_inv.png │ │ ├── 067_inv.png │ │ ├── 068_inv.png │ │ ├── 069_inv.png │ │ ├── 070_inv.png │ │ ├── 071_inv.png │ │ ├── 072_inv.png │ │ ├── 073_inv.png │ │ ├── 074_inv.png │ │ ├── 075_inv.png │ │ ├── 076_inv.png │ │ ├── 077_inv.png │ │ ├── 078_inv.png │ │ ├── 079_inv.png │ │ ├── 080_inv.png │ │ ├── 081_inv.png │ │ ├── 082_inv.png │ │ ├── 083_inv.png │ │ ├── 084_inv.png │ │ ├── 085_inv.png │ │ ├── 086_inv.png │ │ ├── 087_inv.png │ │ ├── 088_inv.png │ │ ├── 089_inv.png │ │ ├── 090_inv.png │ │ ├── 091_inv.png │ │ ├── 092_inv.png │ │ ├── 093_inv.png │ │ ├── 094_inv.png │ │ ├── 095_inv.png │ │ ├── 096_inv.png │ │ ├── 097_inv.png │ │ ├── 098_inv.png │ │ ├── 099_inv.png │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 100.png │ │ ├── 100_inv.png │ │ ├── 101.png │ │ ├── 101_inv.png │ │ ├── 102.png │ │ ├── 102_inv.png │ │ ├── 103.png │ │ ├── 103_inv.png │ │ ├── 104.png │ │ ├── 104_inv.png │ │ ├── 105.png │ │ ├── 105_inv.png │ │ ├── 106.png │ │ ├── 106_inv.png │ │ ├── 107.png │ │ ├── 107_inv.png │ │ ├── 108.png │ │ ├── 108_inv.png │ │ ├── 109.png │ │ ├── 109_inv.png │ │ ├── 11.png │ │ ├── 110.png │ │ ├── 110_inv.png │ │ ├── 111.png │ │ ├── 111_inv.png │ │ ├── 112.png │ │ ├── 112_inv.png │ │ ├── 113.png │ │ ├── 113_inv.png │ │ ├── 114.png │ │ ├── 114_inv.png │ │ ├── 115.png │ │ ├── 115_inv.png │ │ ├── 116.png │ │ ├── 116_inv.png │ │ ├── 117.png │ │ ├── 117_inv.png │ │ ├── 118.png │ │ ├── 118_inv.png │ │ ├── 119.png │ │ ├── 119_inv.png │ │ ├── 12.png │ │ ├── 120.png │ │ ├── 120_inv.png │ │ ├── 121.png │ │ ├── 121_inv.png │ │ ├── 122.png │ │ ├── 122_inv.png │ │ ├── 123.png │ │ ├── 123_inv.png │ │ ├── 124.png │ │ ├── 124_inv.png │ │ ├── 125.png │ │ ├── 125_inv.png │ │ ├── 126.png │ │ ├── 126_inv.png │ │ ├── 127.png │ │ ├── 127_inv.png │ │ ├── 128.png │ │ ├── 128_inv.png │ │ ├── 129.png │ │ ├── 129_inv.png │ │ ├── 13.png │ │ ├── 130.png │ │ ├── 130_inv.png │ │ ├── 131.png │ │ ├── 131_inv.png │ │ ├── 132.png │ │ ├── 132_inv.png │ │ ├── 133.png │ │ ├── 133_inv.png │ │ ├── 134.png │ │ ├── 134_inv.png │ │ ├── 135.png │ │ ├── 135_inv.png │ │ ├── 136.png │ │ ├── 136_inv.png │ │ ├── 137.png │ │ ├── 137_inv.png │ │ ├── 138.png │ │ ├── 138_inv.png │ │ ├── 139.png │ │ ├── 139_inv.png │ │ ├── 14.png │ │ ├── 140.png │ │ ├── 140_inv.png │ │ ├── 141.png │ │ ├── 141_inv.png │ │ ├── 142.png │ │ ├── 142_inv.png │ │ ├── 143.png │ │ ├── 143_inv.png │ │ ├── 144.png │ │ ├── 144_inv.png │ │ ├── 145.png │ │ ├── 145_inv.png │ │ ├── 146.png │ │ ├── 146_inv.png │ │ ├── 147.png │ │ ├── 147_inv.png │ │ ├── 148.png │ │ ├── 148_inv.png │ │ ├── 149.png │ │ ├── 149_inv.png │ │ ├── 15.png │ │ ├── 150.png │ │ ├── 150_inv.png │ │ ├── 151.png │ │ ├── 151_inv.png │ │ ├── 152.png │ │ ├── 153.png │ │ ├── 154.png │ │ ├── 155.png │ │ ├── 156.png │ │ ├── 157.png │ │ ├── 158.png │ │ ├── 159.png │ │ ├── 16.png │ │ ├── 160.png │ │ ├── 161.png │ │ ├── 162.png │ │ ├── 163.png │ │ ├── 164.png │ │ ├── 165.png │ │ ├── 166.png │ │ ├── 167.png │ │ ├── 168.png │ │ ├── 169.png │ │ ├── 17.png │ │ ├── 170.png │ │ ├── 171.png │ │ ├── 172.png │ │ ├── 173.png │ │ ├── 174.png │ │ ├── 175.png │ │ ├── 176.png │ │ ├── 177.png │ │ ├── 178.png │ │ ├── 179.png │ │ ├── 18.png │ │ ├── 180.png │ │ ├── 181.png │ │ ├── 181m.png │ │ ├── 182.png │ │ ├── 183.png │ │ ├── 184.png │ │ ├── 185.png │ │ ├── 186.png │ │ ├── 187.png │ │ ├── 188.png │ │ ├── 189.png │ │ ├── 19.png │ │ ├── 190.png │ │ ├── 191.png │ │ ├── 192.png │ │ ├── 193.png │ │ ├── 194.png │ │ ├── 195.png │ │ ├── 196.png │ │ ├── 197.png │ │ ├── 198.png │ │ ├── 199.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 200.png │ │ ├── 201.png │ │ ├── 202.png │ │ ├── 203.png │ │ ├── 204.png │ │ ├── 205.png │ │ ├── 206.png │ │ ├── 207.png │ │ ├── 208.png │ │ ├── 208_f2.png │ │ ├── 209.png │ │ ├── 21.png │ │ ├── 210.png │ │ ├── 211.png │ │ ├── 212.png │ │ ├── 212_f2.png │ │ ├── 213.png │ │ ├── 214.png │ │ ├── 214_f2.png │ │ ├── 215.png │ │ ├── 216.png │ │ ├── 217.png │ │ ├── 218.png │ │ ├── 219.png │ │ ├── 22.png │ │ ├── 220.png │ │ ├── 221.png │ │ ├── 222.png │ │ ├── 223.png │ │ ├── 224.png │ │ ├── 225.png │ │ ├── 226.png │ │ ├── 227.png │ │ ├── 228.png │ │ ├── 229.png │ │ ├── 229m.png │ │ ├── 23.png │ │ ├── 230.png │ │ ├── 231.png │ │ ├── 232.png │ │ ├── 233.png │ │ ├── 234.png │ │ ├── 235.png │ │ ├── 236.png │ │ ├── 237.png │ │ ├── 238.jpg │ │ ├── 239.png │ │ ├── 24.png │ │ ├── 240.png │ │ ├── 241.png │ │ ├── 242.png │ │ ├── 243.png │ │ ├── 244.png │ │ ├── 245.png │ │ ├── 246.png │ │ ├── 247.png │ │ ├── 248.png │ │ ├── 248m.png │ │ ├── 249.png │ │ ├── 25.png │ │ ├── 250.png │ │ ├── 251.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 4.png │ │ ├── 40.png │ │ ├── 41.png │ │ ├── 42.png │ │ ├── 43.png │ │ ├── 44.png │ │ ├── 45.png │ │ ├── 46.png │ │ ├── 47.png │ │ ├── 48.png │ │ ├── 49.png │ │ ├── 5.png │ │ ├── 50.png │ │ ├── 51.png │ │ ├── 52.png │ │ ├── 53.png │ │ ├── 54.png │ │ ├── 55.png │ │ ├── 56.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 59.png │ │ ├── 6.png │ │ ├── 60.png │ │ ├── 61.png │ │ ├── 62.png │ │ ├── 63.png │ │ ├── 64.png │ │ ├── 65.png │ │ ├── 66.png │ │ ├── 67.png │ │ ├── 68.png │ │ ├── 69.png │ │ ├── 7.png │ │ ├── 70.png │ │ ├── 71.png │ │ ├── 72.png │ │ ├── 73.png │ │ ├── 74.png │ │ ├── 75.png │ │ ├── 76.png │ │ ├── 77.png │ │ ├── 78.png │ │ ├── 79.png │ │ ├── 8.png │ │ ├── 80.png │ │ ├── 81.png │ │ ├── 82.png │ │ ├── 83.png │ │ ├── 84.png │ │ ├── 85.png │ │ ├── 86.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 89.png │ │ ├── 9.png │ │ ├── 90.png │ │ ├── 91.png │ │ ├── 92.png │ │ ├── 93.png │ │ ├── 94.png │ │ ├── 95.png │ │ ├── 96.png │ │ ├── 97.png │ │ ├── 98.png │ │ ├── 99.png │ │ ├── Bug_inv.png │ │ ├── Dark_inv.png │ │ ├── Dragon_inv.png │ │ ├── Electric_inv.png │ │ ├── Fairy_inv.png │ │ ├── Fighting_inv.png │ │ ├── Fire_inv.png │ │ ├── Flying_inv.png │ │ ├── Ghost_inv.png │ │ ├── Grass_inv.png │ │ ├── Ground_inv.png │ │ ├── Ice_inv.png │ │ ├── Normal_inv.png │ │ ├── Poison_inv.png │ │ ├── Pokeball.png │ │ ├── Psychic_inv.png │ │ ├── Rock_inv.png │ │ ├── Steel_inv.png │ │ ├── Water_inv.png │ │ ├── adps.png │ │ ├── atk.png │ │ ├── bag_upgrade.png │ │ ├── berry_1.png │ │ ├── berry_2.png │ │ ├── berry_3.png │ │ ├── berry_4.png │ │ ├── berry_5.png │ │ ├── buddy.png │ │ ├── camera.png │ │ ├── candy.png │ │ ├── candy_white.png │ │ ├── def.png │ │ ├── dust.png │ │ ├── egg.png │ │ ├── favoured.png │ │ ├── favouredSort.png │ │ ├── force_move.png │ │ ├── gym.png │ │ ├── gym_blue.png │ │ ├── gym_red.png │ │ ├── gym_yellow.png │ │ ├── hp.png │ │ ├── ince.png │ │ ├── incubator-unlimited.png │ │ ├── incubator.png │ │ ├── jar_1.png │ │ ├── lucky_egg.png │ │ ├── lure_mod.png │ │ ├── maintence.png │ │ ├── no_name.png │ │ ├── pokeball_1.png │ │ ├── pokeball_2.png │ │ ├── pokeball_3.png │ │ ├── pokeball_4.png │ │ ├── potion_1.png │ │ ├── potion_2.png │ │ ├── potion_3.png │ │ ├── potion_4.png │ │ ├── pstop.png │ │ ├── pstop_lured.png │ │ ├── refresh.png │ │ ├── revive_1.png │ │ ├── revive_2.png │ │ ├── sta.png │ │ ├── team_instinct.png │ │ ├── team_mystic.png │ │ ├── team_neutral.png │ │ ├── team_valor.png │ │ ├── time.png │ │ ├── trainer.png │ │ ├── trainer_down.gif │ │ ├── trainer_left.gif │ │ ├── trainer_right.gif │ │ ├── trainer_stay.gif │ │ ├── trainer_top.gif │ │ ├── weight.png │ │ └── wp.png │ ├── Styling │ │ ├── ControlStyling.xaml │ │ ├── Styles.xaml │ │ ├── Styles.xaml.cs │ │ ├── Templates.xaml │ │ └── Templates.xaml.cs │ ├── SupportForms │ │ ├── ChallengeBox.xaml │ │ ├── ChallengeBox.xaml.cs │ │ ├── InputBox.xaml │ │ └── InputBox.xaml.cs │ ├── Theme.xaml │ ├── UiTranslation │ │ ├── TranslationEngine.cs │ │ ├── TranslationSerializer.cs │ │ └── UiTranslation.cs │ ├── adb │ │ ├── AdbWinApi.dll │ │ ├── AdbWinUsbApi.dll │ │ └── adb.exe │ ├── amd64 │ │ └── geckodriver.exe │ ├── packages.config │ └── unnamed.ico ├── GPSOAuthSharp │ ├── GPSOAuthSharp.cs │ ├── GPSOAuthSharp.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── POGOProtos │ ├── Data │ │ ├── AssetDigestEntry.cs │ │ ├── BackgroundToken.cs │ │ ├── Badge │ │ │ └── BadgeCaptureReward.cs │ │ ├── Battle │ │ │ ├── BattleAction.cs │ │ │ ├── BattleActionType.cs │ │ │ ├── BattleLog.cs │ │ │ ├── BattleParticipant.cs │ │ │ ├── BattlePokemonInfo.cs │ │ │ ├── BattleResults.cs │ │ │ ├── BattleState.cs │ │ │ ├── BattleType.cs │ │ │ └── POGOProtosDataBattle.cs │ │ ├── BuddyPokemon.cs │ │ ├── Capture │ │ │ ├── CaptureAward.cs │ │ │ ├── CaptureProbability.cs │ │ │ └── POGOProtosDataCapture.cs │ │ ├── ClientVersion.cs │ │ ├── DownloadUrlEntry.cs │ │ ├── Gym │ │ │ ├── GymMembership.cs │ │ │ ├── GymState.cs │ │ │ └── POGOProtosDataGym.cs │ │ ├── Logs │ │ │ ├── ActionLogEntry.cs │ │ │ ├── BuddyPokemonLogEntry.cs │ │ │ ├── CatchPokemonLogEntry.cs │ │ │ ├── FortSearchLogEntry.cs │ │ │ └── POGOProtosDataLogs.cs │ │ ├── POGOProtosData.cs │ │ ├── Player │ │ │ ├── ContactSettings.cs │ │ │ ├── Currency.cs │ │ │ ├── DailyBonus.cs │ │ │ ├── EquippedBadge.cs │ │ │ ├── POGOProtosDataPlayer.cs │ │ │ ├── PlayerAvatar.cs │ │ │ ├── PlayerCamera.cs │ │ │ ├── PlayerCurrency.cs │ │ │ ├── PlayerPublicProfile.cs │ │ │ └── PlayerStats.cs │ │ ├── PlayerBadge.cs │ │ ├── PlayerData.cs │ │ ├── PokedexEntry.cs │ │ ├── PokemonData.cs │ │ └── Quests │ │ │ ├── DailyQuest.cs │ │ │ └── Quest.cs │ ├── Enums │ │ ├── ActivityType.cs │ │ ├── BadgeType.cs │ │ ├── CameraInterpolation.cs │ │ ├── CameraTarget.cs │ │ ├── EncounterType.cs │ │ ├── Gender.cs │ │ ├── IapItemCategory.cs │ │ ├── ItemCategory.cs │ │ ├── ItemEffect.cs │ │ ├── POGOProtosEnums.cs │ │ ├── Platform.cs │ │ ├── PokemonFamilyId.cs │ │ ├── PokemonId.cs │ │ ├── PokemonMove.cs │ │ ├── PokemonMovementType.cs │ │ ├── PokemonRarity.cs │ │ ├── PokemonType.cs │ │ ├── QuestType.cs │ │ ├── TeamColor.cs │ │ └── TutorialState.cs │ ├── Inventory │ │ ├── AppliedItem.cs │ │ ├── AppliedItems.cs │ │ ├── Candy.cs │ │ ├── EggIncubator.cs │ │ ├── EggIncubatorType.cs │ │ ├── EggIncubators.cs │ │ ├── InventoryDelta.cs │ │ ├── InventoryItem.cs │ │ ├── InventoryItemData.cs │ │ ├── InventoryKey.cs │ │ ├── InventoryUpgrade.cs │ │ ├── InventoryUpgradeType.cs │ │ ├── InventoryUpgrades.cs │ │ ├── Item │ │ │ ├── ItemAward.cs │ │ │ ├── ItemData.cs │ │ │ ├── ItemId.cs │ │ │ ├── ItemType.cs │ │ │ └── POGOProtosInventoryItem.cs │ │ └── POGOProtosInventory.cs │ ├── Map │ │ ├── Fort │ │ │ ├── FortData.cs │ │ │ ├── FortLureInfo.cs │ │ │ ├── FortModifier.cs │ │ │ ├── FortRenderingType.cs │ │ │ ├── FortSponsor.cs │ │ │ ├── FortSummary.cs │ │ │ ├── FortType.cs │ │ │ └── POGOProtosMapFort.cs │ │ ├── MapCell.cs │ │ ├── MapObjectsStatus.cs │ │ ├── POGOProtosMap.cs │ │ ├── Pokemon │ │ │ ├── MapPokemon.cs │ │ │ ├── NearbyPokemon.cs │ │ │ ├── POGOProtosMapPokemon.cs │ │ │ └── WildPokemon.cs │ │ └── SpawnPoint.cs │ ├── Networking │ │ ├── Envelopes │ │ │ ├── AuthTicket.cs │ │ │ ├── POGOProtosNetworkingEnvelopes.cs │ │ │ ├── RequestEnvelope.cs │ │ │ ├── ResponseEnvelope.cs │ │ │ ├── Signature.cs │ │ │ ├── Unknown6.cs │ │ │ └── Unknown6Response.cs │ │ ├── Requests │ │ │ ├── Messages │ │ │ │ ├── AddFortModifierMessage.cs │ │ │ │ ├── AttackGymMessage.cs │ │ │ │ ├── CatchPokemonMessage.cs │ │ │ │ ├── CheckAwardedBadgesMessage.cs │ │ │ │ ├── CheckChallenge.cs │ │ │ │ ├── CheckCodenameAvailableMessage.cs │ │ │ │ ├── ClaimCodenameMessage.cs │ │ │ │ ├── CollectDailyBonusMessage.cs │ │ │ │ ├── CollectDailyDefenderBonusMessage.cs │ │ │ │ ├── DiskEncounterMessage.cs │ │ │ │ ├── DownloadItemTemplatesMessage.cs │ │ │ │ ├── DownloadRemoteConfigVersionMessage.cs │ │ │ │ ├── DownloadSettingsMessage.cs │ │ │ │ ├── EchoMessage.cs │ │ │ │ ├── EncounterMessage.cs │ │ │ │ ├── EncounterTutorialCompleteMessage.cs │ │ │ │ ├── EquipBadgeMessage.cs │ │ │ │ ├── EvolvePokemonMessage.cs │ │ │ │ ├── FortDeployPokemonMessage.cs │ │ │ │ ├── FortDetailsMessage.cs │ │ │ │ ├── FortRecallPokemonMessage.cs │ │ │ │ ├── FortSearchMessage.cs │ │ │ │ ├── GetAssetDigestMessage.cs │ │ │ │ ├── GetBuddyWalked.cs │ │ │ │ ├── GetDownloadUrlsMessage.cs │ │ │ │ ├── GetGymDetailsMessage.cs │ │ │ │ ├── GetHatchedEggsMessage.cs │ │ │ │ ├── GetIncensePokemonMessage.cs │ │ │ │ ├── GetInventoryMessage.cs │ │ │ │ ├── GetMapObjectsMessage.cs │ │ │ │ ├── GetPlayerMessage.cs │ │ │ │ ├── GetPlayerProfileMessage.cs │ │ │ │ ├── GetSuggestedCodenamesMessage.cs │ │ │ │ ├── IncenseEncounterMessage.cs │ │ │ │ ├── LevelUpRewardsMessage.cs │ │ │ │ ├── MarkTutorialCompleteMessage.cs │ │ │ │ ├── NicknamePokemonMessage.cs │ │ │ │ ├── POGOProtosNetworkingRequestsMessages.cs │ │ │ │ ├── PlayerUpdateMessage.cs │ │ │ │ ├── RecycleInventoryItemMessage.cs │ │ │ │ ├── RegisterBackgroundDeviceMessage.cs │ │ │ │ ├── ReleasePokemonMessage.cs │ │ │ │ ├── SetAvatarMessage.cs │ │ │ │ ├── SetBuddyPokemon.cs │ │ │ │ ├── SetContactSettingsMessage.cs │ │ │ │ ├── SetFavoritePokemonMessage.cs │ │ │ │ ├── SetPlayerTeamMessage.cs │ │ │ │ ├── SfidaActionLogMessage.cs │ │ │ │ ├── StartGymBattleMessage.cs │ │ │ │ ├── UpgradePokemonMessage.cs │ │ │ │ ├── UseIncenseMessage.cs │ │ │ │ ├── UseItemCaptureMessage.cs │ │ │ │ ├── UseItemEggIncubatorMessage.cs │ │ │ │ ├── UseItemGymMessage.cs │ │ │ │ ├── UseItemPotionMessage.cs │ │ │ │ ├── UseItemReviveMessage.cs │ │ │ │ ├── UseItemXpBoostMessage.cs │ │ │ │ └── VerifyChallenge.cs │ │ │ ├── POGOProtosNetworkingRequests.cs │ │ │ ├── Request.cs │ │ │ └── RequestType.cs │ │ ├── Responses │ │ │ ├── AddFortModifierResponse.cs │ │ │ ├── AttackGymResponse.cs │ │ │ ├── CatchPokemonResponse.cs │ │ │ ├── CheckAwardedBadgesResponse.cs │ │ │ ├── CheckChallengeResponse.cs │ │ │ ├── CheckCodenameAvailableResponse.cs │ │ │ ├── ClaimCodenameResponse.cs │ │ │ ├── CollectDailyBonusResponse.cs │ │ │ ├── CollectDailyDefenderBonusResponse.cs │ │ │ ├── DiskEncounterResponse.cs │ │ │ ├── DownloadItemTemplatesResponse.cs │ │ │ ├── DownloadRemoteConfigVersionResponse.cs │ │ │ ├── DownloadSettingsResponse.cs │ │ │ ├── EchoResponse.cs │ │ │ ├── EncounterResponse.cs │ │ │ ├── EncounterTutorialCompleteResponse.cs │ │ │ ├── EquipBadgeResponse.cs │ │ │ ├── EvolvePokemonResponse.cs │ │ │ ├── FortDeployPokemonResponse.cs │ │ │ ├── FortDetailsResponse.cs │ │ │ ├── FortRecallPokemonResponse.cs │ │ │ ├── FortSearchResponse.cs │ │ │ ├── GetAssetDigestResponse.cs │ │ │ ├── GetBuddyWalkedResponse.cs │ │ │ ├── GetDownloadUrlsResponse.cs │ │ │ ├── GetGymDetailsResponse.cs │ │ │ ├── GetHatchedEggsResponse.cs │ │ │ ├── GetIncensePokemonResponse.cs │ │ │ ├── GetInventoryResponse.cs │ │ │ ├── GetMapObjectsResponse.cs │ │ │ ├── GetPlayerProfileResponse.cs │ │ │ ├── GetPlayerResponse.cs │ │ │ ├── GetSuggestedCodenamesResponse.cs │ │ │ ├── IncenseEncounterResponse.cs │ │ │ ├── LevelUpRewardsResponse.cs │ │ │ ├── MarkTutorialCompleteResponse.cs │ │ │ ├── NicknamePokemonResponse.cs │ │ │ ├── POGOProtosNetworkingResponses.cs │ │ │ ├── PlayerUpdateResponse.cs │ │ │ ├── RecycleInventoryItemResponse.cs │ │ │ ├── RegisterBackgroundDeviceResponse.cs │ │ │ ├── ReleasePokemonResponse.cs │ │ │ ├── SetAvatarResponse.cs │ │ │ ├── SetBuddyPokemonResponse.cs │ │ │ ├── SetContactSettingsResponse.cs │ │ │ ├── SetFavoritePokemonResponse.cs │ │ │ ├── SetPlayerTeamResponse.cs │ │ │ ├── SfidaActionLogResponse.cs │ │ │ ├── StartGymBattleResponse.cs │ │ │ ├── UpgradePokemonResponse.cs │ │ │ ├── UseIncenseResponse.cs │ │ │ ├── UseItemCaptureResponse.cs │ │ │ ├── UseItemEggIncubatorResponse.cs │ │ │ ├── UseItemGymResponse.cs │ │ │ ├── UseItemPotionResponse.cs │ │ │ ├── UseItemReviveResponse.cs │ │ │ ├── UseItemXpBoostResponse.cs │ │ │ └── VerifyChallengeResponse.cs │ │ └── Signature │ │ │ └── POGOProtosNetworkingSignature.cs │ ├── POGOProtos.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings │ │ ├── DownloadSettingsAction.cs │ │ ├── EventSettings.cs │ │ ├── FestivalSettings.cs │ │ ├── FortSettings.cs │ │ ├── GlobalSettings.cs │ │ ├── GpsSettings.cs │ │ ├── InventorySettings.cs │ │ ├── LevelSettings.cs │ │ ├── MapSettings.cs │ │ ├── Master │ │ │ ├── BadgeSettings.cs │ │ │ ├── CameraSettings.cs │ │ │ ├── EncounterSettings.cs │ │ │ ├── EquippedBadgeSettings.cs │ │ │ ├── GymBattleSettings.cs │ │ │ ├── GymLevelSettings.cs │ │ │ ├── IapItemDisplay.cs │ │ │ ├── IapSettings.cs │ │ │ ├── Item │ │ │ │ ├── BattleAttributes.cs │ │ │ │ ├── EggIncubatorAttributes.cs │ │ │ │ ├── ExperienceBoostAttributes.cs │ │ │ │ ├── FoodAttributes.cs │ │ │ │ ├── FortModifierAttributes.cs │ │ │ │ ├── IncenseAttributes.cs │ │ │ │ ├── InventoryUpgradeAttributes.cs │ │ │ │ ├── POGOProtosSettingsMasterItem.cs │ │ │ │ ├── PokeballAttributes.cs │ │ │ │ ├── PotionAttributes.cs │ │ │ │ └── ReviveAttributes.cs │ │ │ ├── ItemSettings.cs │ │ │ ├── MoveSequenceSettings.cs │ │ │ ├── MoveSettings.cs │ │ │ ├── POGOProtosSettingsMaster.cs │ │ │ ├── PlayerLevelSettings.cs │ │ │ ├── Pokemon │ │ │ │ ├── CameraAttributes.cs │ │ │ │ ├── EncounterAttributes.cs │ │ │ │ ├── POGOProtosSettingsMasterPokemon.cs │ │ │ │ └── StatsAttributes.cs │ │ │ ├── PokemonSettings.cs │ │ │ ├── PokemonUpgradeSettings.cs │ │ │ ├── Quest │ │ │ │ └── DailyQuestSettings.cs │ │ │ ├── QuestSettings.cs │ │ │ └── TypeEffectiveSettings.cs │ │ ├── POGOProtosSettings.cs │ │ └── SfidaSettings.cs │ └── packages.config ├── PoGo.PokeMobBot.CLI │ ├── App.config │ ├── Config │ │ ├── Translations │ │ │ ├── translation.da.json │ │ │ ├── translation.de.json │ │ │ ├── translation.es.json │ │ │ ├── translation.et.json │ │ │ ├── translation.fr.json │ │ │ ├── translation.gr.json │ │ │ ├── translation.hu.json │ │ │ ├── translation.id.json │ │ │ ├── translation.it.json │ │ │ ├── translation.nl.json │ │ │ ├── translation.no.json │ │ │ ├── translation.pl.json │ │ │ ├── translation.pt-br.json │ │ │ ├── translation.pt-pt.json │ │ │ ├── translation.ru_RU.json │ │ │ ├── translation.sv.json │ │ │ ├── translation.th.json │ │ │ ├── translation.tr.json │ │ │ ├── translation.uk_UA.json │ │ │ ├── translation.zh_CN.json │ │ │ └── translation.zh_tw.json │ │ ├── log4net.config │ │ └── log4net.unix.config │ ├── ConsoleEventListener.cs │ ├── ConsoleLogger.cs │ ├── FodyWeavers.xml │ ├── Models │ │ ├── LoggingStrings.cs │ │ └── SocketMessage.cs │ ├── PoGo.PokeMobBot.CLI.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ └── Icon.ico │ ├── SimpleSession.cs │ ├── WebSocketInterface.cs │ ├── cert.pfx │ ├── packages.config │ ├── supersocket.cmd │ └── supersocket.sh ├── PoGo.PokeMobBot.Logic │ ├── API │ │ ├── GoogleRoute.cs │ │ ├── MapzenAPI.cs │ │ ├── MapzenRouting.cs │ │ └── OSMRoute.cs │ ├── Common │ │ ├── ApiFailureStrategy.cs │ │ └── Translations.cs │ ├── DataDumper │ │ ├── Dumper.cs │ │ └── IDumper.cs │ ├── DataStorage │ │ ├── BotContext.cs │ │ ├── DBHandler.cs │ │ └── DbClasses.cs │ ├── Enums │ │ └── MainRPC.cs │ ├── Event │ │ ├── Egg │ │ │ ├── EggFoundEvent.cs │ │ │ ├── EggHatchedEvent.cs │ │ │ ├── EggIncubatorStatusEvent.cs │ │ │ └── EggsListEvent.cs │ │ ├── EventDispatcher.cs │ │ ├── Fort │ │ │ ├── FortFailedEvent.cs │ │ │ ├── FortLureStartedEvent.cs │ │ │ ├── FortTargetEvent.cs │ │ │ ├── FortUsedEvent.cs │ │ │ ├── GymPokeEvent.cs │ │ │ ├── PokeStopListEvent.cs │ │ │ └── PokestopsOptimalPathEvent.cs │ │ ├── GUI │ │ │ ├── DisplayHighestsPokemonEvent.cs │ │ │ ├── ForceMoveDoneEvent.cs │ │ │ ├── NewVersionEvent.cs │ │ │ └── UpdateEvent.cs │ │ ├── Global │ │ │ ├── DebugEvent.cs │ │ │ ├── ErrorEvent.cs │ │ │ ├── NoticeEvent.cs │ │ │ ├── TelegramMessageEvent.cs │ │ │ └── WarnEvent.cs │ │ ├── IEvent.cs │ │ ├── Item │ │ │ ├── InvalidKeepAmountEvent.cs │ │ │ ├── InventoryListEvent.cs │ │ │ ├── InventoryNewItemsEvent.cs │ │ │ ├── ItemLostEvent.cs │ │ │ ├── ItemRecycledEvent.cs │ │ │ ├── ItemUsedEvent.cs │ │ │ ├── NoPokeballEvent.cs │ │ │ ├── UseLuckyEggEvent.cs │ │ │ └── UseLuckyEggMinPokemonEvent.cs │ │ ├── Logic │ │ │ ├── BotCompleteFailureEvent.cs │ │ │ ├── CheckChallengeEvent.cs │ │ │ ├── NextRouteEvent.cs │ │ │ └── VerifyChallengeEvent.cs │ │ ├── Obsolete │ │ │ ├── SnipeEvent.cs │ │ │ ├── SnipeModeEvent.cs │ │ │ └── SnipeScanEvent.cs │ │ ├── Player │ │ │ ├── PlayerLevelUpEvent.cs │ │ │ ├── PlayerStatsEvent.cs │ │ │ ├── ProfileEvent.cs │ │ │ ├── TeamSetEvent.cs │ │ │ └── UpdatePositionEvent.cs │ │ └── Pokemon │ │ │ ├── BaseNewPokemonEvent.cs │ │ │ ├── BuddySetEvent.cs │ │ │ ├── BuddyWalkedEvent.cs │ │ │ ├── PokemonActionDoneEvent.cs │ │ │ ├── PokemonCaptureEvent.cs │ │ │ ├── PokemonDisappearEvent.cs │ │ │ ├── PokemonEvolveDoneEvent.cs │ │ │ ├── PokemonEvolveEvent.cs │ │ │ ├── PokemonFavoriteEvent.cs │ │ │ ├── PokemonListEvent.cs │ │ │ ├── PokemonSettingsEvent.cs │ │ │ ├── PokemonStatsChangedEvent.cs │ │ │ ├── PokemonsFoundEvent.cs │ │ │ ├── TransferPokemonEvent.cs │ │ │ └── UseBerryEvent.cs │ ├── Extensions │ │ ├── AsyncHelpers.cs │ │ ├── IoExtensions.cs │ │ ├── PropertyNotification.cs │ │ └── RandomExtensions.cs │ ├── ILogicSettings.cs │ ├── Inventory.cs │ ├── Localization │ │ └── Localizer.cs │ ├── Logging │ │ ├── ILogger.cs │ │ └── Logger.cs │ ├── MapCache.cs │ ├── Migrations │ │ └── Configuration.cs │ ├── Navigation.cs │ ├── Navigation2.cs │ ├── PoGo.PokeMobBot.Logic.csproj │ ├── PoGoUtils │ │ ├── CustomRoute.cs │ │ ├── PokeDexRecord.cs │ │ ├── PokeRareStatus.cs │ │ ├── PokemonAttackInfo.cs │ │ ├── PokemonInfo.cs │ │ └── PokemonMoveInfo.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Routing.cs │ ├── Service │ │ └── BotService.cs │ ├── Settings.cs │ ├── State │ │ ├── APIVersionCheckState.cs │ │ ├── CheckTosState.cs │ │ ├── FarmState.cs │ │ ├── IState.cs │ │ ├── InfoState.cs │ │ ├── LoginState.cs │ │ ├── PositionCheckState.cs │ │ ├── Session.cs │ │ ├── StateMachine.cs │ │ └── VersionCheckState.cs │ ├── StatisticsAggregator.cs │ ├── Tasks │ │ ├── ActionQueueTask.cs │ │ ├── CatchIncensePokemonsTask.cs │ │ ├── CatchLurePokemonsTask.cs │ │ ├── CatchNearbyPokemonsTask.cs │ │ ├── CatchPokemonTask.cs │ │ ├── CatchWildPokemonsTask.cs │ │ ├── CheckBotStateTask.cs │ │ ├── CheckChallengeDoneTask.cs │ │ ├── CheckChallengeTask.cs │ │ ├── CrazyTeleporter.cs │ │ ├── DisplayPokemonStatsTask.cs │ │ ├── EggsListTask.cs │ │ ├── EvolvePokemonTask.cs │ │ ├── EvolveSpecificPokemonTask.cs │ │ ├── FarmPokestopsCustomRouteTask.cs │ │ ├── FarmPokestopsDiscoveryTask.cs │ │ ├── FarmPokestopsTask.cs │ │ ├── FavoritePokemonTask.cs │ │ ├── FavoriteSpecificPokemonTask.cs │ │ ├── ForceMoveTask.cs │ │ ├── GetBuddyWalkedTask.cs │ │ ├── GetPokeDexCount.cs │ │ ├── InventoryListTask.cs │ │ ├── LevelUpPokemonTask.cs │ │ ├── LevelUpSpecificPokemonTask.cs │ │ ├── Login.cs │ │ ├── MaintenanceTask.cs │ │ ├── PlayerStatsTask.cs │ │ ├── PokeNearbyGym.cs │ │ ├── PokemonListTask.cs │ │ ├── PokemonSettingsTask.cs │ │ ├── RecycleItemsTask.cs │ │ ├── RecycleSpecificItemTask.cs │ │ ├── RenamePokemonTask.cs │ │ ├── RenameSpecificPokemonTask.cs │ │ ├── SetBuddyPokemonTask.cs │ │ ├── SetPlayerTeamTask.cs │ │ ├── SnipePokemonTask.cs │ │ ├── TransferDuplicatePokemonTask.cs │ │ ├── TransferPokemonTask.cs │ │ ├── UseIncubatorsTask.cs │ │ ├── UseItemTask.cs │ │ ├── UseLureModule.cs │ │ ├── UseNearbyPokestopsTask.cs │ │ └── VerifyChallengeTask.cs │ ├── Utils │ │ ├── DelayingEvolveUtils.cs │ │ ├── DelayingUtils.cs │ │ ├── Dynamic.cs │ │ ├── EggWalker.cs │ │ ├── ErrorHandler.cs │ │ ├── GPXReader.cs │ │ ├── InventoryUtils.cs │ │ ├── JitterUtils.cs │ │ ├── LocationUtils.cs │ │ ├── PhoneGenerator.cs │ │ ├── RoutingUtils.cs │ │ ├── ScheduleAction.cs │ │ ├── SerializeUtils.cs │ │ ├── Statistics.cs │ │ └── StringUtils.cs │ ├── amd64 │ │ ├── sqlceca40.dll │ │ ├── sqlcecompact40.dll │ │ ├── sqlceer40EN.dll │ │ ├── sqlceme40.dll │ │ ├── sqlceqp40.dll │ │ └── sqlcese40.dll │ ├── app.config │ └── packages.config └── PoGoAPI │ ├── .gitignore │ ├── LICENSE │ ├── PoGo.RocketAPI │ ├── Client.cs │ ├── Enums │ │ └── AuthType.cs │ ├── Exceptions │ │ ├── AccessTokenExpiredException.cs │ │ ├── AccountNotVerifiedException.cs │ │ ├── GoogleException.cs │ │ ├── GoogleOfflineException.cs │ │ ├── InvalidResponseException.cs │ │ ├── LoginFailedException.cs │ │ └── PTCOfflineException.cs │ ├── Extensions │ │ ├── DateTimeExtensions.cs │ │ ├── HttpClientExtensions.cs │ │ └── RandomExtension.cs │ ├── Helpers │ │ ├── JsonHelper.cs │ │ ├── RandomHelper.cs │ │ ├── RequestBuilder.cs │ │ ├── RetryHandler.cs │ │ ├── S2Helper.cs │ │ └── Utils.cs │ ├── HttpClient │ │ └── PokemonClient.cs │ ├── ISettings.cs │ ├── Login │ │ ├── GoogleLogin.cs │ │ ├── GoogleLoginGPSOAuth.cs │ │ ├── ILoginType.cs │ │ └── PtcLogin.cs │ ├── PoGo.RocketAPI.csproj │ ├── PoGo.RocketAPI.csproj.DotSettings │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.cs │ ├── Resources │ │ ├── Encryption │ │ │ ├── PCrypt.cs │ │ │ ├── Shuffle2.cs │ │ │ ├── Unshuffle.cs │ │ │ └── Unshuffle2.cs │ │ └── Hash │ │ │ ├── HashBuilder.cs │ │ │ └── UInt128.cs │ ├── Rpc │ │ ├── BaseRpc.cs │ │ ├── Download.cs │ │ ├── Encounter.cs │ │ ├── Fort.cs │ │ ├── Inventory.cs │ │ ├── Login.cs │ │ ├── Map.cs │ │ ├── Misc.cs │ │ └── Player.cs │ ├── app.config │ └── packages.config │ └── README.md ├── Translations ├── Console │ ├── translation.da.json │ ├── translation.de.json │ ├── translation.en.json │ ├── translation.es.json │ ├── translation.et.json │ ├── translation.fi.json │ ├── translation.fr.json │ ├── translation.gr.json │ ├── translation.hu.json │ ├── translation.id.json │ ├── translation.it.json │ ├── translation.kr.json │ ├── translation.nl.json │ ├── translation.no.json │ ├── translation.pl.json │ ├── translation.pt-br.json │ ├── translation.pt-pt.json │ ├── translation.ru_RU.json │ ├── translation.sv.json │ ├── translation.th.json │ ├── translation.tr.json │ ├── translation.uk_UA.json │ ├── translation.vi.json │ ├── translation.zh_CN.json │ └── translation.zh_tw.json └── Interface │ ├── Deutsch.json │ ├── Dutch.json │ ├── English.json │ ├── Español.json │ ├── Finland.json │ ├── Français.json │ ├── Indonesia.json │ ├── Italiano.json │ ├── Português.json │ ├── Türkçe.json │ ├── Русский.json │ ├── 日本語.json │ ├── 简体中文.json │ ├── 繁體中文.json │ └── 한국어.json └── latest.version /API_version.json: -------------------------------------------------------------------------------- 1 | { 2 | "Catchem_version": "0.45", 3 | "minimum_version": "0.47.1" 4 | } 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ##Greetings! 2 | 1. Please, read [WIKI](https://github.com/Lunat1q/Catchem-PoGo/wiki) and search your question in the [closed issues](https://github.com/Lunat1q/Catchem-PoGo/issues?q=is%3Aissue+is%3Aclosed), use searchbox at the top. 3 | 2. Consider to join Discord, instead of writing your quesion in the issues. [>>>JOIN DISCORD<<<](https://discord.gg/pPwxX8Q) 4 | 3. Check the #roadmap channel in discord, before suggesting anything, or don't be surprised when your issue will be closed with no explanation 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## PROJECT IS FROZEN! Details in the discord. 2 | 3 |

4 | 5 |

Rights / Legal

6 | This Bot is in no way affiliated with, authorized, maintained, sponsored or endorsed by Niantic, The Pokémon Company, Nintendo or any of its affiliates or subsidiaries. This is an independent and unofficial API for educational use ONLY. Use at your own risk. 7 | -------------------------------------------------------------------------------- /Source/Catchem.sln.DotSettings: -------------------------------------------------------------------------------- 1 |  2 | True -------------------------------------------------------------------------------- /Source/Catchem/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Source/Catchem/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Catchem 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Source/Catchem/Classes/BotRpcMessage.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.Enums; 2 | using PoGo.PokeMobBot.Logic.State; 3 | 4 | namespace Catchem.Classes 5 | { 6 | internal class BotRpcMessage 7 | { 8 | public MainRpc Type; 9 | public ISession Session; 10 | public object[] ParamObjects; 11 | public BotRpcMessage (MainRpc type, ISession session, params object[] objData) 12 | { 13 | Type = type; 14 | Session = session; 15 | ParamObjects = objData; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Source/Catchem/Classes/CatchemNotified.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel; 2 | using System.Runtime.CompilerServices; 3 | 4 | namespace Catchem.Classes 5 | { 6 | public abstract class CatchemNotified : INotifyPropertyChanged 7 | { 8 | public event PropertyChangedEventHandler PropertyChanged; 9 | 10 | internal void OnPropertyChanged([CallerMemberName] string propertyName = null) 11 | { 12 | PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); 13 | } 14 | 15 | internal void OnPropertyChangedByName(string propertyName = null) 16 | { 17 | PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/Catchem/Classes/NewMapObject.cs: -------------------------------------------------------------------------------- 1 | namespace Catchem.Classes 2 | { 3 | public class NewMapObject 4 | { 5 | public MapPbjectType OType; 6 | public string OName; 7 | public double Lat; 8 | public double Lng; 9 | internal string Uid; 10 | public object[] ExtraData; 11 | 12 | public NewMapObject(MapPbjectType oType, string oName, double lat, double lng, string uid, params object[] extraData) 13 | { 14 | OType = oType; 15 | OName = oName; 16 | Lat = lat; 17 | Lng = lng; 18 | Uid = uid; 19 | ExtraData = extraData; 20 | } 21 | 22 | public NewMapObject() 23 | { 24 | 25 | } 26 | } 27 | 28 | public enum MapPbjectType 29 | { 30 | Pokestop, 31 | PokestopLured, 32 | Pokemon, 33 | ForceMove, 34 | ForceMoveDone, 35 | PokemonRemove, 36 | PokestopRemove, 37 | PokestopUpdate, 38 | SetLured, 39 | SetUnLured, 40 | Gym 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /Source/Catchem/Events/TelegramCaptchaRequiredEvent.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.Event; 2 | 3 | namespace Catchem.Events 4 | { 5 | public class TelegramCaptchaRequiredEvent : IEvent 6 | { 7 | public string BotNicName; 8 | public string ProfileName; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source/Catchem/Events/TelegramCommandEvent.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.Event; 2 | 3 | namespace Catchem.Events 4 | { 5 | public class TelegramCommandEvent : IEvent 6 | { 7 | public string Sender; 8 | public string Command; 9 | public long ChatId; 10 | public string[] Args; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Source/Catchem/Events/TelegramMessageEvent.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.Event; 2 | 3 | namespace Catchem.Events 4 | { 5 | public class TelegramMessageEvent : IEvent 6 | { 7 | public string Message; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Source/Catchem/Events/TelegramPlayerLevelUpEvent.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.Event; 2 | 3 | namespace Catchem.Events 4 | { 5 | public class TelegramPlayerLevelUpEvent : IEvent 6 | { 7 | public int Level; 8 | public bool InventoryFull; 9 | public string Items; 10 | public string BotNicName; 11 | public string ProfileName; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Source/Catchem/Events/TelegramPokemonCaughtEvent.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.Event; 2 | using POGOProtos.Enums; 3 | 4 | namespace Catchem.Events 5 | { 6 | public class TelegramPokemonCaughtEvent : IEvent 7 | { 8 | public PokemonId PokemonId; 9 | public int Cp; 10 | public double Iv; 11 | public string ProfileName; 12 | public string BotNicnname; 13 | public double Level; 14 | public PokemonMove? Move2; 15 | public PokemonMove? Move1; 16 | public string CaptureType; 17 | public double Lat; 18 | public double Lng; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/Catchem/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Source/Catchem/Interfaces/IBotPage.cs: -------------------------------------------------------------------------------- 1 | using Catchem.Classes; 2 | 3 | namespace Catchem.Interfaces 4 | { 5 | interface IBotPage 6 | { 7 | void SetBot(BotWindowData bot); 8 | void ClearData(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source/Catchem/Pages/GlobalMapPage.xaml: -------------------------------------------------------------------------------- 1 |  11 | 12 | 13 | -------------------------------------------------------------------------------- /Source/Catchem/Pages/TemplateEditor.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | namespace Catchem.Pages 4 | { 5 | /// 6 | /// Interaction logic for TemplateEditor.xaml 7 | /// 8 | public partial class TemplateEditor : UserControl 9 | { 10 | public TemplateEditor() 11 | { 12 | InitializeComponent(); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source/Catchem/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Source/Catchem/Resources/001_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/001_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/002_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/002_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/003_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/003_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/004_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/004_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/005_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/005_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/006_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/006_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/007_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/007_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/008_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/008_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/009_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/009_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/010_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/010_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/011_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/011_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/012_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/012_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/013_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/013_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/014_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/014_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/015_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/015_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/016_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/016_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/017_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/017_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/018_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/018_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/019_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/019_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/020_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/020_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/021_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/021_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/022_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/022_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/023_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/023_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/024_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/024_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/025_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/025_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/026_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/026_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/027_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/027_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/028_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/028_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/029_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/029_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/030_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/030_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/031_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/031_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/032_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/032_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/033_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/033_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/034_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/034_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/035_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/035_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/036_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/036_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/037_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/037_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/038_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/038_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/039_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/039_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/040_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/040_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/041_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/041_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/042_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/042_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/043_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/043_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/044_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/044_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/045_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/045_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/046_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/046_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/047_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/047_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/048_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/048_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/049_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/049_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/050_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/050_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/051_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/051_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/052_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/052_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/053_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/053_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/054_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/054_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/055_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/055_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/056_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/056_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/057_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/057_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/058_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/058_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/059_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/059_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/060_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/060_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/061_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/061_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/062_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/062_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/063_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/063_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/064_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/064_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/065_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/065_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/066_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/066_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/067_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/067_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/068_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/068_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/069_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/069_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/070_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/070_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/071_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/071_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/072_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/072_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/073_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/073_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/074_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/074_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/075_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/075_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/076_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/076_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/077_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/077_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/078_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/078_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/079_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/079_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/080_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/080_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/081_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/081_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/082_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/082_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/083_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/083_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/084_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/084_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/085_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/085_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/086_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/086_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/087_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/087_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/088_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/088_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/089_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/089_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/090_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/090_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/091_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/091_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/092_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/092_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/093_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/093_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/094_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/094_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/095_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/095_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/096_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/096_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/097_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/097_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/098_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/098_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/099_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/099_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/1.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/10.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/100.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/100_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/100_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/101.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/101_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/101_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/102.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/102_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/102_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/103.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/103_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/103_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/104.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/104_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/104_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/105.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/105_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/105_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/106.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/106_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/106_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/107.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/107_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/107_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/108.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/108_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/108_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/109.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/109_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/109_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/11.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/110.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/110_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/110_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/111.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/111_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/111_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/112.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/112_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/112_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/113.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/113_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/113_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/114.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/114_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/114_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/115.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/115_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/115_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/116.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/116_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/116_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/117.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/117_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/117_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/118.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/118_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/118_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/119.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/119_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/119_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/12.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/120.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/120_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/120_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/121.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/121_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/121_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/122.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/122_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/122_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/123.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/123_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/123_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/124.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/124_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/124_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/125.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/125_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/125_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/126.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/126_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/126_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/127.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/127_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/127_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/128.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/128_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/128_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/129.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/129_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/129_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/13.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/130.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/130_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/130_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/131.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/131_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/131_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/132.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/132_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/132_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/133.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/133_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/133_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/134.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/134_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/134_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/135.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/135_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/135_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/136.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/136_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/136_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/137.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/137_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/137_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/138.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/138_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/138_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/139.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/139_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/139_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/14.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/140.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/140_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/140_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/141.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/141_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/141_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/142.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/142_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/142_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/143.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/143_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/143_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/144.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/144_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/144_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/145.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/145_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/145_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/146.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/146_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/146_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/147.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/147_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/147_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/148.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/148_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/148_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/149.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/149_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/149_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/15.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/150.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/150_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/150_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/151.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/151_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/151_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/152.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/153.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/154.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/155.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/156.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/157.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/158.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/159.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/16.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/160.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/161.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/162.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/163.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/164.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/165.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/166.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/167.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/168.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/169.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/17.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/170.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/171.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/172.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/173.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/174.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/175.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/176.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/177.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/178.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/179.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/18.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/180.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/181.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/181m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/181m.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/182.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/183.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/184.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/185.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/186.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/187.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/188.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/189.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/19.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/190.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/191.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/192.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/193.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/194.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/195.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/196.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/197.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/198.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/199.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/2.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/20.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/200.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/201.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/202.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/203.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/204.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/205.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/206.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/207.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/208.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/208_f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/208_f2.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/209.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/21.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/210.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/211.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/212.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/212_f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/212_f2.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/213.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/214.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/214_f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/214_f2.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/215.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/216.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/217.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/218.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/219.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/22.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/220.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/221.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/222.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/223.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/224.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/225.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/226.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/227.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/228.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/229.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/229m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/229m.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/23.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/230.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/231.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/232.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/233.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/234.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/235.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/236.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/237.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/238.jpg -------------------------------------------------------------------------------- /Source/Catchem/Resources/239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/239.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/24.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/240.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/241.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/242.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/243.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/244.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/245.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/246.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/247.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/248.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/248m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/248m.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/249.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/25.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/250.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/251.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/26.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/27.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/28.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/29.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/3.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/30.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/31.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/32.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/33.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/34.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/35.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/36.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/37.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/38.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/39.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/4.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/40.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/41.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/42.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/43.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/44.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/45.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/46.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/47.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/48.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/49.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/5.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/50.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/51.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/52.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/53.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/54.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/55.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/56.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/57.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/58.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/59.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/6.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/60.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/61.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/62.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/63.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/64.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/65.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/66.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/67.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/68.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/69.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/7.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/70.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/71.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/72.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/73.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/74.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/75.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/76.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/77.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/78.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/79.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/8.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/80.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/81.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/82.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/83.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/84.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/85.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/86.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/87.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/88.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/89.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/9.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/90.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/91.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/92.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/93.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/94.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/95.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/96.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/97.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/98.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/99.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Bug_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Bug_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Dark_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Dark_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Dragon_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Dragon_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Electric_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Electric_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Fairy_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Fairy_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Fighting_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Fighting_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Fire_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Fire_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Flying_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Flying_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Ghost_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Ghost_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Grass_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Grass_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Ground_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Ground_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Ice_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Ice_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Normal_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Normal_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Poison_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Poison_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Pokeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Pokeball.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Psychic_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Psychic_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Rock_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Rock_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Steel_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Steel_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/Water_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/Water_inv.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/adps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/adps.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/atk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/atk.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/bag_upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/bag_upgrade.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/berry_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/berry_1.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/berry_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/berry_2.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/berry_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/berry_3.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/berry_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/berry_4.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/berry_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/berry_5.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/buddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/buddy.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/camera.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/candy.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/candy_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/candy_white.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/def.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/dust.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/egg.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/favoured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/favoured.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/favouredSort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/favouredSort.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/force_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/force_move.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/gym.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/gym_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/gym_blue.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/gym_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/gym_red.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/gym_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/gym_yellow.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/hp.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/ince.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/ince.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/incubator-unlimited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/incubator-unlimited.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/incubator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/incubator.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/jar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/jar_1.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/lucky_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/lucky_egg.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/lure_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/lure_mod.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/maintence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/maintence.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/no_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/no_name.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/pokeball_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/pokeball_1.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/pokeball_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/pokeball_2.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/pokeball_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/pokeball_3.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/pokeball_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/pokeball_4.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/potion_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/potion_1.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/potion_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/potion_2.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/potion_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/potion_3.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/potion_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/potion_4.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/pstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/pstop.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/pstop_lured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/pstop_lured.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/refresh.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/revive_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/revive_1.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/revive_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/revive_2.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/sta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/sta.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/team_instinct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/team_instinct.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/team_mystic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/team_mystic.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/team_neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/team_neutral.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/team_valor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/team_valor.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/time.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/trainer.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/trainer_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/trainer_down.gif -------------------------------------------------------------------------------- /Source/Catchem/Resources/trainer_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/trainer_left.gif -------------------------------------------------------------------------------- /Source/Catchem/Resources/trainer_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/trainer_right.gif -------------------------------------------------------------------------------- /Source/Catchem/Resources/trainer_stay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/trainer_stay.gif -------------------------------------------------------------------------------- /Source/Catchem/Resources/trainer_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/trainer_top.gif -------------------------------------------------------------------------------- /Source/Catchem/Resources/weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/weight.png -------------------------------------------------------------------------------- /Source/Catchem/Resources/wp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/Resources/wp.png -------------------------------------------------------------------------------- /Source/Catchem/Styling/Templates.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Windows.Controls; 3 | using PoGo.PokeMobBot.Logic.Tasks; 4 | 5 | namespace Catchem.Styling 6 | { 7 | public partial class Templates 8 | { 9 | private void RemoveAction_Click(object sender, System.Windows.RoutedEventArgs e) 10 | { 11 | var btn = sender as Button; 12 | if (btn?.DataContext == null) return; 13 | var obj = btn.DataContext as ManualAction; 14 | var parentList = btn.Tag as ListBox; 15 | var source = (IList)parentList?.ItemsSource; 16 | if (source == null || obj == null || !source.Contains(obj)) return; 17 | obj.Session.RemoveActionFromQueue(obj); 18 | source.Remove(obj); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Source/Catchem/UiTranslation/UiTranslation.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace Catchem.UiTranslation 4 | { 5 | public class UiTranslation 6 | { 7 | public string LanguageName = "EnglishDefault"; 8 | public Dictionary Translation = new Dictionary(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source/Catchem/adb/AdbWinApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/adb/AdbWinApi.dll -------------------------------------------------------------------------------- /Source/Catchem/adb/AdbWinUsbApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/adb/AdbWinUsbApi.dll -------------------------------------------------------------------------------- /Source/Catchem/adb/adb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/adb/adb.exe -------------------------------------------------------------------------------- /Source/Catchem/amd64/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/amd64/geckodriver.exe -------------------------------------------------------------------------------- /Source/Catchem/unnamed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/Catchem/unnamed.ico -------------------------------------------------------------------------------- /Source/POGOProtos/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.CLI/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.CLI/Models/SocketMessage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace PoGo.PokeMobBot.CLI.Models 8 | { 9 | public class SocketMessage 10 | { 11 | public string Command { get; set; } 12 | public string Data { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.CLI/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/PoGo.PokeMobBot.CLI/Resources/Icon.ico -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.CLI/SimpleSession.cs: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.CLI/cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/PoGo.PokeMobBot.CLI/cert.pfx -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.CLI/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.CLI/supersocket.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | SuperSocket.SocketService.exe -c %1 %2 -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.CLI/supersocket.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mono SuperSocket.SocketService.exe -c $1 $2 -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/DataDumper/IDumper.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.DataDumper 2 | { 3 | public interface IDumper 4 | { 5 | /// 6 | /// Dump specific data. 7 | /// 8 | /// The data to dump. 9 | /// File to dump to 10 | void Dump(string data, string filename); 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/DataStorage/BotContext.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Data.Entity; 3 | using PoGo.PokeMobBot.Logic.API; 4 | using PoGo.PokeMobBot.Logic.Migrations; 5 | 6 | namespace PoGo.PokeMobBot.Logic.DataStorage 7 | { 8 | internal class BotContext : DbContext 9 | { 10 | protected override void OnModelCreating(DbModelBuilder modelBuilder) 11 | { 12 | Database.SetInitializer(new MigrateDatabaseToLatestVersion()); 13 | } 14 | 15 | public void CheckCreated() 16 | { 17 | Database.CreateIfNotExists(); 18 | } 19 | 20 | 21 | public BotContext(): base("BotContext") 22 | { 23 | AppDomain.CurrentDomain.SetData("DataDirectory", System.IO.Directory.GetCurrentDirectory()); 24 | } 25 | 26 | public DbSet PokeStops { get; set; } 27 | public DbSet MapzenAlt { get; set; } 28 | public DbSet PokemonSeen { get; set; } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/DataStorage/DbClasses.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using POGOProtos.Enums; 3 | 4 | namespace PoGo.PokeMobBot.Logic.DataStorage 5 | { 6 | public class PokeStop 7 | { 8 | public string Id { get; set; } 9 | public string Name { get; set; } 10 | public double Latitude { get; set; } 11 | public double Longitude { get; set; } 12 | public double Altitude { get; set; } 13 | public string Url { get; set; } 14 | public string Description { get; set; } 15 | } 16 | 17 | public class PokemonSeen 18 | { 19 | public int Id { get; set; } 20 | public PokemonId PokemonId { get; set; } 21 | public double Latitude { get; set; } 22 | public double Longitude { get; set; } 23 | public DateTime SeenTime { get; set; } 24 | public string SpawnpointId { get; set; } 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Enums/MainRPC.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Enums 2 | { 3 | public enum MainRpc 4 | { 5 | BotFailure, 6 | Log, 7 | Error, 8 | PokeStops, 9 | Pokemons, 10 | PokemonsWild, 11 | PokemonMapRemove, 12 | PokestopSetLure, 13 | PlayerLocation, 14 | PokemonList, 15 | ItemList, 16 | NewVersion, 17 | ItemNew, 18 | PokemonNew, 19 | RouteNext, 20 | ItemRemove, 21 | PokemonLost, 22 | PokemonUpdate, 23 | TeamSet, 24 | PokemonFav, 25 | Profile, 26 | ForceMoveDone, 27 | GymPoke, 28 | PokestopsOpt, 29 | Lvl, 30 | PokestopInfo, 31 | PokeActionDone, 32 | ItemUsed, 33 | Buddy, 34 | Challenge 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Egg/EggFoundEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Egg 2 | { 3 | public class EggFoundEvent : IEvent 4 | { 5 | public double Distance; 6 | public string PokeStopName; 7 | } 8 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Egg/EggHatchedEvent.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.Event.Pokemon; 2 | 3 | namespace PoGo.PokeMobBot.Logic.Event.Egg 4 | { 5 | public class EggHatchedEvent : BaseNewPokemonEvent 6 | { 7 | 8 | } 9 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Egg/EggIncubatorStatusEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Egg 2 | { 3 | public class EggIncubatorStatusEvent : IEvent 4 | { 5 | public string IncubatorId; 6 | public double KmRemaining; 7 | public double KmToWalk; 8 | public ulong PokemonId; 9 | public bool WasAddedNow; 10 | public double KmWalked => KmToWalk - KmRemaining; 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Egg/EggsListEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Collections.Generic; 4 | using POGOProtos.Inventory; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.Egg 9 | { 10 | public class EggsListEvent : IEvent 11 | { 12 | public float PlayerKmWalked { get; set; } 13 | public List Incubators { get; set; } 14 | public object UnusedEggs { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/EventDispatcher.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event 2 | { 3 | public delegate void EventDelegate(IEvent evt); 4 | 5 | public interface IEventDispatcher 6 | { 7 | event EventDelegate EventReceived; 8 | void Send(IEvent evt); 9 | } 10 | 11 | public class EventDispatcher : IEventDispatcher 12 | { 13 | public event EventDelegate EventReceived; 14 | 15 | public void Send(IEvent evt) 16 | { 17 | EventReceived?.Invoke(evt); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Fort/FortFailedEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Fort 2 | { 3 | public class FortFailedEvent : IEvent 4 | { 5 | public int Max; 6 | public string Name; 7 | public int Try; 8 | } 9 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Fort/FortLureStartedEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Fort 2 | { 3 | public class FortLureStartedEvent : IEvent 4 | { 5 | public string Id; 6 | public string Name; 7 | public double Dist; 8 | public int LureCountLeft; 9 | } 10 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Fort/FortTargetEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Fort 2 | { 3 | public class FortTargetEvent : IEvent 4 | { 5 | public string Id; 6 | public double Distance; 7 | public string Name; 8 | public string Description; 9 | public string url; 10 | public double Latitude; 11 | public double Longitude; 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Fort/FortUsedEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Fort 2 | { 3 | public class FortUsedEvent : IEvent 4 | { 5 | public int Exp; 6 | public int Gems; 7 | public string Id; 8 | public bool InventoryFull; 9 | public string Items; 10 | public double Latitude; 11 | public double Longitude; 12 | public string Name; 13 | public string Description; 14 | public string url; 15 | } 16 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Fort/GymPokeEvent.cs: -------------------------------------------------------------------------------- 1 | using POGOProtos.Data.Gym; 2 | 3 | namespace PoGo.PokeMobBot.Logic.Event.Fort 4 | { 5 | public class GymPokeEvent : IEvent 6 | { 7 | public string Id; 8 | public double Distance; 9 | public string Name; 10 | public string Description; 11 | public GymState GymState; 12 | public double Lat; 13 | public double Lon; 14 | } 15 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Fort/PokeStopListEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Collections.Generic; 4 | using POGOProtos.Map.Fort; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.Fort 9 | { 10 | public class PokeStopListEvent : IEvent 11 | { 12 | public IEnumerable Forts; 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Fort/PokestopsOptimalPathEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace PoGo.PokeMobBot.Logic.Event.Fort 5 | { 6 | public class PokestopsOptimalPathEvent : IEvent 7 | { 8 | public List> Coords = new List>(); 9 | } 10 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/GUI/DisplayHighestsPokemonEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Collections.Generic; 4 | using PoGo.PokeMobBot.Logic.PoGoUtils; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.GUI 9 | { 10 | public class DisplayHighestsPokemonEvent : IEvent 11 | { 12 | //PokemonData | CP | IV | Level | MOVE1 | MOVE2 | AverageRankVsTypes 13 | public List PokemonList; 14 | public string SortedBy; 15 | public bool DisplayPokemonMaxPoweredCp; 16 | public bool DisplayPokemonMovesetRank; 17 | 18 | } 19 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/GUI/ForceMoveDoneEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.GUI 8 | { 9 | public class ForceMoveDoneEvent : IEvent 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/GUI/NewVersionEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PoGo.PokeMobBot.Logic.Event.GUI 4 | { 5 | public class NewVersionEvent : IEvent 6 | { 7 | public Version v; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/GUI/UpdateEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.GUI 2 | { 3 | public class UpdateEvent : IEvent 4 | { 5 | public string Message = ""; 6 | 7 | public override string ToString() 8 | { 9 | return Message; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Global/DebugEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Global 2 | { 3 | public class DebugEvent : IEvent 4 | { 5 | public string Message = ""; 6 | 7 | public override string ToString() 8 | { 9 | return Message; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Global/ErrorEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Global 2 | { 3 | public class ErrorEvent : IEvent 4 | { 5 | public string Message = ""; 6 | 7 | public override string ToString() 8 | { 9 | return Message; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Global/NoticeEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Global 2 | { 3 | public class NoticeEvent : IEvent 4 | { 5 | public string Message = ""; 6 | 7 | public override string ToString() 8 | { 9 | return Message; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Global/TelegramMessageEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Global 2 | { 3 | public class TelegramMessageEvent : IEvent 4 | { 5 | public string Message; 6 | 7 | public override string ToString() 8 | { 9 | return Message; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Global/WarnEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Global 2 | { 3 | public class WarnEvent : IEvent 4 | { 5 | public string Message = ""; 6 | 7 | /// 8 | /// This event requires handler to perform input 9 | /// 10 | public bool RequireInput; 11 | 12 | public override string ToString() 13 | { 14 | return Message; 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/IEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event 2 | { 3 | public interface IEvent 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/InvalidKeepAmountEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Item 2 | { 3 | public class InvalidKeepAmountEvent : IEvent 4 | { 5 | public int Count; 6 | public int Max; 7 | } 8 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/InventoryListEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Collections.Generic; 4 | using POGOProtos.Inventory.Item; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.Item 9 | { 10 | public class InventoryListEvent : IEvent 11 | { 12 | public List Items; 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/InventoryNewItemsEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using POGOProtos.Inventory.Item; 6 | 7 | #endregion 8 | 9 | namespace PoGo.PokeMobBot.Logic.Event.Item 10 | { 11 | public class InventoryNewItemsEvent : IEvent 12 | { 13 | public List> Items; 14 | } 15 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/ItemLostEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Inventory.Item; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Item 8 | { 9 | public class ItemLostEvent : IEvent 10 | { 11 | public int Count; 12 | public ItemId Id; 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/ItemRecycledEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Inventory.Item; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Item 8 | { 9 | public class ItemRecycledEvent : IEvent 10 | { 11 | public int Count; 12 | public ItemId Id; 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/ItemUsedEvent.cs: -------------------------------------------------------------------------------- 1 | using POGOProtos.Inventory.Item; 2 | 3 | namespace PoGo.PokeMobBot.Logic.Event.Item 4 | { 5 | public class ItemUsedEvent : IEvent 6 | { 7 | public ItemId Id; 8 | public long ExpireMs; 9 | } 10 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/NoPokeballEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Enums; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Item 8 | { 9 | public class NoPokeballEvent : IEvent 10 | { 11 | public int Cp; 12 | public PokemonId Id; 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/UseLuckyEggEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Item 2 | { 3 | public class UseLuckyEggEvent : IEvent 4 | { 5 | public int Count; 6 | } 7 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Item/UseLuckyEggMinPokemonEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Item 2 | { 3 | public class UseLuckyEggMinPokemonEvent : IEvent 4 | { 5 | public int Diff; 6 | public int CurrCount; 7 | public int MinPokemon; 8 | } 9 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Logic/BotCompleteFailureEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Logic 2 | { 3 | public class BotCompleteFailureEvent : IEvent 4 | { 5 | public bool Shutdown; 6 | public bool Stop; 7 | public string Message; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Logic/CheckChallengeEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Logic 2 | { 3 | public class CheckChallengeEvent : IEvent 4 | { 5 | public string ChallengeUrl; 6 | public bool ShowChallenge; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Logic/NextRouteEvent.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace PoGo.PokeMobBot.Logic.Event.Logic 5 | { 6 | public class NextRouteEvent : IEvent 7 | { 8 | public List> Coords = new List>(); 9 | } 10 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Logic/VerifyChallengeEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Logic 2 | { 3 | public class VerifyChallengeEvent : IEvent 4 | { 5 | public bool Success; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Obsolete/SnipeEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Obsolete 2 | { 3 | public class SnipeEvent : IEvent 4 | { 5 | public string Message = ""; 6 | 7 | public override string ToString() 8 | { 9 | return Message; 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Obsolete/SnipeModeEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Obsolete 2 | { 3 | public class SnipeModeEvent : IEvent 4 | { 5 | public bool Active; 6 | } 7 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Obsolete/SnipeScanEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Enums; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Obsolete 8 | { 9 | public class SnipeScanEvent : IEvent 10 | { 11 | public Location Bounds { get; set; } 12 | public PokemonId PokemonId { get; set; } 13 | public double Iv { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Player/PlayerLevelUpEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Player 2 | { 3 | public class PlayerLevelUpEvent : IEvent 4 | { 5 | public int Level; 6 | public bool InventoryFull; 7 | public string Items; 8 | } 9 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Player/PlayerStatsEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Collections.Generic; 4 | using POGOProtos.Data.Player; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.Player 9 | { 10 | public class PlayerStatsEvent : IEvent 11 | 12 | { 13 | public List PlayerStats { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Player/ProfileEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Networking.Responses; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Player 8 | { 9 | public class ProfileEvent : IEvent 10 | { 11 | public GetPlayerResponse Profile; 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Player/TeamSetEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Enums; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Player 8 | { 9 | public class TeamSetEvent : IEvent 10 | { 11 | public TeamColor Color; 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Player/UpdatePositionEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Player 2 | { 3 | public class UpdatePositionEvent : IEvent 4 | { 5 | public double Latitude; 6 | public double Longitude; 7 | public double Altitude; 8 | } 9 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/BuddySetEvent.cs: -------------------------------------------------------------------------------- 1 | using POGOProtos.Data; 2 | 3 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 4 | { 5 | public class BuddySetEvent : IEvent 6 | { 7 | public BuddyPokemon UpdatedBuddy; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/BuddyWalkedEvent.cs: -------------------------------------------------------------------------------- 1 | using POGOProtos.Enums; 2 | 3 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 4 | { 5 | public class BuddyWalkedEvent : IEvent 6 | { 7 | public int CandyEarnedCount; 8 | public PokemonFamilyId FamilyCandyId; 9 | public bool Success; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonActionDoneEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 2 | { 3 | public class PokemonActionDoneEvent : IEvent 4 | { 5 | public ulong Uid; 6 | } 7 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonCaptureEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Inventory.Item; 4 | using POGOProtos.Networking.Responses; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 9 | { 10 | public class PokemonCaptureEvent : BaseNewPokemonEvent 11 | { 12 | public int Attempt; 13 | public int BallAmount; 14 | public string CatchType; 15 | public double Distance; 16 | public int Exp; 17 | public int FamilyCandies; 18 | public ItemId Pokeball; 19 | public double Probability; 20 | public int Stardust; 21 | public CatchPokemonResponse.Types.CatchStatus Status; 22 | } 23 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonDisappearEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 8 | { 9 | public class PokemonDisappearEvent : IEvent 10 | { 11 | public ulong EncounterId; 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonEvolveDoneEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 8 | { 9 | public class PokemonEvolveDoneEvent : BaseNewPokemonEvent 10 | { 11 | //public int Cp; 12 | //public ulong Uid; 13 | //public PokemonId Id; 14 | //public double Perfection; 15 | //public PokemonFamilyId Family; 16 | //public int Candy; 17 | //public double Level; 18 | //public PokemonMove Move1; 19 | //public PokemonMove Move2; 20 | //public PokemonType Type1; 21 | //public PokemonType Type2; 22 | //public StatsAttributes Stats; 23 | //public int MaxCp; 24 | //public int Stamina; 25 | //public int MaxStamina; 26 | //public int PossibleCp; 27 | //public int CandyToEvolve; 28 | } 29 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonEvolveEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Enums; 4 | using POGOProtos.Networking.Responses; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 9 | { 10 | public class PokemonEvolveEvent : IEvent 11 | { 12 | public ulong Uid; 13 | public int Exp; 14 | public PokemonId Id; 15 | public EvolvePokemonResponse.Types.Result Result; 16 | } 17 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonFavoriteEvent.cs: -------------------------------------------------------------------------------- 1 | using POGOProtos.Enums; 2 | 3 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 4 | { 5 | public class PokemonFavoriteEvent : IEvent 6 | { 7 | public ulong Uid; 8 | public PokemonId Pokemon; 9 | public int Cp; 10 | public double Iv; 11 | public int Candies; 12 | public bool Favoured; 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonListEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Collections.Generic; 4 | using POGOProtos.Data; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 9 | { 10 | public class PokemonListEvent : IEvent 11 | { 12 | public List PokemonList; 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonSettingsEvent.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using POGOProtos.Settings.Master; 3 | 4 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 5 | { 6 | public class PokemonSettingsEvent : IEvent 7 | { 8 | public List Data; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonStatsChangedEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Enums; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 8 | { 9 | public class PokemonStatsChangedEvent : IEvent 10 | { 11 | public string Name; 12 | public ulong Uid; 13 | public PokemonFamilyId Family; 14 | public int Candy; 15 | public int Cp; 16 | public double Iv; 17 | public PokemonId Id; 18 | public bool Favourite; 19 | public int MaxCp; 20 | public int IvAtk; 21 | public int IvDef; 22 | public float Cpm; 23 | public float Weight; 24 | public double Level; 25 | public int Stamina; 26 | public int StaminaMax; 27 | } 28 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/PokemonsFoundEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Collections.Generic; 4 | using POGOProtos.Map.Pokemon; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 9 | { 10 | public class PokemonsFoundEvent : IEvent 11 | { 12 | public IEnumerable Pokemons; 13 | } 14 | 15 | public class PokemonsWildFoundEvent : IEvent 16 | { 17 | public IEnumerable Pokemons; 18 | } 19 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/TransferPokemonEvent.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using POGOProtos.Enums; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 8 | { 9 | public class TransferPokemonEvent : IEvent 10 | { 11 | public ulong Uid; 12 | public int BestCp; 13 | public double BestPerfection; 14 | public int Cp; 15 | public PokemonFamilyId Family; 16 | public int FamilyCandies; 17 | public PokemonId Id; 18 | public double Perfection; 19 | } 20 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Event/Pokemon/UseBerryEvent.cs: -------------------------------------------------------------------------------- 1 | namespace PoGo.PokeMobBot.Logic.Event.Pokemon 2 | { 3 | public class UseBerryEvent : IEvent 4 | { 5 | public int Count; 6 | } 7 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Extensions/PropertyNotification.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel; 2 | using System.Runtime.CompilerServices; 3 | 4 | namespace PoGo.PokeMobBot.Logic.Extensions 5 | { 6 | public class PropertyNotification : INotifyPropertyChanged 7 | { 8 | public event PropertyChangedEventHandler PropertyChanged = delegate { }; 9 | 10 | internal void OnPropertyChanged([CallerMemberName] string propertyName = null) 11 | { 12 | PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));} 13 | 14 | internal void OnPropertyChangedByName(string propertyName = null) 15 | { 16 | PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Extensions/RandomExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace PoGo.PokeMobBot.Logic.Extensions 8 | { 9 | public static class RandomExtensions 10 | { 11 | /// 12 | /// Extension method to Random to return a value in a certain range. 13 | /// 14 | /// Random object. 15 | /// Minimum value, inclusive. 16 | /// Maximum value, inclusive. 17 | /// A value between min and max, inclusive. 18 | public static double NextInRange(this Random rng, double min, double max) 19 | { 20 | return rng.NextDouble() * (max - min) + min; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Localization/Localizer.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using PoGo.PokeMobBot.Logic.Common; 4 | 5 | #endregion 6 | 7 | namespace PoGo.PokeMobBot.Logic.Localization 8 | { 9 | public interface ILocalizer 10 | { 11 | string GetFormat(TranslationString key); 12 | string GetFormat(TranslationString key, params object[] data); 13 | } 14 | 15 | public class Localizer : ILocalizer 16 | { 17 | public string GetFormat(TranslationString key) 18 | { 19 | return ""; 20 | } 21 | 22 | public string GetFormat(TranslationString key, params object[] data) 23 | { 24 | return ""; 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/PoGoUtils/CustomRoute.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using GeoCoordinatePortable; 3 | 4 | namespace PoGo.PokeMobBot.Logic.PoGoUtils 5 | { 6 | public class CustomRoute 7 | { 8 | public List RoutePoints = new List(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Service/BotService.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using PoGo.PokeMobBot.Logic.State; 4 | using PoGo.PokeMobBot.Logic.Tasks; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Service 9 | { 10 | public class BotService 11 | { 12 | public ILogin LoginTask; 13 | public ISession Session; 14 | 15 | public void Run() 16 | { 17 | LoginTask.DoLogin(); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/State/IState.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Threading; 4 | using System.Threading.Tasks; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.State 9 | { 10 | public interface IState 11 | { 12 | Task Execute(ISession session, CancellationToken cancellationToken); 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Tasks/GetBuddyWalkedTask.cs: -------------------------------------------------------------------------------- 1 | using System.Threading; 2 | using System.Threading.Tasks; 3 | using PoGo.PokeMobBot.Logic.Event.Pokemon; 4 | using PoGo.PokeMobBot.Logic.State; 5 | 6 | namespace PoGo.PokeMobBot.Logic.Tasks 7 | { 8 | internal class GetBuddyWalkedTask 9 | { 10 | public static async Task Execute(ISession session, CancellationToken token) 11 | { 12 | var resp = await session.Client.Inventory.GetBuddyWalked(); 13 | 14 | //if (resp.FamilyCandyId != PokemonFamilyId.FamilyUnset) 15 | //{ 16 | session.EventDispatcher.Send(new BuddyWalkedEvent 17 | { 18 | CandyEarnedCount = resp.CandyEarnedCount, 19 | FamilyCandyId = resp.FamilyCandyId, 20 | Success = resp.Success 21 | }); 22 | //} 23 | await Task.Delay(session.LogicSettings.DelayBetweenPlayerActions, token); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Tasks/GetPokeDexCount.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.State; 2 | using System.Linq; 3 | using System.Threading; 4 | using System.Threading.Tasks; 5 | using PoGo.PokeMobBot.Logic.Logging; 6 | 7 | namespace PoGo.PokeMobBot.Logic.Tasks 8 | { 9 | class GetPokeDexCount 10 | { 11 | public static async Task Execute(ISession session, CancellationToken cancellationToken) 12 | { 13 | await session.Inventory.UpdatePokeDex(); 14 | var _totalUniqueEncounters = session.PokeDex.Select(i => new { Pokemon = i.Id, Captures = i.CapturedTimes }); 15 | var _totalCaptures = _totalUniqueEncounters.Count(i => i.Captures > 0); 16 | var _totalData = session.PokeDex.Count(); 17 | 18 | Logger.Write($"Seen: {_totalData}, Captured: {_totalCaptures}"); 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Tasks/Login.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System; 4 | using PoGo.PokeMobBot.Logic.State; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Tasks 9 | { 10 | public interface ILogin 11 | { 12 | void DoLogin(); 13 | } 14 | 15 | public class Login : ILogin 16 | { 17 | private readonly ISession _session; 18 | 19 | public Login(ISession session) 20 | { 21 | _session = session; 22 | } 23 | 24 | public void DoLogin() 25 | { 26 | try 27 | { 28 | _session.Client.Login.DoLogin().Wait(); 29 | } 30 | catch (AggregateException ae) 31 | { 32 | throw ae.Flatten().InnerException; 33 | } 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Tasks/PlayerStatsTask.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using PoGo.PokeMobBot.Logic.Event; 6 | using PoGo.PokeMobBot.Logic.State; 7 | using System; 8 | using PoGo.PokeMobBot.Logic.Event.Player; 9 | 10 | #endregion 11 | 12 | namespace PoGo.PokeMobBot.Logic.Tasks 13 | { 14 | public class PlayerStatsTask 15 | { 16 | public static async Task Execute(ISession session, Action action) 17 | { 18 | var playersProfile = (await session.Inventory.GetPlayerStats())? 19 | .ToList(); 20 | 21 | action( 22 | new PlayerStatsEvent 23 | { 24 | PlayerStats = playersProfile, 25 | }); 26 | 27 | await Task.Delay(session.LogicSettings.DelayBetweenPlayerActions); 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Tasks/PokemonSettingsTask.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using PoGo.PokeMobBot.Logic.Event; 7 | using PoGo.PokeMobBot.Logic.Event.Pokemon; 8 | using PoGo.PokeMobBot.Logic.State; 9 | 10 | #endregion 11 | 12 | namespace PoGo.PokeMobBot.Logic.Tasks 13 | { 14 | public class PokemonSettingsTask 15 | { 16 | public static async Task Execute(ISession session, Action action) 17 | { 18 | var settings = await session.Inventory.GetPokemonSettings(); 19 | 20 | action(new PokemonSettingsEvent 21 | { 22 | Data = settings.ToList() 23 | }); 24 | 25 | await Task.Delay(session.LogicSettings.DelayBetweenPlayerActions); 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Tasks/SetPlayerTeamTask.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System.Threading.Tasks; 4 | using PoGo.PokeMobBot.Logic.State; 5 | using PoGo.PokeMobBot.Logic.Event.Player; 6 | using POGOProtos.Enums; 7 | using POGOProtos.Networking.Responses; 8 | 9 | #endregion 10 | 11 | namespace PoGo.PokeMobBot.Logic.Tasks 12 | { 13 | public class SetPlayerTeamTask 14 | { 15 | public static async Task Execute(ISession session, TeamColor team) 16 | { 17 | if (session.Profile.PlayerData.Team != TeamColor.Neutral || team == TeamColor.Neutral) return; 18 | 19 | var teamResponse = await session.Client.Player.SetPlayerTeam(team); 20 | 21 | if (teamResponse.Status == SetPlayerTeamResponse.Types.Status.Success) 22 | { 23 | session.EventDispatcher.Send(new TeamSetEvent 24 | { 25 | Color = team 26 | }); 27 | } 28 | 29 | 30 | await Task.Delay(session.LogicSettings.DelayBetweenPlayerActions); 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Tasks/VerifyChallengeTask.cs: -------------------------------------------------------------------------------- 1 | using PoGo.PokeMobBot.Logic.State; 2 | using System.Threading.Tasks; 3 | using PoGo.PokeMobBot.Logic.Event.Logic; 4 | 5 | namespace PoGo.PokeMobBot.Logic.Tasks 6 | { 7 | public class VerifyChallengeTask 8 | { 9 | public static async Task Execute(ISession session, string token) 10 | { 11 | var resp = await session.Client.Misc.VerifyChallenge(token); 12 | 13 | session.EventDispatcher.Send(new VerifyChallengeEvent 14 | { 15 | Success = resp.Success 16 | }); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Utils/DelayingEvolveUtils.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System; 4 | using System.Threading; 5 | using System.Threading.Tasks; 6 | 7 | #endregion 8 | 9 | namespace PoGo.PokeMobBot.Logic.Utils 10 | { 11 | public static class DelayingEvolveUtils 12 | { 13 | private static readonly Random RandomDevice = new Random(); 14 | 15 | public static async Task Delay(int delay, int defdelay, double evolvevariation, CancellationToken cancellationToken) 16 | { 17 | if (delay > defdelay) 18 | { 19 | var randomFactor = evolvevariation; 20 | var randomMin = (int)(delay * (1 - randomFactor)); 21 | var randomMax = (int)(delay * (1 + randomFactor)); 22 | var randomizedDelay = RandomDevice.Next(randomMin, randomMax); 23 | 24 | await Task.Delay(randomizedDelay, cancellationToken); 25 | } 26 | else if (defdelay > 0) 27 | { 28 | await Task.Delay(defdelay, cancellationToken); 29 | } 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Utils/DelayingUtils.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System; 4 | using System.Threading.Tasks; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Utils 9 | { 10 | public static class DelayingUtils 11 | { 12 | private static readonly Random RandomDevice = new Random(); 13 | 14 | public static async Task Delay(int delay, int defdelay) 15 | { 16 | if (delay > defdelay) 17 | { 18 | var randomFactor = 0.3f; 19 | var randomMin = (int)(delay * (1 - randomFactor)); 20 | var randomMax = (int)(delay * (1 + randomFactor)); 21 | if (randomMin < defdelay) randomMin = defdelay; 22 | if (randomMax > delay) randomMax = delay; 23 | 24 | var randomizedDelay = RandomDevice.Next(randomMin, randomMax); 25 | 26 | await Task.Delay(randomizedDelay); 27 | } 28 | else if (defdelay > 0) 29 | { 30 | await Task.Delay(defdelay); 31 | } 32 | } 33 | } 34 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Utils/InventoryUtils.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Google.Protobuf.Collections; 7 | using POGOProtos.Inventory.Item; 8 | 9 | namespace PoGo.PokeMobBot.Logic.Utils 10 | { 11 | public static class InventoryUtils 12 | { 13 | public static List> ToItemList(this RepeatedField awards) 14 | { 15 | var newItemsList = new List>(); 16 | if (awards == null || awards.Count == 0) return newItemsList; 17 | foreach (var item in awards) 18 | { 19 | newItemsList.Add(Tuple.Create(item.ItemId, item.ItemCount)); 20 | } 21 | return newItemsList;; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Utils/JitterUtils.cs: -------------------------------------------------------------------------------- 1 | #region using directives 2 | 3 | using System; 4 | using System.Threading.Tasks; 5 | 6 | #endregion 7 | 8 | namespace PoGo.PokeMobBot.Logic.Utils 9 | { 10 | public static class JitterUtils 11 | { 12 | private static readonly Random RandomDevice = new Random(); 13 | 14 | public static Task RandomDelay(int min, int max) 15 | { 16 | return Task.Delay(RandomDevice.Next(min, max)); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/Utils/ScheduleAction.cs: -------------------------------------------------------------------------------- 1 | using System.Linq; 2 | using Newtonsoft.Json; 3 | 4 | namespace PoGo.PokeMobBot.Logic.Utils 5 | { 6 | public class ScheduleAction 7 | { 8 | public int Hour; 9 | public int Day; 10 | 11 | [JsonIgnore] 12 | public bool Done; 13 | 14 | [JsonIgnore] 15 | public string Args 16 | { 17 | get 18 | { 19 | if (ActionArgs == null || ActionArgs.Length == 0) return ""; 20 | return ActionArgs.Aggregate((x, v) => x + " | " + v); 21 | } 22 | } 23 | 24 | public ScheduleActionType ActionType { get; set; } 25 | public string[] ActionArgs; 26 | } 27 | 28 | public enum ScheduleActionType 29 | { 30 | ChangeRoute, 31 | ChangeLocation, 32 | ChangeSettings 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/amd64/sqlceca40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/PoGo.PokeMobBot.Logic/amd64/sqlceca40.dll -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/amd64/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/PoGo.PokeMobBot.Logic/amd64/sqlcecompact40.dll -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/amd64/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/PoGo.PokeMobBot.Logic/amd64/sqlceer40EN.dll -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/amd64/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/PoGo.PokeMobBot.Logic/amd64/sqlceme40.dll -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/amd64/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/PoGo.PokeMobBot.Logic/amd64/sqlceqp40.dll -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/amd64/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lunat1q/Catchem-PoGo/56c200893e86d4dfd2a829adc969a85c5f83409e/Source/PoGo.PokeMobBot.Logic/amd64/sqlcese40.dll -------------------------------------------------------------------------------- /Source/PoGo.PokeMobBot.Logic/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Enums/AuthType.cs: -------------------------------------------------------------------------------- 1 | namespace PokemonGo.RocketAPI.Enums 2 | { 3 | public enum AuthType 4 | { 5 | Google, 6 | Ptc 7 | } 8 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Exceptions/AccessTokenExpiredException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Exceptions 4 | { 5 | public class AccessTokenExpiredException : Exception 6 | { 7 | public AccessTokenExpiredException(string msg = ""): base(msg) 8 | { 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Exceptions/AccountNotVerifiedException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Exceptions 4 | { 5 | public class AccountNotVerifiedException : Exception 6 | { 7 | public AccountNotVerifiedException(string message) : base(message) 8 | { 9 | 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Exceptions/GoogleException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Exceptions 4 | { 5 | public class GoogleException : Exception 6 | { 7 | public GoogleException(string message) : base(message) 8 | { 9 | 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Exceptions/GoogleOfflineException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Exceptions 4 | { 5 | public class GoogleOfflineException : Exception 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Exceptions/InvalidResponseException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Exceptions 4 | { 5 | public class InvalidResponseException : Exception 6 | { 7 | public InvalidResponseException() 8 | {} 9 | 10 | public InvalidResponseException(string message) 11 | : base(message) 12 | { } 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Exceptions/LoginFailedException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Exceptions 4 | { 5 | public class LoginFailedException : Exception 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Exceptions/PTCOfflineException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Exceptions 4 | { 5 | public class PtcOfflineException : Exception 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Extensions 4 | { 5 | public static class DateTimeExtensions 6 | { 7 | public static long ToUnixTime(this DateTime date) 8 | { 9 | var epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); 10 | return Convert.ToInt64((date - epoch).TotalMilliseconds); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Extensions/RandomExtension.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Extensions 4 | { 5 | public static class RandomExtensions 6 | { 7 | /// 8 | /// Extension method to Random to return a value in a certain range. 9 | /// 10 | /// Random object. 11 | /// Minimum value, inclusive. 12 | /// Maximum value, inclusive. 13 | /// A value between min and max, inclusive. 14 | public static double NextInRange(this Random rng, double min, double max) 15 | { 16 | return rng.NextDouble() * (max - min) + min; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Helpers/JsonHelper.cs: -------------------------------------------------------------------------------- 1 | using Newtonsoft.Json.Linq; 2 | 3 | namespace PokemonGo.RocketAPI.Helpers 4 | { 5 | public class JsonHelper 6 | { 7 | public static string GetValue(string json, string key) 8 | { 9 | var jObject = JObject.Parse(json); 10 | return jObject[key].ToString(); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Helpers/RandomHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Helpers 4 | { 5 | public class RandomHelper 6 | { 7 | private static readonly Random Random = new Random(); 8 | 9 | public static long GetLongRandom(long min, long max) 10 | { 11 | var buf = new byte[8]; 12 | Random.NextBytes(buf); 13 | var longRand = BitConverter.ToInt64(buf, 0); 14 | 15 | return Math.Abs(longRand%(max - min)) + min; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Helpers/Utils.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PokemonGo.RocketAPI.Helpers 4 | { 5 | public class Utils 6 | { 7 | public static ulong FloatAsUlong(double value) 8 | { 9 | var bytes = BitConverter.GetBytes(value); 10 | return BitConverter.ToUInt64(bytes, 0); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Login/ILoginType.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace PokemonGo.RocketAPI.Login 4 | { 5 | /// 6 | /// Interface for the login into the game using either Google or PTC 7 | /// 8 | interface ILoginType 9 | { 10 | /// 11 | /// Gets the access token. 12 | /// 13 | /// 14 | Task GetAccessToken(); 15 | } 16 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/PoGo.RocketAPI.csproj.DotSettings: -------------------------------------------------------------------------------- 1 |  2 | True 3 | True -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/Resources.cs: -------------------------------------------------------------------------------- 1 | namespace PokemonGo.RocketAPI 2 | { 3 | public class Resources 4 | { 5 | public const string RpcUrl = @"https://pgorelease.nianticlabs.com/plfe/rpc"; 6 | public const string NumberedRpcUrl = @"https://pgorelease.nianticlabs.com/plfe/{0}/rpc"; 7 | 8 | public const string PtcLoginUrl = 9 | "https://sso.pokemon.com/sso/login?service=https%3A%2F%2Fsso.pokemon.com%2Fsso%2Foauth2.0%2FcallbackAuthorize"; 10 | 11 | public const string PtcLoginOauth = "https://sso.pokemon.com/sso/oauth2.0/accessToken"; 12 | public const string GoogleGrantRefreshAccessUrl = "https://android.clients.google.com/auth"; 13 | } 14 | } -------------------------------------------------------------------------------- /Source/PoGoAPI/PoGo.RocketAPI/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Source/PoGoAPI/README.md: -------------------------------------------------------------------------------- 1 | #POGO API HERE 2 | Thanks to AeonLucid -------------------------------------------------------------------------------- /latest.version: -------------------------------------------------------------------------------- 1 | 1.6.2.0 2 | --------------------------------------------------------------------------------