(no message)

Spegeli [2016-07-24 02:38:24]

Filename
PokemonGo.RocketAPI.Console/Program.cs
PokemonGo.RocketAPI.Console/Settings.cs
PokemonGo.RocketAPI.Logic/Inventory.cs
PokemonGo.RocketAPI.Logic/Logic.cs
PokemonGo.RocketAPI.Logic/Navigation.cs
PokemonGo.RocketAPI/Client.cs
PokemonGo.RocketAPI/GeneratedCode/AllEnum.cs
PokemonGo.RocketAPI/GeneratedCode/Payloads.cs
PokemonGo.RocketAPI/Helpers/Utils.cs
PokemonGo.RocketAPI/ISettings.cs
PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
PokemonGo.RocketAPI/Proto/Payloads.proto
diff --git a/PokemonGo.RocketAPI.Console/Program.cs b/PokemonGo.RocketAPI.Console/Program.cs
index 63e4498..31afbbb 100644
--- a/PokemonGo.RocketAPI.Console/Program.cs
+++ b/PokemonGo.RocketAPI.Console/Program.cs
@@ -38,9 +38,15 @@ namespace PokemonGo.RocketAPI.Console
                     Thread.Sleep(60000);
                     new Logic.Logic(new Settings()).Execute().Wait();
                 }
+                catch (AccountNotVerifiedException)
+                {
+                    Logger.Error("Account not verified. - Exiting");
+                    Environment.Exit(0);
+                }
                 catch (Exception ex)
                 {
                     Logger.Error($"Unhandled exception: {ex}");
+                    new Logic.Logic(new Settings()).Execute().Wait();
                 }
             });
              System.Console.ReadLine();
diff --git a/PokemonGo.RocketAPI.Console/Settings.cs b/PokemonGo.RocketAPI.Console/Settings.cs
index 09ec3c7..4178417 100644
--- a/PokemonGo.RocketAPI.Console/Settings.cs
+++ b/PokemonGo.RocketAPI.Console/Settings.cs
@@ -1,11 +1,11 @@
 #region

-using PokemonGo.RocketAPI.Enums;
 using System;
-using System.IO;
-using System.Reflection;
 using System.Collections.Generic;
-using AllEnum;
+using System.IO;
+using PokemonGo.RocketAPI.Enums;
+using PokemonGo.RocketAPI.GeneratedCode;
+
 #endregion


diff --git a/PokemonGo.RocketAPI.Logic/Inventory.cs b/PokemonGo.RocketAPI.Logic/Inventory.cs
index 3f18b8f..caa4f91 100644
--- a/PokemonGo.RocketAPI.Logic/Inventory.cs
+++ b/PokemonGo.RocketAPI.Logic/Inventory.cs
@@ -1,13 +1,13 @@
 #region

-using System.Collections.Concurrent;
-using System;
-using System.Threading;
 using System.Collections.Generic;
 using System.Linq;
 using System.Threading.Tasks;
-using AllEnum;
+using PokemonGo.RocketAPI.Enums;
 using PokemonGo.RocketAPI.GeneratedCode;
+using System.Collections.Concurrent;
+using System;
+using System.Threading;

 #endregion

@@ -17,60 +17,15 @@ namespace PokemonGo.RocketAPI.Logic
     public class Inventory
     {
         private readonly Client _client;
+        public static DateTime _lastRefresh;
+        public static GetInventoryResponse _cachedInventory;

         public Inventory(Client client)
         {
             _client = client;
         }

-        public async Task<IEnumerable<PokemonData>> GetPokemons()
-        {
-            var inventory = await _client.GetInventory();
-            return
-                inventory.InventoryDelta.InventoryItems.Select(i => i.InventoryItemData?.Pokemon)
-                    .Where(p => p != null && p.PokemonId > 0);
-        }
-
-        public async Task<IEnumerable<PokemonFamily>> GetPokemonFamilies()
-        {
-            var inventory = await _client.GetInventory();
-            return
-                inventory.InventoryDelta.InventoryItems.Select(i => i.InventoryItemData?.PokemonFamily)
-                    .Where(p => p != null && p.FamilyId != PokemonFamilyId.FamilyUnset);
-        }
-
-        public async Task<IEnumerable<PokemonSettings>> GetPokemonSettings()
-        {
-            var templates = await _client.GetItemTemplates();
-            return
-                templates.ItemTemplates.Select(i => i.PokemonSettings)
-                    .Where(p => p != null && p.FamilyId != PokemonFamilyId.FamilyUnset);
-        }
-
-        public async Task<IEnumerable<PokemonData>> GetHighestsCP(int limit)
-        {
-            var myPokemon = await GetPokemons();
-            var pokemons = myPokemon.ToList();
-            return pokemons.OrderByDescending(x => x.Cp).ThenBy(n => n.StaminaMax).Take(limit);
-        }
-
-        public async Task<PokemonData> GetHighestPokemonOfTypeByCP(PokemonData pokemon)
-        {
-            var myPokemon = await GetPokemons();
-            var pokemons = myPokemon.ToList();
-            return pokemons.Where(x => x.PokemonId == pokemon.PokemonId)
-                            .OrderByDescending(x => x.Cp)
-                            .First();
-        }
-
-        public async Task<IEnumerable<PokemonData>> GetHighestsPerfect(int limit)
-        {
-            var myPokemon = await GetPokemons();
-            var pokemons = myPokemon.ToList();
-            return pokemons.OrderByDescending(Logic.CalculatePokemonPerfection).Take(limit);
-        }
-
-        public async Task<IEnumerable<PokemonData>> GetDuplicatePokemonToTransfer(bool keepPokemonsThatCanEvolve = false, int KeepMinDuplicatePokemon = 1, IEnumerable<PokemonId> filter = null)
+        public async Task<IEnumerable<PokemonData>> GetDuplicatePokemonToTransfer(bool keepPokemonsThatCanEvolve = false, IEnumerable<PokemonId> filter = null)
         {
             var myPokemon = await GetPokemons();

@@ -119,10 +74,96 @@ namespace PokemonGo.RocketAPI.Logic
                     p =>
                         p.OrderByDescending(x => x.Cp)
                          .ThenBy(n => n.StaminaMax)
-                         .Skip(KeepMinDuplicatePokemon)
+                         .Skip(_client.Settings.KeepMinDuplicatePokemon)
                          .ToList());
         }

+        public async Task<IEnumerable<PokemonData>> GetHighestsCP(int limit)
+        {
+            var myPokemon = await GetPokemons();
+            var pokemons = myPokemon.ToList();
+            return pokemons.OrderByDescending(x => x.Cp).ThenBy(n => n.StaminaMax).Take(limit);
+        }
+
+        public async Task<IEnumerable<PokemonData>> GetHighestsPerfect(int limit)
+        {
+            var myPokemon = await GetPokemons();
+            var pokemons = myPokemon.ToList();
+            return pokemons.OrderByDescending(PokemonInfo.CalculatePokemonPerfection).Take(limit);
+        }
+
+        public async Task<PokemonData> GetHighestPokemonOfTypeByCP(PokemonData pokemon)
+        {
+            var myPokemon = await GetPokemons();
+            var pokemons = myPokemon.ToList();
+            return pokemons.Where(x => x.PokemonId == pokemon.PokemonId)
+                .OrderByDescending(x => x.Cp)
+                .FirstOrDefault();
+        }
+
+        public async Task<int> GetItemAmountByType(MiscEnums.Item type)
+        {
+            var pokeballs = await GetItems();
+            return pokeballs.FirstOrDefault(i => (MiscEnums.Item)i.Item_ == type)?.Count ?? 0;
+        }
+
+        public async Task<IEnumerable<Item>> GetItems()
+        {
+            var inventory = await getCachedInventory(_client);
+            return inventory.InventoryDelta.InventoryItems
+                .Select(i => i.InventoryItemData?.Item)
+                .Where(p => p != null);
+        }
+
+        public async Task<IEnumerable<Item>> GetItemsToRecycle(ISettings settings)
+        {
+            var myItems = await GetItems();
+
+            return myItems
+                .Where(x => settings.ItemRecycleFilter.Any(f => f.Key == (ItemId)x.Item_ && x.Count > f.Value))
+                .Select(
+                    x =>
+                        new Item
+                        {
+                            Item_ = x.Item_,
+                            Count = x.Count - settings.ItemRecycleFilter.Single(f => f.Key == (ItemId)x.Item_).Value,
+                            Unseen = x.Unseen
+                        });
+        }
+
+        public async Task<IEnumerable<PlayerStats>> GetPlayerStats()
+        {
+            var inventory = await getCachedInventory(_client);
+            return inventory.InventoryDelta.InventoryItems
+                .Select(i => i.InventoryItemData?.PlayerStats)
+                .Where(p => p != null);
+        }
+
+        public async Task<IEnumerable<PokemonFamily>> GetPokemonFamilies()
+        {
+            var inventory = await getCachedInventory(_client);
+            return
+                inventory.InventoryDelta.InventoryItems.Select(i => i.InventoryItemData?.PokemonFamily)
+                    .Where(p => p != null && p.FamilyId != PokemonFamilyId.FamilyUnset);
+        }
+
+        public async Task<IEnumerable<PokemonData>> GetPokemons()
+        {
+            var inventory = await getCachedInventory(_client);
+            return
+                inventory.InventoryDelta.InventoryItems.Select(i => i.InventoryItemData?.Pokemon)
+                    .Where(p => p != null && p.PokemonId > 0);
+        }
+
+        public async Task<IEnumerable<PokemonSettings>> GetPokemonSettings()
+        {
+            var templates = await _client.GetItemTemplates();
+            return
+                templates.ItemTemplates.Select(i => i.PokemonSettings)
+                    .Where(p => p != null && p.FamilyId != PokemonFamilyId.FamilyUnset);
+        }
+
+
         public async Task<IEnumerable<PokemonData>> GetPokemonToEvolve(IEnumerable<PokemonId> filter = null)
         {
             var myPokemons = await GetPokemons();
@@ -152,49 +193,39 @@ namespace PokemonGo.RocketAPI.Logic
                 var pokemonCandyNeededAlready =
                     pokemonToEvolve.Count(
                         p => pokemonSettings.Single(x => x.PokemonId == p.PokemonId).FamilyId == settings.FamilyId) *
-                    settings.CandyToEvolve; if (familyCandy.Candy - pokemonCandyNeededAlready > settings.CandyToEvolve)
+                    settings.CandyToEvolve;
+                if (familyCandy.Candy - pokemonCandyNeededAlready > settings.CandyToEvolve)
                     pokemonToEvolve.Add(pokemon);
             }

             return pokemonToEvolve;
         }

-        public async Task<IEnumerable<PlayerStats>> GetPlayerStats()
+        public static async Task<GetInventoryResponse> getCachedInventory(Client _client)
         {
-            var inventory = await _client.GetInventory();
-            return inventory.InventoryDelta.InventoryItems
-                .Select(i => i.InventoryItemData?.PlayerStats)
-                .Where(p => p != null);
-        }
+            var now = DateTime.UtcNow;
+            SemaphoreSlim ss = new SemaphoreSlim(10);

-        public async Task<IEnumerable<Item>> GetItems()
-        {
-            var inventory = await _client.GetInventory();
-            return inventory.InventoryDelta.InventoryItems
-                .Select(i => i.InventoryItemData?.Item)
-                .Where(p => p != null);
-        }
+            if (_lastRefresh != null && _lastRefresh.AddSeconds(30).Ticks > now.Ticks)
+            {
+                return _cachedInventory;
+            }
+            else
+            {
+                await ss.WaitAsync();
+                try
+                {
+                    _lastRefresh = now;
+                    _cachedInventory = await _client.GetInventory();
+                    return _cachedInventory;
+                }
+                finally
+                {
+                    ss.Release();
+                }
+            }

-        public async Task<int> GetItemAmountByType(MiscEnums.Item type)
-        {
-            var pokeballs = await GetItems();
-            return pokeballs.FirstOrDefault(i => (MiscEnums.Item)i.Item_ == type)?.Count ?? 0;
         }

-        public async Task<IEnumerable<Item>> GetItemsToRecycle(ISettings settings)
-        {
-            var myItems = await GetItems();
-
-            return myItems
-                .Where(x => settings.ItemRecycleFilter.Any(f => f.Key == (ItemId)x.Item_ && x.Count > f.Value))
-                .Select(
-                    x =>
-                        new Item
-                        {
-                            Item_ = x.Item_,
-                            Count = x.Count - settings.ItemRecycleFilter.Single(f => f.Key == (ItemId)x.Item_).Value,
-                            Unseen = x.Unseen
-                        });
-        }
     }
 }
diff --git a/PokemonGo.RocketAPI.Logic/Logic.cs b/PokemonGo.RocketAPI.Logic/Logic.cs
index 8ddf2e8..e79d9f4 100644
--- a/PokemonGo.RocketAPI.Logic/Logic.cs
+++ b/PokemonGo.RocketAPI.Logic/Logic.cs
@@ -5,13 +5,14 @@ using System.Collections.Generic;
 using System.Device.Location;
 using System.Linq;
 using System.Threading.Tasks;
-using AllEnum;
 using PokemonGo.RocketAPI.Enums;
 using PokemonGo.RocketAPI.Exceptions;
 using PokemonGo.RocketAPI.Extensions;
 using PokemonGo.RocketAPI.GeneratedCode;
 using PokemonGo.RocketAPI.Logic.Utils;
 using PokemonGo.RocketAPI.Helpers;
+using System.IO;
+using System.Text;

 #endregion

@@ -46,12 +47,12 @@ namespace PokemonGo.RocketAPI.Logic
                 Logger.Error($"Window will be auto closed in 15 seconds!");
                 await Task.Delay(15000);
                 System.Environment.Exit(1);
-            }else
+            } else
             {
                 Logger.Error($"Make sure Lat & Lng is right. Exit Program if not! Lat: {_client.CurrentLat} Lng: {_client.CurrentLng}");
                 for (int i = 3; i > 0; i--)
                 {
-                    Logger.Error($"Script will continue in {i*5} seconds!");
+                    Logger.Error($"Script will continue in {i * 5} seconds!");
                     await Task.Delay(5000);
                 }
             }
@@ -122,61 +123,58 @@ namespace PokemonGo.RocketAPI.Logic
         }

         public async Task PostLoginExecute()
-        {
+        {
             Logger.Normal(ConsoleColor.DarkGreen, $"Client logged in");

             while (true)
             {
-                    _playerProfile = await _client.GetProfile();
+                await Inventory.getCachedInventory(_client);
+                _playerProfile = await _client.GetProfile();

-                    _stats.updateConsoleTitle(_inventory);
+                _stats.updateConsoleTitle(_inventory);

-                    var _currentLevelInfos = await Statistics._getcurrentLevelInfos(_inventory);
+                var _currentLevelInfos = await Statistics._getcurrentLevelInfos(_inventory);
+
+                Logger.Normal(ConsoleColor.Yellow, "----------------------------");
+                if (_clientSettings.AuthType == AuthType.Ptc)
+                    Logger.Normal(ConsoleColor.Cyan, $"PTC Account: {_clientSettings.PtcUsername}\n");
+                //Logger.Normal(ConsoleColor.Cyan, "Password: " + _clientSettings.PtcPassword + "\n");
+                Logger.Normal(ConsoleColor.DarkGray, $"Latitude: {_clientSettings.DefaultLatitude}");
+                Logger.Normal(ConsoleColor.DarkGray, $"Longitude: {_clientSettings.DefaultLongitude}");
+                Logger.Normal(ConsoleColor.Yellow, "----------------------------");
+                Logger.Normal(ConsoleColor.DarkGray, "Your Account:\n");
+                Logger.Normal(ConsoleColor.DarkGray, $"Name: {_playerProfile.Profile.Username}");
+                Logger.Normal(ConsoleColor.DarkGray, $"Team: {_playerProfile.Profile.Team}");
+                Logger.Normal(ConsoleColor.DarkGray, $"Level: {_currentLevelInfos}");
+                Logger.Normal(ConsoleColor.DarkGray, $"Stardust: {_playerProfile.Profile.Currency.ToArray()[1].Amount}");
+                Logger.Normal(ConsoleColor.Yellow, "----------------------------");
+                await DisplayHighests();
+                Logger.Normal(ConsoleColor.Yellow, "----------------------------");
+
+                var PokemonsNotToTransfer = _clientSettings.PokemonsNotToTransfer;
+                var PokemonsNotToCatch = _clientSettings.PokemonsNotToCatch;
+                var PokemonsToEvolve = _clientSettings.PokemonsToEvolve;

-                    Logger.Normal(ConsoleColor.Yellow, "----------------------------");
-                    if (_clientSettings.AuthType == AuthType.Ptc)
-                        Logger.Normal(ConsoleColor.Cyan, $"PTC Account: {_clientSettings.PtcUsername}\n");
-                    //Logger.Normal(ConsoleColor.Cyan, "Password: " + _clientSettings.PtcPassword + "\n");
-                    Logger.Normal(ConsoleColor.DarkGray, $"Latitude: {_clientSettings.DefaultLatitude}");
-                    Logger.Normal(ConsoleColor.DarkGray, $"Longitude: {_clientSettings.DefaultLongitude}");
-                    Logger.Normal(ConsoleColor.Yellow, "----------------------------");
-                    Logger.Normal(ConsoleColor.DarkGray, "Your Account:\n");
-                    Logger.Normal(ConsoleColor.DarkGray, $"Name: {_playerProfile.Profile.Username}");
-                    Logger.Normal(ConsoleColor.DarkGray, $"Team: {_playerProfile.Profile.Team}");
-                    Logger.Normal(ConsoleColor.DarkGray, $"Level: {_currentLevelInfos}");
-                    Logger.Normal(ConsoleColor.DarkGray, $"Stardust: {_playerProfile.Profile.Currency.ToArray()[1].Amount}");
-                    Logger.Normal(ConsoleColor.Yellow, "----------------------------");
-                    await DisplayHighests();
-                    Logger.Normal(ConsoleColor.Yellow, "----------------------------");
-
-                    var PokemonsNotToTransfer = _clientSettings.PokemonsNotToTransfer;
-                    var PokemonsNotToCatch = _clientSettings.PokemonsNotToCatch;
-                    var PokemonsToEvolve = _clientSettings.PokemonsToEvolve;
-
-                    if (_clientSettings.EvolveAllPokemonWithEnoughCandy) await EvolveAllPokemonWithEnoughCandy(_clientSettings.PokemonsToEvolve);
-                    if (_clientSettings.TransferDuplicatePokemon) await TransferDuplicatePokemon();
-                    await RecycleItems();
-                    await ExecuteFarmingPokestopsAndPokemons();
-
-                    /*
-                * Example calls below
-                *
-                var profile = await _client.GetProfile();
-                var settings = await _client.GetSettings();
-                var mapObjects = await _client.GetMapObjects();
-                var inventory = await _client.GetInventory();
-                var pokemons = inventory.InventoryDelta.InventoryItems.Select(i => i.InventoryItemData?.Pokemon).Where(p => p != null && p?.PokemonId > 0);
-                */
+                if (_clientSettings.EvolveAllPokemonWithEnoughCandy) await EvolveAllPokemonWithEnoughCandy(_clientSettings.PokemonsToEvolve);
+                if (_clientSettings.TransferDuplicatePokemon) await TransferDuplicatePokemon();
+                await PokemonToCSV();
+                await RecycleItems();
+                await ExecuteFarmingPokestopsAndPokemons();
+
+                /*
+            * Example calls below
+            *
+            var profile = await _client.GetProfile();
+            var settings = await _client.GetSettings();
+            var mapObjects = await _client.GetMapObjects();
+            var inventory = await _client.GetInventory();
+            var pokemons = inventory.InventoryDelta.InventoryItems.Select(i => i.InventoryItemData?.Pokemon).Where(p => p != null && p?.PokemonId > 0);
+            */

                 await Task.Delay(10000);
             }
         }

-        public static float CalculatePokemonPerfection(PokemonData poke)
-        {
-            return (poke.IndividualAttack * 2 + poke.IndividualDefense + poke.IndividualStamina) / (4.0f * 15.0f) * 100.0f;
-        }
-
         public async Task RepeatAction(int repeat, Func<Task> action)
         {
             for (int i = 0; i < repeat; i++)
@@ -245,7 +243,7 @@ namespace PokemonGo.RocketAPI.Logic

             if (pokemons != null && pokemons.Any())
                 Logger.Normal(ConsoleColor.Green, $"Found {pokemons.Count()} catchable Pokemon");
-
+
             foreach (var pokemon in pokemons)
             {
                 var distance = LocationUtils.CalculateDistanceInMeters(_client.CurrentLat, _client.CurrentLng, pokemon.Latitude, pokemon.Longitude);
@@ -257,8 +255,9 @@ namespace PokemonGo.RocketAPI.Logic
                     await CatchEncounter(encounter, pokemon);
                 else
                     Logger.Normal($"Encounter problem: {encounter.Status}");
+                if (pokemons.ElementAtOrDefault(pokemons.Count() - 1) != pokemon)
+                    await RandomHelper.RandomDelay(50, 200);
             }
-            await RandomHelper.RandomDelay(50, 200);
         }

         private async Task CatchEncounter(EncounterResponse encounter, MapPokemon pokemon)
@@ -277,7 +276,7 @@ namespace PokemonGo.RocketAPI.Logic
                     return;
                 }
                 var berries = inventoryBerries.Where(p => (ItemId)p.Item_ == bestBerry).FirstOrDefault();
-                if (bestBerry != AllEnum.ItemId.ItemUnknown && probability.HasValue && probability.Value < 0.35 && CalculatePokemonPerfection(encounter?.WildPokemon?.PokemonData) >= _clientSettings.KeepMinIVPercentage)
+                if (bestBerry != ItemId.ItemUnknown && probability.HasValue && probability.Value < 0.35 && PokemonInfo.CalculatePokemonPerfection(encounter?.WildPokemon?.PokemonData) >= _clientSettings.KeepMinIVPercentage)
                 {
                     var useRaspberry = await _client.UseCaptureItem(pokemon.EncounterId, bestBerry, pokemon.SpawnpointId);
                     Logger.Normal($"(BERRY) {bestBerry} used, remaining: {berries.Count}");
@@ -298,8 +297,8 @@ namespace PokemonGo.RocketAPI.Logic
                 _stats.updateConsoleTitle(_inventory);
                 Logger.Normal(ConsoleColor.Yellow,
                     caughtPokemonResponse.Status == CatchPokemonResponse.Types.CatchStatus.CatchSuccess
-                    ? $"(POKEBATTLE) Caught {pokemon.PokemonId} (CP {encounter?.WildPokemon?.PokemonData?.Cp} | {Math.Round(CalculatePokemonPerfection(encounter?.WildPokemon?.PokemonData)).ToString("0.00")} % perfect) | Chance: {(float)((int)(encounter?.CaptureProbability?.CaptureProbability_.First() * 100)) / 100} | {Math.Round(distance)}m distance | with {bestPokeball} and received XP {caughtPokemonResponse.Scores.Xp.Sum()}"
-                    : $"(POKEBATTLE) Missed/Escaped {pokemon.PokemonId} (CP {encounter?.WildPokemon?.PokemonData?.Cp} | {Math.Round(CalculatePokemonPerfection(encounter?.WildPokemon?.PokemonData)).ToString("0.00")} % perfect) | Chance: {(float)((int)(encounter?.CaptureProbability?.CaptureProbability_.First() * 100)) / 100} {caughtPokemonResponse.Status} | {Math.Round(distance)}m distance | using a {bestPokeball}.."
+                    ? $"(POKEBATTLE) Caught {pokemon.PokemonId} Lvl {PokemonInfo.GetLevel(encounter?.WildPokemon?.PokemonData)} (CP {encounter?.WildPokemon?.PokemonData?.Cp}/{PokemonInfo.CalculateMaxCP(encounter?.WildPokemon?.PokemonData)} | {Math.Round(PokemonInfo.CalculatePokemonPerfection(encounter?.WildPokemon?.PokemonData)).ToString("0.00")} % perfect) | Chance: {(float)((int)(encounter?.CaptureProbability?.CaptureProbability_.First() * 100)) / 100} | {Math.Round(distance)}m distance | with {bestPokeball} and received XP {caughtPokemonResponse.Scores.Xp.Sum()}"
+                    : $"(POKEBATTLE) Missed/Escaped {pokemon.PokemonId} Lvl {PokemonInfo.GetLevel(encounter?.WildPokemon?.PokemonData)} (CP {encounter?.WildPokemon?.PokemonData?.Cp} | {Math.Round(PokemonInfo.CalculatePokemonPerfection(encounter?.WildPokemon?.PokemonData)).ToString("0.00")} % perfect) | Chance: {(float)((int)(encounter?.CaptureProbability?.CaptureProbability_.First() * 100)) / 100} {caughtPokemonResponse.Status} | {Math.Round(distance)}m distance | using a {bestPokeball}.."
                     );
                 await RandomHelper.RandomDelay(750, 1250);
             }
@@ -328,15 +327,15 @@ namespace PokemonGo.RocketAPI.Logic

         private async Task TransferDuplicatePokemon(bool keepPokemonsThatCanEvolve = false)
         {
-            var duplicatePokemons = await _inventory.GetDuplicatePokemonToTransfer(keepPokemonsThatCanEvolve, _clientSettings.KeepMinDuplicatePokemon, _clientSettings.PokemonsNotToTransfer);
+            var duplicatePokemons = await _inventory.GetDuplicatePokemonToTransfer(keepPokemonsThatCanEvolve, _clientSettings.PokemonsNotToTransfer);
             // Currently not returns the correct value
             //if (duplicatePokemons != null && duplicatePokemons.Any())
             //    Logger.Normal(ConsoleColor.DarkYellow, $"(TRANSFER) {duplicatePokemons.Count()} Pokemon:");

             foreach (var duplicatePokemon in duplicatePokemons)
             {
-                if (CalculatePokemonPerfection(duplicatePokemon) >= _clientSettings.KeepMinIVPercentage || duplicatePokemon.Cp > _clientSettings.KeepMinCP)
-                    continue;
+                //if (PokemonInfo.CalculatePokemonPerfection(duplicatePokemon) >= _clientSettings.KeepMinIVPercentage || duplicatePokemon.Cp > _clientSettings.KeepMinCP)
+                //    continue;

                 var transfer = await _client.TransferPokemon(duplicatePokemon.Id);

@@ -344,7 +343,7 @@ namespace PokemonGo.RocketAPI.Logic
                 _stats.updateConsoleTitle(_inventory);

                 var bestPokemonOfType = await _inventory.GetHighestPokemonOfTypeByCP(duplicatePokemon);
-                Logger.Normal(ConsoleColor.DarkYellow, $"(TRANSFER) {duplicatePokemon.PokemonId} (CP {duplicatePokemon.Cp} | {CalculatePokemonPerfection(duplicatePokemon).ToString("0.00")} % perfect) | (Best: {bestPokemonOfType.Cp} CP | {CalculatePokemonPerfection(bestPokemonOfType).ToString("0.00")} % perfect)");
+                Logger.Normal(ConsoleColor.DarkYellow, $"(TRANSFER) {duplicatePokemon.PokemonId} (CP {duplicatePokemon.Cp} | {PokemonInfo.CalculatePokemonPerfection(duplicatePokemon).ToString("0.00")} % perfect) | (Best: {bestPokemonOfType.Cp} CP | {PokemonInfo.CalculatePokemonPerfection(bestPokemonOfType).ToString("0.00")} % perfect)");
                 await Task.Delay(100);
             }
         }
@@ -401,17 +400,17 @@ namespace PokemonGo.RocketAPI.Logic
             return balls.OrderBy(g => g.Key).First().Key;
         }

-        private async Task<AllEnum.ItemId> GetBestBerry(WildPokemon pokemon)
+        private async Task<ItemId> GetBestBerry(WildPokemon pokemon)
         {
             var pokemonCp = pokemon?.PokemonData?.Cp;

             var items = await _inventory.GetItems();
-            var berries = items.Where(i => (AllEnum.ItemId)i.Item_ == AllEnum.ItemId.ItemRazzBerry
-                                        || (AllEnum.ItemId)i.Item_ == AllEnum.ItemId.ItemBlukBerry
-                                        || (AllEnum.ItemId)i.Item_ == AllEnum.ItemId.ItemNanabBerry
-                                        || (AllEnum.ItemId)i.Item_ == AllEnum.ItemId.ItemWeparBerry
-                                        || (AllEnum.ItemId)i.Item_ == AllEnum.ItemId.ItemPinapBerry).GroupBy(i => ((AllEnum.ItemId)i.Item_)).ToList();
-            if (berries.Count == 0 || pokemonCp <= 350) return AllEnum.ItemId.ItemUnknown;
+            var berries = items.Where(i => (ItemId)i.Item_ == ItemId.ItemRazzBerry
+                                        || (ItemId)i.Item_ == ItemId.ItemBlukBerry
+                                        || (ItemId)i.Item_ == ItemId.ItemNanabBerry
+                                        || (ItemId)i.Item_ == ItemId.ItemWeparBerry
+                                        || (ItemId)i.Item_ == ItemId.ItemPinapBerry).GroupBy(i => ((ItemId)i.Item_)).ToList();
+            if (berries.Count == 0 || pokemonCp <= 350) return ItemId.ItemUnknown;

             var razzBerryCount = await _inventory.GetItemAmountByType(MiscEnums.Item.ITEM_RAZZ_BERRY);
             var blukBerryCount = await _inventory.GetItemAmountByType(MiscEnums.Item.ITEM_BLUK_BERRY);
@@ -420,28 +419,28 @@ namespace PokemonGo.RocketAPI.Logic
             var pinapBerryCount = await _inventory.GetItemAmountByType(MiscEnums.Item.ITEM_PINAP_BERRY);

             if (pinapBerryCount > 0 && pokemonCp >= 2000)
-                return AllEnum.ItemId.ItemPinapBerry;
+                return ItemId.ItemPinapBerry;
             else if (weparBerryCount > 0 && pokemonCp >= 2000)
-                return AllEnum.ItemId.ItemWeparBerry;
+                return ItemId.ItemWeparBerry;
             else if (nanabBerryCount > 0 && pokemonCp >= 2000)
-                return AllEnum.ItemId.ItemNanabBerry;
+                return ItemId.ItemNanabBerry;
             else if (nanabBerryCount > 0 && pokemonCp >= 2000)
-                return AllEnum.ItemId.ItemBlukBerry;
+                return ItemId.ItemBlukBerry;

             if (weparBerryCount > 0 && pokemonCp >= 1500)
-                return AllEnum.ItemId.ItemWeparBerry;
+                return ItemId.ItemWeparBerry;
             else if (nanabBerryCount > 0 && pokemonCp >= 1500)
-                return AllEnum.ItemId.ItemNanabBerry;
+                return ItemId.ItemNanabBerry;
             else if (blukBerryCount > 0 && pokemonCp >= 1500)
-                return AllEnum.ItemId.ItemBlukBerry;
+                return ItemId.ItemBlukBerry;

             if (nanabBerryCount > 0 && pokemonCp >= 1000)
-                return AllEnum.ItemId.ItemNanabBerry;
+                return ItemId.ItemNanabBerry;
             else if (blukBerryCount > 0 && pokemonCp >= 1000)
-                return AllEnum.ItemId.ItemBlukBerry;
+                return ItemId.ItemBlukBerry;

             if (blukBerryCount > 0 && pokemonCp >= 500)
-                return AllEnum.ItemId.ItemBlukBerry;
+                return ItemId.ItemBlukBerry;

             return berries.OrderBy(g => g.Key).First().Key;
         }
@@ -469,14 +468,54 @@ namespace PokemonGo.RocketAPI.Logic
             Logger.Normal($"====== DisplayHighestsCP ======");
             var highestsPokemonCP = await _inventory.GetHighestsCP(5);
             foreach (var pokemon in highestsPokemonCP)
-                Logger.Normal($"# CP {pokemon.Cp}\t| ({CalculatePokemonPerfection(pokemon).ToString("0.00")}\t% perfect) NAME: '{pokemon.PokemonId}'");
+                Logger.Normal($"# CP {pokemon.Cp.ToString().PadLeft(4, ' ')}/{PokemonInfo.CalculateMaxCP(pokemon).ToString().PadLeft(4, ' ')} | ({PokemonInfo.CalculatePokemonPerfection(pokemon).ToString("0.00")}% perfect)\t| Lvl {PokemonInfo.GetLevel(pokemon)}\t NAME: '{pokemon.PokemonId}'");
             Logger.Normal($"====== DisplayHighestsPerfect ======");
             var highestsPokemonPerfect = await _inventory.GetHighestsPerfect(5);
             foreach (var pokemon in highestsPokemonPerfect)
             {
-                Logger.Normal($"# CP {pokemon.Cp}\t| ({CalculatePokemonPerfection(pokemon).ToString("0.00")}\t% perfect) NAME: '{pokemon.PokemonId}'");
+                Logger.Normal($"# CP {pokemon.Cp.ToString().PadLeft(4, ' ')}/{PokemonInfo.CalculateMaxCP(pokemon).ToString().PadLeft(4, ' ')} | ({PokemonInfo.CalculatePokemonPerfection(pokemon).ToString("0.00")}% perfect)\t| Lvl {PokemonInfo.GetLevel(pokemon)}\t NAME: '{pokemon.PokemonId}'");
             }
         }
-
+
+
+        private async Task PokemonToCSV(string filename = "PokeList.csv")
+        {
+            string path = Directory.GetCurrentDirectory() + "\\Export\\";
+            if (!Directory.Exists(path))
+                Directory.CreateDirectory(path);
+            if (Directory.Exists(path))
+            {
+                try
+                {
+                    if (File.Exists(path + filename))
+                        File.Delete(path + filename);
+                    if (!File.Exists(path + filename))
+                    {
+                        var AllPokemon = await _inventory.GetHighestsPerfect(1000);
+                        var csvExportPokemonAll = new StringBuilder();
+                        var columnnames = string.Format("{0};{1};{2};{3}", "#", "NAME", "CP", "PERFECTION");
+                        csvExportPokemonAll.AppendLine(columnnames);
+                        foreach (var pokemon in AllPokemon)
+                        {
+                            int POKENUMBER = (int)pokemon.PokemonId;
+                            var NAME = $"{pokemon.PokemonId}";
+                            var CP = $"{pokemon.Cp}";
+                            string PERFECTION = PokemonInfo.CalculatePokemonPerfection(pokemon).ToString("0.00");
+                            var pokedata = string.Format("{0};{1};{2};{3}", POKENUMBER, NAME, CP, PERFECTION);
+                            csvExportPokemonAll.AppendLine(pokedata);
+                        }
+                        Logger.Normal($"Export all Pokemon to {path + filename}");
+                        File.WriteAllText(path + filename, csvExportPokemonAll.ToString());
+                    }
+                }
+                catch
+                {
+                    Logger.Error("Datei offen?!");
+                }
+            }
+        }
+
+
+
     }
 }
\ No newline at end of file
diff --git a/PokemonGo.RocketAPI.Logic/Navigation.cs b/PokemonGo.RocketAPI.Logic/Navigation.cs
index 6073134..f2e217a 100644
--- a/PokemonGo.RocketAPI.Logic/Navigation.cs
+++ b/PokemonGo.RocketAPI.Logic/Navigation.cs
@@ -40,9 +40,6 @@ namespace PokemonGo.RocketAPI.Logic
             var result =
                 await
                     _client.UpdatePlayerLocation(waypoint.Latitude, waypoint.Longitude, _client.Settings.DefaultAltitude);
-
-            if (functionExecutedWhileWalking != null)
-                await functionExecutedWhileWalking();
             do
             {
                 var millisecondsUntilGetUpdatePlayerLocationResponse =
@@ -70,6 +67,8 @@ namespace PokemonGo.RocketAPI.Logic
                     await
                         _client.UpdatePlayerLocation(waypoint.Latitude, waypoint.Longitude,
                             _client.Settings.DefaultAltitude);
+                if (functionExecutedWhileWalking != null)
+                    await functionExecutedWhileWalking();// look for pokemon
                 await Task.Delay(Math.Min((int)(distanceToTarget / speedInMetersPerSecond * 1000), 3000));
             } while (LocationUtils.CalculateDistanceInMeters(sourceLocation, targetLocation) >= 30);

diff --git a/PokemonGo.RocketAPI/Client.cs b/PokemonGo.RocketAPI/Client.cs
index e377ca9..a812bd8 100644
--- a/PokemonGo.RocketAPI/Client.cs
+++ b/PokemonGo.RocketAPI/Client.cs
@@ -299,7 +299,7 @@ namespace PokemonGo.RocketAPI
             return await _httpClient.PostProtoPayload<Request, EncounterResponse>($"https://{_apiUrl}/rpc", encounterResponse);
         }

-        public async Task<UseItemCaptureRequest> UseCaptureItem(ulong encounterId, AllEnum.ItemId itemId, string spawnPointGuid)
+        public async Task<UseItemCaptureRequest> UseCaptureItem(ulong encounterId, ItemId itemId, string spawnPointGuid)
         {
             var customRequest = new UseItemCaptureRequest
             {
@@ -383,11 +383,11 @@ namespace PokemonGo.RocketAPI
             return await _httpClient.PostProtoPayload<Request, GetInventoryResponse>($"https://{_apiUrl}/rpc", inventoryRequest);
         }

-        public async Task<RecycleInventoryItemResponse> RecycleItem(AllEnum.ItemId itemId, int amount)
+        public async Task<RecycleInventoryItemResponse> RecycleItem(ItemId itemId, int amount)
         {
             var customRequest = new RecycleInventoryItem
             {
-                ItemId = (AllEnum.ItemId)Enum.Parse(typeof(AllEnum.ItemId), itemId.ToString()),
+                ItemId = (ItemId)Enum.Parse(typeof(ItemId), itemId.ToString()),
                 Count = amount
             };

diff --git a/PokemonGo.RocketAPI/GeneratedCode/AllEnum.cs b/PokemonGo.RocketAPI/GeneratedCode/AllEnum.cs
index afb8606..7c5d997 100644
--- a/PokemonGo.RocketAPI/GeneratedCode/AllEnum.cs
+++ b/PokemonGo.RocketAPI/GeneratedCode/AllEnum.cs
@@ -1,1111 +1,1829 @@
-// Generated by the protocol buffer compiler.  DO NOT EDIT!
-// source: AllEnum.proto
-#pragma warning disable 1591, 0612, 3021
-#region Designer generated code
-
-using pb = global::Google.Protobuf;
-using pbc = global::Google.Protobuf.Collections;
-using pbr = global::Google.Protobuf.Reflection;
-using scg = global::System.Collections.Generic;
-namespace AllEnum {
-
-  /// <summary>Holder for reflection information generated from AllEnum.proto</summary>
-  [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-  public static partial class AllEnumReflection {
-
-    #region Descriptor
-    /// <summary>File descriptor for AllEnum.proto</summary>
-    public static pbr::FileDescriptor Descriptor {
-      get { return descriptor; }
-    }
-    private static pbr::FileDescriptor descriptor;
-
-    static AllEnumReflection() {
-      byte[] descriptorData = global::System.Convert.FromBase64String(
-          string.Concat(
-            "Cg1BbGxFbnVtLnByb3RvEgdBbGxFbnVtKjYKDFJwY0RpcmVjdGlvbhILCgdV",
-            "TktOT1dOEAASDAoIUkVTUE9OU0UQARILCgdSRVFVRVNUEAIqNwoJVGVhbUNv",
-            "bG9yEgsKB05FVVRSQUwQABIICgRCTFVFEAESBwoDUkVEEAISCgoGWUVMTE9X",
-            "EAMqwwwKDVJlcXVlc3RNZXRob2QSEAoMTUVUSE9EX1VOU0VUEAASEQoNUExB",
-            "WUVSX1VQREFURRABEg4KCkdFVF9QTEFZRVIQAhIRCg1HRVRfSU5WRU5UT1JZ",
-            "EAQSFQoRRE9XTkxPQURfU0VUVElOR1MQBRIbChdET1dOTE9BRF9JVEVNX1RF",
-            "TVBMQVRFUxAGEiIKHkRPV05MT0FEX1JFTU9URV9DT05GSUdfVkVSU0lPThAH",
-            "Eg8KC0ZPUlRfU0VBUkNIEGUSDQoJRU5DT1VOVEVSEGYSEQoNQ0FUQ0hfUE9L",
-            "RU1PThBnEhAKDEZPUlRfREVUQUlMUxBoEgwKCElURU1fVVNFEGkSEwoPR0VU",
-            "X01BUF9PQkpFQ1RTEGoSFwoTRk9SVF9ERVBMT1lfUE9LRU1PThBuEhcKE0ZP",
-            "UlRfUkVDQUxMX1BPS0VNT04QbxITCg9SRUxFQVNFX1BPS0VNT04QcBITCg9V",
-            "U0VfSVRFTV9QT1RJT04QcRIUChBVU0VfSVRFTV9DQVBUVVJFEHISEQoNVVNF",
-            "X0lURU1fRkxFRRBzEhMKD1VTRV9JVEVNX1JFVklWRRB0EhAKDFRSQURFX1NF",
-            "QVJDSBB1Eg8KC1RSQURFX09GRkVSEHYSEgoOVFJBREVfUkVTUE9OU0UQdxIQ",
-            "CgxUUkFERV9SRVNVTFQQeBIWChJHRVRfUExBWUVSX1BST0ZJTEUQeRIRCg1H",
-            "RVRfSVRFTV9QQUNLEHoSEQoNQlVZX0lURU1fUEFDSxB7EhAKDEJVWV9HRU1f",
-            "UEFDSxB8EhIKDkVWT0xWRV9QT0tFTU9OEH0SFAoQR0VUX0hBVENIRURfRUdH",
-            "UxB+Eh8KG0VOQ09VTlRFUl9UVVRPUklBTF9DT01QTEVURRB/EhUKEExFVkVM",
-            "X1VQX1JFV0FSRFMQgAESGQoUQ0hFQ0tfQVdBUkRFRF9CQURHRVMQgQESEQoM",
-            "VVNFX0lURU1fR1lNEIUBEhQKD0dFVF9HWU1fREVUQUlMUxCGARIVChBTVEFS",
-            "VF9HWU1fQkFUVExFEIcBEg8KCkFUVEFDS19HWU0QiAESGwoWUkVDWUNMRV9J",
-            "TlZFTlRPUllfSVRFTRCJARIYChNDT0xMRUNUX0RBSUxZX0JPTlVTEIoBEhYK",
-            "EVVTRV9JVEVNX1hQX0JPT1NUEIsBEhsKFlVTRV9JVEVNX0VHR19JTkNVQkFU",
-            "T1IQjAESEAoLVVNFX0lOQ0VOU0UQjQESGAoTR0VUX0lOQ0VOU0VfUE9LRU1P",
-            "ThCOARIWChFJTkNFTlNFX0VOQ09VTlRFUhCPARIWChFBRERfRk9SVF9NT0RJ",
-            "RklFUhCQARITCg5ESVNLX0VOQ09VTlRFUhCRARIhChxDT0xMRUNUX0RBSUxZ",
-            "X0RFRkVOREVSX0JPTlVTEJIBEhQKD1VQR1JBREVfUE9LRU1PThCTARIZChRT",
-            "RVRfRkFWT1JJVEVfUE9LRU1PThCUARIVChBOSUNLTkFNRV9QT0tFTU9OEJUB",
-            "EhAKC0VRVUlQX0JBREdFEJYBEhkKFFNFVF9DT05UQUNUX1NFVFRJTkdTEJcB",
-            "EhUKEEdFVF9BU1NFVF9ESUdFU1QQrAISFgoRR0VUX0RPV05MT0FEX1VSTFMQ",
-            "rQISHAoXR0VUX1NVR0dFU1RFRF9DT0RFTkFNRVMQkQMSHQoYQ0hFQ0tfQ09E",
-            "RU5BTUVfQVZBSUxBQkxFEJIDEhMKDkNMQUlNX0NPREVOQU1FEJMDEg8KClNF",
-            "VF9BVkFUQVIQlAMSFAoPU0VUX1BMQVlFUl9URUFNEJUDEhsKFk1BUktfVFVU",
-            "T1JJQUxfQ09NUExFVEUQlgMSFgoRTE9BRF9TUEFXTl9QT0lOVFMQ9AMSCQoE",
-            "RUNITxCaBRIbChZERUJVR19VUERBVEVfSU5WRU5UT1JZELwFEhgKE0RFQlVH",
-            "X0RFTEVURV9QTEFZRVIQvQUSFwoSU0ZJREFfUkVHSVNUUkFUSU9OEKAGEhUK",
-            "EFNGSURBX0FDVElPTl9MT0cQoQYSGAoTU0ZJREFfQ0VSVElGSUNBVElPThCi",
-            "BhIRCgxTRklEQV9VUERBVEUQowYSEQoMU0ZJREFfQUNUSU9OEKQGEhEKDFNG",
-            "SURBX0RPV1NFUhClBhISCg1TRklEQV9DQVBUVVJFEKYGKs4XCgtQb2tlbW9u",
-            "TW92ZRIOCgpNT1ZFX1VOU0VUEAASEQoNVEhVTkRFUl9TSE9DSxABEhAKDFFV",
-            "SUNLX0FUVEFDSxACEgsKB1NDUkFUQ0gQAxIJCgVFTUJFUhAEEg0KCVZJTkVf",
-            "V0hJUBAFEgoKBlRBQ0tMRRAGEg4KClJBWk9SX0xFQUYQBxINCglUQUtFX0RP",
-            "V04QCBINCglXQVRFUl9HVU4QCRIICgRCSVRFEAoSCQoFUE9VTkQQCxIPCgtE",
-            "T1VCTEVfU0xBUBAMEggKBFdSQVAQDRIOCgpIWVBFUl9CRUFNEA4SCAoETElD",
-            "SxAPEg4KCkRBUktfUFVMU0UQEBIICgRTTU9HEBESCgoGU0xVREdFEBISDgoK",
-            "TUVUQUxfQ0xBVxATEg0KCVZJQ0VfR1JJUBAUEg8KC0ZMQU1FX1dIRUVMEBUS",
-            "DAoITUVHQUhPUk4QFhIPCgtXSU5HX0FUVEFDSxAXEhAKDEZMQU1FVEhST1dF",
-            "UhAYEhAKDFNVQ0tFUl9QVU5DSBAZEgcKA0RJRxAaEgwKCExPV19LSUNLEBsS",
-            "DgoKQ1JPU1NfQ0hPUBAcEg4KClBTWUNIT19DVVQQHRILCgdQU1lCRUFNEB4S",
-            "DgoKRUFSVEhRVUFLRRAfEg4KClNUT05FX0VER0UQIBINCglJQ0VfUFVOQ0gQ",
-            "IRIPCgtIRUFSVF9TVEFNUBAiEg0KCURJU0NIQVJHRRAjEhAKDEZMQVNIX0NB",
-            "Tk5PThAkEggKBFBFQ0sQJRIOCgpEUklMTF9QRUNLECYSDAoISUNFX0JFQU0Q",
-            "JxIMCghCTElaWkFSRBAoEg0KCUFJUl9TTEFTSBApEg0KCUhFQVRfV0FWRRAq",
-            "Eg0KCVRXSU5FRURMRRArEg4KClBPSVNPTl9KQUIQLBIOCgpBRVJJQUxfQUNF",
-            "EC0SDQoJRFJJTExfUlVOEC4SEgoOUEVUQUxfQkxJWlpBUkQQLxIOCgpNRUdB",
-            "X0RSQUlOEDASDAoIQlVHX0JVWloQMRIPCgtQT0lTT05fRkFORxAyEg8KC05J",
-            "R0hUX1NMQVNIEDMSCQoFU0xBU0gQNBIPCgtCVUJCTEVfQkVBTRA1Eg4KClNV",
-            "Qk1JU1NJT04QNhIPCgtLQVJBVEVfQ0hPUBA3Eg0KCUxPV19TV0VFUBA4EgwK",
-            "CEFRVUFfSkVUEDkSDQoJQVFVQV9UQUlMEDoSDQoJU0VFRF9CT01CEDsSDAoI",
-            "UFNZU0hPQ0sQPBIOCgpST0NLX1RIUk9XED0SEQoNQU5DSUVOVF9QT1dFUhA+",
-            "Eg0KCVJPQ0tfVE9NQhA/Eg4KClJPQ0tfU0xJREUQQBINCglQT1dFUl9HRU0Q",
-            "QRIQCgxTSEFET1dfU05FQUsQQhIQCgxTSEFET1dfUFVOQ0gQQxIPCgtTSEFE",
-            "T1dfQ0xBVxBEEhAKDE9NSU5PVVNfV0lORBBFEg8KC1NIQURPV19CQUxMEEYS",
-            "EAoMQlVMTEVUX1BVTkNIEEcSDwoLTUFHTkVUX0JPTUIQSBIOCgpTVEVFTF9X",
-            "SU5HEEkSDQoJSVJPTl9IRUFEEEoSFAoQUEFSQUJPTElDX0NIQVJHRRBLEgkK",
-            "BVNQQVJLEEwSEQoNVEhVTkRFUl9QVU5DSBBNEgsKB1RIVU5ERVIQThIPCgtU",
-            "SFVOREVSQk9MVBBPEgsKB1RXSVNURVIQUBIRCg1EUkFHT05fQlJFQVRIEFES",
-            "EAoMRFJBR09OX1BVTFNFEFISDwoLRFJBR09OX0NMQVcQUxITCg9ESVNBUk1J",
-            "TkdfVk9JQ0UQVBIRCg1EUkFJTklOR19LSVNTEFUSEgoOREFaWkxJTkdfR0xF",
-            "QU0QVhINCglNT09OQkxBU1QQVxIOCgpQTEFZX1JPVUdIEFgSEAoMQ1JPU1Nf",
-            "UE9JU09OEFkSDwoLU0xVREdFX0JPTUIQWhIPCgtTTFVER0VfV0FWRRBbEg0K",
-            "CUdVTktfU0hPVBBcEgwKCE1VRF9TSE9UEF0SDQoJQk9ORV9DTFVCEF4SDAoI",
-            "QlVMTERPWkUQXxIMCghNVURfQk9NQhBgEg8KC0ZVUllfQ1VUVEVSEGESDAoI",
-            "QlVHX0JJVEUQYhIPCgtTSUdOQUxfQkVBTRBjEg0KCVhfU0NJU1NPUhBkEhAK",
-            "DEZMQU1FX0NIQVJHRRBlEg8KC0ZMQU1FX0JVUlNUEGYSDgoKRklSRV9CTEFT",
-            "VBBnEgkKBUJSSU5FEGgSDwoLV0FURVJfUFVMU0UQaRIJCgVTQ0FMRBBqEg4K",
-            "CkhZRFJPX1BVTVAQaxILCgdQU1lDSElDEGwSDQoJUFNZU1RSSUtFEG0SDQoJ",
-            "SUNFX1NIQVJEEG4SDAoISUNZX1dJTkQQbxIQCgxGUk9TVF9CUkVBVEgQcBIK",
-            "CgZBQlNPUkIQcRIOCgpHSUdBX0RSQUlOEHISDgoKRklSRV9QVU5DSBBzEg4K",
-            "ClNPTEFSX0JFQU0QdBIOCgpMRUFGX0JMQURFEHUSDgoKUE9XRVJfV0hJUBB2",
-            "EgoKBlNQTEFTSBB3EggKBEFDSUQQeBIOCgpBSVJfQ1VUVEVSEHkSDQoJSFVS",
-            "UklDQU5FEHoSDwoLQlJJQ0tfQlJFQUsQexIHCgNDVVQQfBIJCgVTV0lGVBB9",
-            "Eg8KC0hPUk5fQVRUQUNLEH4SCQoFU1RPTVAQfxINCghIRUFEQlVUVBCAARIP",
-            "CgpIWVBFUl9GQU5HEIEBEgkKBFNMQU0QggESDgoJQk9EWV9TTEFNEIMBEgkK",
-            "BFJFU1QQhAESDQoIU1RSVUdHTEUQhQESFAoPU0NBTERfQkxBU1RPSVNFEIYB",
-            "EhkKFEhZRFJPX1BVTVBfQkxBU1RPSVNFEIcBEg8KCldSQVBfR1JFRU4QiAES",
-            "DgoJV1JBUF9QSU5LEIkBEhUKEEZVUllfQ1VUVEVSX0ZBU1QQyAESEgoNQlVH",
-            "X0JJVEVfRkFTVBDJARIOCglCSVRFX0ZBU1QQygESFgoRU1VDS0VSX1BVTkNI",
-            "X0ZBU1QQywESFwoSRFJBR09OX0JSRUFUSF9GQVNUEMwBEhcKElRIVU5ERVJf",
-            "U0hPQ0tfRkFTVBDNARIPCgpTUEFSS19GQVNUEM4BEhIKDUxPV19LSUNLX0ZB",
-            "U1QQzwESFQoQS0FSQVRFX0NIT1BfRkFTVBDQARIPCgpFTUJFUl9GQVNUENEB",
-            "EhUKEFdJTkdfQVRUQUNLX0ZBU1QQ0gESDgoJUEVDS19GQVNUENMBEg4KCUxJ",
-            "Q0tfRkFTVBDUARIVChBTSEFET1dfQ0xBV19GQVNUENUBEhMKDlZJTkVfV0hJ",
-            "UF9GQVNUENYBEhQKD1JBWk9SX0xFQUZfRkFTVBDXARISCg1NVURfU0hPVF9G",
-            "QVNUENgBEhMKDklDRV9TSEFSRF9GQVNUENkBEhYKEUZST1NUX0JSRUFUSF9G",
-            "QVNUENoBEhYKEVFVSUNLX0FUVEFDS19GQVNUENsBEhEKDFNDUkFUQ0hfRkFT",
-            "VBDcARIQCgtUQUNLTEVfRkFTVBDdARIPCgpQT1VORF9GQVNUEN4BEg0KCENV",
-            "VF9GQVNUEN8BEhQKD1BPSVNPTl9KQUJfRkFTVBDgARIOCglBQ0lEX0ZBU1QQ",
-            "4QESFAoPUFNZQ0hPX0NVVF9GQVNUEOIBEhQKD1JPQ0tfVEhST1dfRkFTVBDj",
-            "ARIUCg9NRVRBTF9DTEFXX0ZBU1QQ5AESFgoRQlVMTEVUX1BVTkNIX0ZBU1QQ",
-            "5QESEwoOV0FURVJfR1VOX0ZBU1QQ5gESEAoLU1BMQVNIX0ZBU1QQ5wESHQoY",
-            "V0FURVJfR1VOX0ZBU1RfQkxBU1RPSVNFEOgBEhIKDU1VRF9TTEFQX0ZBU1QQ",
-            "6QESFgoRWkVOX0hFQURCVVRUX0ZBU1QQ6gESEwoOQ09ORlVTSU9OX0ZBU1QQ",
-            "6wESFgoRUE9JU09OX1NUSU5HX0ZBU1QQ7AESEAoLQlVCQkxFX0ZBU1QQ7QES",
-            "FgoRRkVJTlRfQVRUQUNLX0ZBU1QQ7gESFAoPU1RFRUxfV0lOR19GQVNUEO8B",
-            "EhMKDkZJUkVfRkFOR19GQVNUEPABEhQKD1JPQ0tfU01BU0hfRkFTVBDxASrH",
-            "BQoGSXRlbUlkEhAKDElURU1fVU5LTk9XThAAEhIKDklURU1fUE9LRV9CQUxM",
-            "EAESEwoPSVRFTV9HUkVBVF9CQUxMEAISEwoPSVRFTV9VTFRSQV9CQUxMEAMS",
-            "FAoQSVRFTV9NQVNURVJfQkFMTBAEEg8KC0lURU1fUE9USU9OEGUSFQoRSVRF",
-            "TV9TVVBFUl9QT1RJT04QZhIVChFJVEVNX0hZUEVSX1BPVElPThBnEhMKD0lU",
-            "RU1fTUFYX1BPVElPThBoEhAKC0lURU1fUkVWSVZFEMkBEhQKD0lURU1fTUFY",
-            "X1JFVklWRRDKARITCg5JVEVNX0xVQ0tZX0VHRxCtAhIaChVJVEVNX0lOQ0VO",
-            "U0VfT1JESU5BUlkQkQMSFwoSSVRFTV9JTkNFTlNFX1NQSUNZEJIDEhYKEUlU",
-            "RU1fSU5DRU5TRV9DT09MEJMDEhgKE0lURU1fSU5DRU5TRV9GTE9SQUwQlAMS",
-            "EwoOSVRFTV9UUk9ZX0RJU0sQ9QMSEgoNSVRFTV9YX0FUVEFDSxDaBBITCg5J",
-            "VEVNX1hfREVGRU5TRRDbBBITCg5JVEVNX1hfTUlSQUNMRRDcBBIUCg9JVEVN",
-            "X1JBWlpfQkVSUlkQvQUSFAoPSVRFTV9CTFVLX0JFUlJZEL4FEhUKEElURU1f",
-            "TkFOQUJfQkVSUlkQvwUSFQoQSVRFTV9XRVBBUl9CRVJSWRDABRIVChBJVEVN",
-            "X1BJTkFQX0JFUlJZEMEFEhgKE0lURU1fU1BFQ0lBTF9DQU1FUkEQoQYSIwoe",
-            "SVRFTV9JTkNVQkFUT1JfQkFTSUNfVU5MSU1JVEVEEIUHEhkKFElURU1fSU5D",
-            "VUJBVE9SX0JBU0lDEIYHEiEKHElURU1fUE9LRU1PTl9TVE9SQUdFX1VQR1JB",
-            "REUQ6QcSHgoZSVRFTV9JVEVNX1NUT1JBR0VfVVBHUkFERRDqBypiChRJbnZl",
-            "bnRvcnlVcGdyYWRlVHlwZRIRCg1VUEdSQURFX1VOU0VUEAASGQoVSU5DUkVB",
-            "U0VfSVRFTV9TVE9SQUdFEAESHAoYSU5DUkVBU0VfUE9LRU1PTl9TVE9SQUdF",
-            "EAIqPwoQRWdnSW5jdWJhdG9yVHlwZRITCg9JTkNVQkFUT1JfVU5TRVQQABIW",
-            "ChJJTkNVQkFUT1JfRElTVEFOQ0UQASrdDAoPUG9rZW1vbkZhbWlseUlkEhAK",
-            "DEZBTUlMWV9VTlNFVBAAEhQKEEZBTUlMWV9CVUxCQVNBVVIQARIVChFGQU1J",
-            "TFlfQ0hBUk1BTkRFUhAEEhMKD0ZBTUlMWV9TUVVJUlRMRRAHEhMKD0ZBTUlM",
-            "WV9DQVRFUlBJRRAKEhEKDUZBTUlMWV9XRUVETEUQDRIRCg1GQU1JTFlfUElE",
-            "R0VZEBASEgoORkFNSUxZX1JBVFRBVEEQExISCg5GQU1JTFlfU1BFQVJPVxAV",
-            "EhAKDEZBTUlMWV9FS0FOUxAXEhIKDkZBTUlMWV9QSUtBQ0hVEBkSFAoQRkFN",
-            "SUxZX1NBTkRTSFJFVxAbEhIKDkZBTUlMWV9OSURPUkFOEB0SEwoPRkFNSUxZ",
-            "X05JRE9SQU4yECASEwoPRkFNSUxZX0NMRUZBSVJZECMSEQoNRkFNSUxZX1ZV",
-            "TFBJWBAlEhUKEUZBTUlMWV9KSUdHTFlQVUZGECcSEAoMRkFNSUxZX1pVQkFU",
-            "ECkSEQoNRkFNSUxZX09ERElTSBArEhAKDEZBTUlMWV9QQVJBUxAuEhIKDkZB",
-            "TUlMWV9WRU5PTkFUEDASEgoORkFNSUxZX0RJR0xFVFQQMhIRCg1GQU1JTFlf",
-            "TUVPV1RIEDQSEgoORkFNSUxZX1BTWURVQ0sQNhIRCg1GQU1JTFlfTUFOS0VZ",
-            "EDgSFAoQRkFNSUxZX0dST1dMSVRIRRA6EhIKDkZBTUlMWV9QT0xJV0FHEDwS",
-            "DwoLRkFNSUxZX0FCUkEQPxIRCg1GQU1JTFlfTUFDSE9QEEISFQoRRkFNSUxZ",
-            "X0JFTExTUFJPVVQQRRIUChBGQU1JTFlfVEVOVEFDT09MEEgSEgoORkFNSUxZ",
-            "X0dFT0RVREUQShIRCg1GQU1JTFlfUE9OWVRBEE0SEwoPRkFNSUxZX1NMT1dQ",
-            "T0tFEE8SFAoQRkFNSUxZX01BR05FTUlURRBREhQKEEZBTUlMWV9GQVJGRVRD",
-            "SEQQUxIQCgxGQU1JTFlfRE9EVU8QVBIPCgtGQU1JTFlfU0VFTBBWEhEKDUZB",
-            "TUlMWV9HUklNRVIQWBITCg9GQU1JTFlfU0hFTExERVIQWhIRCg1GQU1JTFlf",
-            "R0FTVExZEFwSDwoLRkFNSUxZX09OSVgQXxISCg5GQU1JTFlfRFJPV1pFRRBg",
-            "EhEKDUZBTUlMWV9LUkFCQlkQYhISCg5GQU1JTFlfVk9MVE9SQhBkEhQKEEZB",
-            "TUlMWV9FWEVHR0NVVEUQZhIRCg1GQU1JTFlfQ1VCT05FEGgSFAoQRkFNSUxZ",
-            "X0hJVE1PTkxFRRBqEhUKEUZBTUlMWV9ISVRNT05DSEFOEGsSFAoQRkFNSUxZ",
-            "X0xJQ0tJVFVORxBsEhIKDkZBTUlMWV9LT0ZGSU5HEG0SEgoORkFNSUxZX1JI",
-            "WUhPUk4QbxISCg5GQU1JTFlfQ0hBTlNFWRBxEhIKDkZBTUlMWV9UQU5HRUxB",
-            "EHISFQoRRkFNSUxZX0tBTkdBU0tIQU4QcxIRCg1GQU1JTFlfSE9SU0VBEHQS",
-            "EgoORkFNSUxZX0dPTERFRU4QdhIRCg1GQU1JTFlfU1RBUllVEHgSEgoORkFN",
-            "SUxZX01SX01JTUUQehISCg5GQU1JTFlfU0NZVEhFUhB7Eg8KC0ZBTUlMWV9K",
-            "WU5YEHwSFQoRRkFNSUxZX0VMRUNUQUJVWloQfRIRCg1GQU1JTFlfTUFHTUFS",
-            "EH4SEQoNRkFNSUxZX1BJTlNJUhB/EhIKDUZBTUlMWV9UQVVST1MQgAESFAoP",
-            "RkFNSUxZX01BR0lLQVJQEIEBEhIKDUZBTUlMWV9MQVBSQVMQgwESEQoMRkFN",
-            "SUxZX0RJVFRPEIQBEhEKDEZBTUlMWV9FRVZFRRCFARITCg5GQU1JTFlfUE9S",
-            "WUdPThCJARITCg5GQU1JTFlfT01BTllURRCKARISCg1GQU1JTFlfS0FCVVRP",
-            "EIwBEhYKEUZBTUlMWV9BRVJPREFDVFlMEI4BEhMKDkZBTUlMWV9TTk9STEFY",
-            "EI8BEhQKD0ZBTUlMWV9BUlRJQ1VOTxCQARISCg1GQU1JTFlfWkFQRE9TEJEB",
-            "EhMKDkZBTUlMWV9NT0xUUkVTEJIBEhMKDkZBTUlMWV9EUkFUSU5JEJMBEhIK",
-            "DUZBTUlMWV9NRVdUV08QlgESDwoKRkFNSUxZX01FVxCXASpFChBNYXBPYmpl",
-            "Y3RzU3RhdHVzEhAKDFVOU0VUX1NUQVRVUxAAEgsKB1NVQ0NFU1MQARISCg5M",
-            "T0NBVElPTl9VTlNFVBACKiMKCEZvcnRUeXBlEgcKA0dZTRAAEg4KCkNIRUNL",
-            "UE9JTlQQASqTEAoJUG9rZW1vbklkEg0KCU1JU1NJTkdOTxAAEg0KCUJVTEJB",
-            "U0FVUhABEgsKB0lWWVNBVVIQAhIMCghWRU5VU0FVUhADEg4KCkNIQVJNRU5E",
-            "RVIQBBIOCgpDSEFSTUVMRU9OEAUSDQoJQ0hBUklaQVJEEAYSDAoIU1FVSVJU",
-            "TEUQBxINCglXQVJUT1JUTEUQCBINCglCTEFTVE9JU0UQCRIMCghDQVRFUlBJ",
-            "RRAKEgsKB01FVEFQT0QQCxIOCgpCVVRURVJGUkVFEAwSCgoGV0VFRExFEA0S",
-            "CgoGS0FLVU5BEA4SDAoIQkVFRFJJTEwQDxIKCgZQSURHRVkQEBINCglQSURH",
-            "RU9UVE8QERILCgdQSURHRU9UEBISCwoHUkFUVEFUQRATEgwKCFJBVElDQVRF",
-            "EBQSCwoHU1BFQVJPVxAVEgoKBkZFQVJPVxAWEgkKBUVLQU5TEBcSCQoFQVJC",
-            "T0sQGBILCgdQSUtBQ0hVEBkSCgoGUkFJQ0hVEBoSDQoJU0FORFNIUkVXEBsS",
-            "DAoIU0FORExBU0gQHBISCg5OSURPUkFOX0ZFTUFMRRAdEgwKCE5JRE9SSU5B",
-            "EB4SDQoJTklET1FVRUVOEB8SEAoMTklET1JBTl9NQUxFECASDAoITklET1JJ",
-            "Tk8QIRIMCghOSURPS0lORxAiEgsKB0NMRUZBUlkQIxIMCghDTEVGQUJMRRAk",
-            "EgoKBlZVTFBJWBAlEg0KCU5JTkVUQUxFUxAmEg4KCkpJR0dMWVBVRkYQJxIO",
-            "CgpXSUdHTFlUVUZGECgSCQoFWlVCQVQQKRIKCgZHT0xCQVQQKhIKCgZPRERJ",
-            "U0gQKxIJCgVHTE9PTRAsEg0KCVZJTEVQTFVNRRAtEgkKBVBBUkFTEC4SDAoI",
-            "UEFSQVNFQ1QQLxILCgdWRU5PTkFUEDASDAoIVkVOT01PVEgQMRILCgdESUdM",
-            "RVRUEDISCwoHRFVHVFJJTxAzEgoKBk1FT1dUSBA0EgsKB1BFUlNJQU4QNRIL",
-            "CgdQU1lEVUNLEDYSCwoHR09MRFVDSxA3EgoKBk1BTktFWRA4EgwKCFBSSU1F",
-            "QVBFEDkSDQoJR1JPV0xJVEhFEDoSDAoIQVJDQU5JTkUQOxILCgdQT0xJV0FH",
-            "EDwSDQoJUE9MSVdISVJMED0SDQoJUE9MSVdSQVRIED4SCAoEQUJSQRA/EgsK",
-            "B0tBREFCUkEQQBINCglBTEFLSEFaQU0QQRIKCgZNQUNIT1AQQhILCgdNQUNI",
-            "T0tFEEMSCwoHTUFDSEFNUBBEEg4KCkJFTExTUFJPVVQQRRIOCgpXRUVQSU5C",
-            "RUxMEEYSDwoLVklDVFJFRUJFTEwQRxINCglURU5UQUNPT0wQSBIOCgpURU5U",
-            "QUNSVUVMEEkSCwoHR0VPRFVHRRBKEgwKCEdSQVZFTEVSEEsSCQoFR09MRU0Q",
-            "TBIKCgZQT05ZVEEQTRIMCghSQVBJREFTSBBOEgwKCFNMT1dQT0tFEE8SCwoH",
-            "U0xPV0JSTxBQEg0KCU1BR05FTUlURRBREgwKCE1BR05FVE9OEFISDQoJRkFS",
-            "RkVUQ0hEEFMSCQoFRE9EVU8QVBIKCgZET0RSSU8QVRIICgRTRUVMEFYSCwoH",
-            "REVXR09ORxBXEgoKBkdSSU1FUhBYEgcKA01VSxBZEgwKCFNIRUxMREVSEFoS",
-            "DAoIQ0xPWVNURVIQWxIKCgZHQVNUTFkQXBILCgdIQVVOVEVSEF0SCgoGR0VO",
-            "R0FSEF4SCAoET05JWBBfEgsKB0RST1daRUUQYBIJCgVIWVBOTxBhEgoKBktS",
-            "QUJCWRBiEgsKB0tJTkdMRVIQYxILCgdWT0xUT1JCEGQSDQoJRUxFQ1RST0RF",
-            "EGUSDQoJRVhFR0dDVVRFEGYSDQoJRVhFR0dVVE9SEGcSCgoGQ1VCT05FEGgS",
-            "CwoHTUFST1dBSxBpEg0KCUhJVE1PTkxFRRBqEg4KCkhJVE1PTkNIQU4QaxIN",
-            "CglMSUNLSVRVTkcQbBILCgdLT0ZGSU5HEG0SCwoHV0VFWklORxBuEgsKB1JI",
-            "WUhPUk4QbxIKCgZSSFlET04QcBILCgdDSEFOU0VZEHESCwoHVEFOR0VMQRBy",
-            "Eg4KCktBTkdBU0tIQU4QcxIKCgZIT1JTRUEQdBIKCgZTRUFEUkEQdRILCgdH",
-            "T0xERUVOEHYSCwoHU0VBS0lORxB3EgoKBlNUQVJZVRB4EgsKB1NUQVJNSUUQ",
-            "eRILCgdNUl9NSU1FEHoSCwoHU0NZVEhFUhB7EggKBEpZTlgQfBIOCgpFTEVD",
-            "VEFCVVpaEH0SCgoGTUFHTUFSEH4SCgoGUElOU0lSEH8SCwoGVEFVUk9TEIAB",
-            "Eg0KCE1BR0lLQVJQEIEBEg0KCEdZQVJBRE9TEIIBEgsKBkxBUFJBUxCDARIK",
-            "CgVESVRUTxCEARIKCgVFRVZFRRCFARINCghWQVBPUkVPThCGARIMCgdKT0xU",
-            "RU9OEIcBEgwKB0ZMQVJFT04QiAESDAoHUE9SWUdPThCJARIMCgdPTUFOWVRF",
-            "EIoBEgwKB09NQVNUQVIQiwESCwoGS0FCVVRPEIwBEg0KCEtBQlVUT1BTEI0B",
-            "Eg8KCkFFUk9EQUNUWUwQjgESDAoHU05PUkxBWBCPARINCghBUlRJQ1VOTxCQ",
-            "ARILCgZaQVBET1MQkQESDAoHTU9MVFJFUxCSARIMCgdEUkFUSU5JEJMBEg4K",
-            "CURSQUdPTkFJUhCUARIOCglEUkFHT05JVEUQlQESCwoGTUVXVFdPEJYBEggK",
-            "A01FVxCXASpCCgtGb3J0U3BvbnNvchIRCg1VTlNFVF9TUE9OU09SEAASDQoJ",
-            "TUNET05BTERTEAESEQoNUE9LRU1PTl9TVE9SRRACKjMKEUZvcnRSZW5kZXJp",
-            "bmdUeXBlEgsKB0RFRkFVTFQQABIRCg1JTlRFUk5BTF9URVNUEAEqsgIKCEl0",
-            "ZW1UeXBlEhIKDklURU1fVFlQRV9OT05FEAASFgoSSVRFTV9UWVBFX1BPS0VC",
-            "QUxMEAESFAoQSVRFTV9UWVBFX1BPVElPThACEhQKEElURU1fVFlQRV9SRVZJ",
-            "VkUQAxIRCg1JVEVNX1RZUEVfTUFQEAQSFAoQSVRFTV9UWVBFX0JBVFRMRRAF",
-            "EhIKDklURU1fVFlQRV9GT09EEAYSFAoQSVRFTV9UWVBFX0NBTUVSQRAHEhIK",
-            "DklURU1fVFlQRV9ESVNLEAgSFwoTSVRFTV9UWVBFX0lOQ1VCQVRPUhAJEhUK",
-            "EUlURU1fVFlQRV9JTkNFTlNFEAoSFgoSSVRFTV9UWVBFX1hQX0JPT1NUEAsS",
-            "HwobSVRFTV9UWVBFX0lOVkVOVE9SWV9VUEdSQURFEAwq1gIKDEl0ZW1DYXRl",
-            "Z29yeRIWChJJVEVNX0NBVEVHT1JZX05PTkUQABIaChZJVEVNX0NBVEVHT1JZ",
-            "X1BPS0VCQUxMEAESFgoSSVRFTV9DQVRFR09SWV9GT09EEAISGgoWSVRFTV9D",
-            "QVRFR09SWV9NRURJQ0lORRADEhcKE0lURU1fQ0FURUdPUllfQk9PU1QQBBIa",
-            "ChZJVEVNX0NBVEVHT1JZX1VUSUxJVEVTEAUSGAoUSVRFTV9DQVRFR09SWV9D",
-            "QU1FUkEQBhIWChJJVEVNX0NBVEVHT1JZX0RJU0sQBxIbChdJVEVNX0NBVEVH",
-            "T1JZX0lOQ1VCQVRPUhAIEhkKFUlURU1fQ0FURUdPUllfSU5DRU5TRRAJEhoK",
-            "FklURU1fQ0FURUdPUllfWFBfQk9PU1QQChIjCh9JVEVNX0NBVEVHT1JZX0lO",
-            "VkVOVE9SWV9VUEdSQURFEAsqmAQKCkl0ZW1FZmZlY3QSFAoQSVRFTV9FRkZF",
-            "Q1RfTk9ORRAAEhwKF0lURU1fRUZGRUNUX0NBUF9OT19GTEVFEOgHEiAKG0lU",
-            "RU1fRUZGRUNUX0NBUF9OT19NT1ZFTUVOVBDqBxIeChlJVEVNX0VGRkVDVF9D",
-            "QVBfTk9fVEhSRUFUEOsHEh8KGklURU1fRUZGRUNUX0NBUF9UQVJHRVRfTUFY",
-            "EOwHEiAKG0lURU1fRUZGRUNUX0NBUF9UQVJHRVRfU0xPVxDtBxIhChxJVEVN",
-            "X0VGRkVDVF9DQVBfQ0hBTkNFX05JR0hUEO4HEiMKHklURU1fRUZGRUNUX0NB",
-            "UF9DSEFOQ0VfVFJBSU5FUhDvBxInCiJJVEVNX0VGRkVDVF9DQVBfQ0hBTkNF",
-            "X0ZJUlNUX1RIUk9XEPAHEiIKHUlURU1fRUZGRUNUX0NBUF9DSEFOQ0VfTEVH",
-            "RU5EEPEHEiEKHElURU1fRUZGRUNUX0NBUF9DSEFOQ0VfSEVBVlkQ8gcSIgod",
-            "SVRFTV9FRkZFQ1RfQ0FQX0NIQU5DRV9SRVBFQVQQ8wcSJwoiSVRFTV9FRkZF",
-            "Q1RfQ0FQX0NIQU5DRV9NVUxUSV9USFJPVxD0BxIiCh1JVEVNX0VGRkVDVF9D",
-            "QVBfQ0hBTkNFX0FMV0FZUxD1BxIoCiNJVEVNX0VGRkVDVF9DQVBfQ0hBTkNF",
-            "X1NJTkdMRV9USFJPVxD2ByrsBQoMQWN0aXZpdHlUeXBlEhQKEEFDVElWSVRZ",
-            "X1VOS05PV04QABIaChZBQ1RJVklUWV9DQVRDSF9QT0tFTU9OEAESIQodQUNU",
-            "SVZJVFlfQ0FUQ0hfTEVHRU5EX1BPS0VNT04QAhIZChVBQ1RJVklUWV9GTEVF",
-            "X1BPS0VNT04QAxIYChRBQ1RJVklUWV9ERUZFQVRfRk9SVBAEEhsKF0FDVElW",
-            "SVRZX0VWT0xWRV9QT0tFTU9OEAUSFgoSQUNUSVZJVFlfSEFUQ0hfRUdHEAYS",
-            "FAoQQUNUSVZJVFlfV0FMS19LTRAHEh4KGkFDVElWSVRZX1BPS0VERVhfRU5U",
-            "UllfTkVXEAgSHgoaQUNUSVZJVFlfQ0FUQ0hfRklSU1RfVEhST1cQCRIdChlB",
-            "Q1RJVklUWV9DQVRDSF9OSUNFX1RIUk9XEAoSHgoaQUNUSVZJVFlfQ0FUQ0hf",
-            "R1JFQVRfVEhST1cQCxIiCh5BQ1RJVklUWV9DQVRDSF9FWENFTExFTlRfVEhS",
-            "T1cQDBIcChhBQ1RJVklUWV9DQVRDSF9DVVJWRUJBTEwQDRIlCiFBQ1RJVklU",
-            "WV9DQVRDSF9GSVJTVF9DQVRDSF9PRl9EQVkQDhIcChhBQ1RJVklUWV9DQVRD",
-            "SF9NSUxFU1RPTkUQDxIaChZBQ1RJVklUWV9UUkFJTl9QT0tFTU9OEBASGAoU",
-            "QUNUSVZJVFlfU0VBUkNIX0ZPUlQQERIcChhBQ1RJVklUWV9SRUxFQVNFX1BP",
-            "S0VNT04QEhIiCh5BQ1RJVklUWV9IQVRDSF9FR0dfU01BTExfQk9OVVMQExIj",
-            "Ch9BQ1RJVklUWV9IQVRDSF9FR0dfTUVESVVNX0JPTlVTEBQSIgoeQUNUSVZJ",
-            "VFlfSEFUQ0hfRUdHX0xBUkdFX0JPTlVTEBUSIAocQUNUSVZJVFlfREVGRUFU",
-            "X0dZTV9ERUZFTkRFUhAWEh4KGkFDVElWSVRZX0RFRkVBVF9HWU1fTEVBREVS",
-            "EBcqoQcKCUJhZGdlVHlwZRIPCgtCQURHRV9VTlNFVBAAEhMKD0JBREdFX1RS",
-            "QVZFTF9LTRABEhkKFUJBREdFX1BPS0VERVhfRU5UUklFUxACEhcKE0JBREdF",
-            "X0NBUFRVUkVfVE9UQUwQAxIXChNCQURHRV9ERUZFQVRFRF9GT1JUEAQSFwoT",
-            "QkFER0VfRVZPTFZFRF9UT1RBTBAFEhcKE0JBREdFX0hBVENIRURfVE9UQUwQ",
-            "BhIbChdCQURHRV9FTkNPVU5URVJFRF9UT1RBTBAHEhsKF0JBREdFX1BPS0VT",
-            "VE9QU19WSVNJVEVEEAgSGgoWQkFER0VfVU5JUVVFX1BPS0VTVE9QUxAJEhkK",
-            "FUJBREdFX1BPS0VCQUxMX1RIUk9XThAKEhYKEkJBREdFX0JJR19NQUdJS0FS",
-            "UBALEhgKFEJBREdFX0RFUExPWUVEX1RPVEFMEAwSGwoXQkFER0VfQkFUVExF",
-            "X0FUVEFDS19XT04QDRIdChlCQURHRV9CQVRUTEVfVFJBSU5JTkdfV09OEA4S",
-            "GwoXQkFER0VfQkFUVExFX0RFRkVORF9XT04QDxIZChVCQURHRV9QUkVTVElH",
-            "RV9SQUlTRUQQEBIaChZCQURHRV9QUkVTVElHRV9EUk9QUEVEEBESFQoRQkFE",
-            "R0VfVFlQRV9OT1JNQUwQEhIXChNCQURHRV9UWVBFX0ZJR0hUSU5HEBMSFQoR",
-            "QkFER0VfVFlQRV9GTFlJTkcQFBIVChFCQURHRV9UWVBFX1BPSVNPThAVEhUK",
-            "EUJBREdFX1RZUEVfR1JPVU5EEBYSEwoPQkFER0VfVFlQRV9ST0NLEBcSEgoO",
-            "QkFER0VfVFlQRV9CVUcQGBIUChBCQURHRV9UWVBFX0dIT1NUEBkSFAoQQkFE",
-            "R0VfVFlQRV9TVEVFTBAaEhMKD0JBREdFX1RZUEVfRklSRRAbEhQKEEJBREdF",
-            "X1RZUEVfV0FURVIQHBIUChBCQURHRV9UWVBFX0dSQVNTEB0SFwoTQkFER0Vf",
-            "VFlQRV9FTEVDVFJJQxAeEhYKEkJBREdFX1RZUEVfUFNZQ0hJQxAfEhIKDkJB",
-            "REdFX1RZUEVfSUNFECASFQoRQkFER0VfVFlQRV9EUkFHT04QIRITCg9CQURH",
-            "RV9UWVBFX0RBUksQIhIUChBCQURHRV9UWVBFX0ZBSVJZECMSFwoTQkFER0Vf",
-            "U01BTExfUkFUVEFUQRAkEhEKDUJBREdFX1BJS0FDSFUQJSqUAQoTSG9sb0lh",
-            "cEl0ZW1DYXRlZ29yeRIVChFJQVBfQ0FURUdPUllfTk9ORRAAEhcKE0lBUF9D",
-            "QVRFR09SWV9CVU5ETEUQARIWChJJQVBfQ0FURUdPUllfSVRFTVMQAhIZChVJ",
-            "QVBfQ0FURUdPUllfVVBHUkFERVMQAxIaChZJQVBfQ0FURUdPUllfUE9LRUNP",
-            "SU5TEAQqlgEKE0NhbWVyYUludGVycG9sYXRpb24SEgoOQ0FNX0lOVEVSUF9D",
-            "VVQQABIVChFDQU1fSU5URVJQX0xJTkVBUhABEhUKEUNBTV9JTlRFUlBfU01P",
-            "T1RIEAISJQohQ0FNX0lOVEVSUF9TTU9PVEhfUk9UX0xJTkVBUl9NT1ZFEAMS",
-            "FgoSQ0FNX0lOVEVSUF9ERVBFTkRTEAQq/AMKDENhbWVyYVRhcmdldBIXChND",
-            "QU1fVEFSR0VUX0FUVEFDS0VSEAASHAoYQ0FNX1RBUkdFVF9BVFRBQ0tFUl9F",
-            "REdFEAESHgoaQ0FNX1RBUkdFVF9BVFRBQ0tFUl9HUk9VTkQQAhIXChNDQU1f",
-            "VEFSR0VUX0RFRkVOREVSEAMSHAoYQ0FNX1RBUkdFVF9ERUZFTkRFUl9FREdF",
-            "EAQSHgoaQ0FNX1RBUkdFVF9ERUZFTkRFUl9HUk9VTkQQBRIgChxDQU1fVEFS",
-            "R0VUX0FUVEFDS0VSX0RFRkVOREVSEAYSJQohQ0FNX1RBUkdFVF9BVFRBQ0tF",
-            "Ul9ERUZFTkRFUl9FREdFEAcSIAocQ0FNX1RBUkdFVF9ERUZFTkRFUl9BVFRB",
-            "Q0tFUhAIEiUKIUNBTV9UQVJHRVRfREVGRU5ERVJfQVRUQUNLRVJfRURHRRAJ",
-            "EicKI0NBTV9UQVJHRVRfQVRUQUNLRVJfREVGRU5ERVJfTUlSUk9SEAsSKQol",
-            "Q0FNX1RBUkdFVF9TSE9VTERFUl9BVFRBQ0tFUl9ERUZFTkRFUhAMEjAKLENB",
-            "TV9UQVJHRVRfU0hPVUxERVJfQVRUQUNLRVJfREVGRU5ERVJfTUlSUk9SEA0S",
-            "JgoiQ0FNX1RBUkdFVF9BVFRBQ0tFUl9ERUZFTkRFUl9XT1JMRBAOKtoDCgtQ",
-            "b2tlbW9uVHlwZRIVChFQT0tFTU9OX1RZUEVfTk9ORRAAEhcKE1BPS0VNT05f",
-            "VFlQRV9OT1JNQUwQARIZChVQT0tFTU9OX1RZUEVfRklHSFRJTkcQAhIXChNQ",
-            "T0tFTU9OX1RZUEVfRkxZSU5HEAMSFwoTUE9LRU1PTl9UWVBFX1BPSVNPThAE",
-            "EhcKE1BPS0VNT05fVFlQRV9HUk9VTkQQBRIVChFQT0tFTU9OX1RZUEVfUk9D",
-            "SxAGEhQKEFBPS0VNT05fVFlQRV9CVUcQBxIWChJQT0tFTU9OX1RZUEVfR0hP",
-            "U1QQCBIWChJQT0tFTU9OX1RZUEVfU1RFRUwQCRIVChFQT0tFTU9OX1RZUEVf",
-            "RklSRRAKEhYKElBPS0VNT05fVFlQRV9XQVRFUhALEhYKElBPS0VNT05fVFlQ",
-            "RV9HUkFTUxAMEhkKFVBPS0VNT05fVFlQRV9FTEVDVFJJQxANEhgKFFBPS0VN",
-            "T05fVFlQRV9QU1lDSElDEA4SFAoQUE9LRU1PTl9UWVBFX0lDRRAPEhcKE1BP",
-            "S0VNT05fVFlQRV9EUkFHT04QEBIVChFQT0tFTU9OX1RZUEVfREFSSxAREhYK",
-            "ElBPS0VNT05fVFlQRV9GQUlSWRASKq0BChNQb2tlbW9uTW92ZW1lbnRUeXBl",
-            "EhMKD01PVkVNRU5UX1NUQVRJQxAAEhEKDU1PVkVNRU5UX0pVTVAQARIVChFN",
-            "T1ZFTUVOVF9WRVJUSUNBTBACEhQKEE1PVkVNRU5UX1BTWUNISUMQAxIVChFN",
-            "T1ZFTUVOVF9FTEVDVFJJQxAEEhMKD01PVkVNRU5UX0ZMWUlORxAFEhUKEU1P",
-            "VkVNRU5UX0hPVkVSSU5HEAYqNQoMUG9rZW1vbkNsYXNzEgoKBk5PUk1BTBAA",
-            "Eg0KCUxFR0VOREFSWRABEgoKBk1ZVEhJQxACYgZwcm90bzM="));
-      descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
-          new pbr::FileDescriptor[] { },
-          new pbr::GeneratedClrTypeInfo(new[] {typeof(global::AllEnum.RpcDirection), typeof(global::AllEnum.TeamColor), typeof(global::AllEnum.RequestMethod), typeof(global::AllEnum.PokemonMove), typeof(global::AllEnum.ItemId), typeof(global::AllEnum.InventoryUpgradeType), typeof(global::AllEnum.EggIncubatorType), typeof(global::AllEnum.PokemonFamilyId), typeof(global::AllEnum.MapObjectsStatus), typeof(global::AllEnum.FortType), typeof(global::AllEnum.PokemonId), typeof(global::AllEnum.FortSponsor), typeof(global::AllEnum.FortRenderingType), typeof(global::AllEnum.ItemType), typeof(global::AllEnum.ItemCategory), typeof(global::AllEnum.ItemEffect), typeof(global::AllEnum.ActivityType), typeof(global::AllEnum.BadgeType), typeof(global::AllEnum.HoloIapItemCategory), typeof(global::AllEnum.CameraInterpolation), typeof(global::AllEnum.CameraTarget), typeof(global::AllEnum.PokemonType), typeof(global::AllEnum.PokemonMovementType), typeof(global::AllEnum.PokemonClass), }, null));
-    }
-    #endregion
-
-  }
-  #region Enums
-  public enum RpcDirection {
-    [pbr::OriginalName("UNKNOWN")] Unknown = 0,
-    [pbr::OriginalName("RESPONSE")] Response = 1,
-    [pbr::OriginalName("REQUEST")] Request = 2,
-  }
-
-  public enum TeamColor {
-    [pbr::OriginalName("NEUTRAL")] Neutral = 0,
-    [pbr::OriginalName("BLUE")] Blue = 1,
-    [pbr::OriginalName("RED")] Red = 2,
-    [pbr::OriginalName("YELLOW")] Yellow = 3,
-  }
-
-  public enum RequestMethod {
-    [pbr::OriginalName("METHOD_UNSET")] MethodUnset = 0,
-    [pbr::OriginalName("PLAYER_UPDATE")] PlayerUpdate = 1,
-    [pbr::OriginalName("GET_PLAYER")] GetPlayer = 2,
-    [pbr::OriginalName("GET_INVENTORY")] GetInventory = 4,
-    [pbr::OriginalName("DOWNLOAD_SETTINGS")] DownloadSettings = 5,
-    [pbr::OriginalName("DOWNLOAD_ITEM_TEMPLATES")] DownloadItemTemplates = 6,
-    [pbr::OriginalName("DOWNLOAD_REMOTE_CONFIG_VERSION")] DownloadRemoteConfigVersion = 7,
-    [pbr::OriginalName("FORT_SEARCH")] FortSearch = 101,
-    [pbr::OriginalName("ENCOUNTER")] Encounter = 102,
-    [pbr::OriginalName("CATCH_POKEMON")] CatchPokemon = 103,
-    [pbr::OriginalName("FORT_DETAILS")] FortDetails = 104,
-    [pbr::OriginalName("ITEM_USE")] ItemUse = 105,
-    [pbr::OriginalName("GET_MAP_OBJECTS")] GetMapObjects = 106,
-    [pbr::OriginalName("FORT_DEPLOY_POKEMON")] FortDeployPokemon = 110,
-    [pbr::OriginalName("FORT_RECALL_POKEMON")] FortRecallPokemon = 111,
-    [pbr::OriginalName("RELEASE_POKEMON")] ReleasePokemon = 112,
-    [pbr::OriginalName("USE_ITEM_POTION")] UseItemPotion = 113,
-    [pbr::OriginalName("USE_ITEM_CAPTURE")] UseItemCapture = 114,
-    [pbr::OriginalName("USE_ITEM_FLEE")] UseItemFlee = 115,
-    [pbr::OriginalName("USE_ITEM_REVIVE")] UseItemRevive = 116,
-    [pbr::OriginalName("TRADE_SEARCH")] TradeSearch = 117,
-    [pbr::OriginalName("TRADE_OFFER")] TradeOffer = 118,
-    [pbr::OriginalName("TRADE_RESPONSE")] TradeResponse = 119,
-    [pbr::OriginalName("TRADE_RESULT")] TradeResult = 120,
-    [pbr::OriginalName("GET_PLAYER_PROFILE")] GetPlayerProfile = 121,
-    [pbr::OriginalName("GET_ITEM_PACK")] GetItemPack = 122,
-    [pbr::OriginalName("BUY_ITEM_PACK")] BuyItemPack = 123,
-    [pbr::OriginalName("BUY_GEM_PACK")] BuyGemPack = 124,
-    [pbr::OriginalName("EVOLVE_POKEMON")] EvolvePokemon = 125,
-    [pbr::OriginalName("GET_HATCHED_EGGS")] GetHatchedEggs = 126,
-    [pbr::OriginalName("ENCOUNTER_TUTORIAL_COMPLETE")] EncounterTutorialComplete = 127,
-    [pbr::OriginalName("LEVEL_UP_REWARDS")] LevelUpRewards = 128,
-    [pbr::OriginalName("CHECK_AWARDED_BADGES")] CheckAwardedBadges = 129,
-    [pbr::OriginalName("USE_ITEM_GYM")] UseItemGym = 133,
-    [pbr::OriginalName("GET_GYM_DETAILS")] GetGymDetails = 134,
-    [pbr::OriginalName("START_GYM_BATTLE")] StartGymBattle = 135,
-    [pbr::OriginalName("ATTACK_GYM")] AttackGym = 136,
-    [pbr::OriginalName("RECYCLE_INVENTORY_ITEM")] RecycleInventoryItem = 137,
-    [pbr::OriginalName("COLLECT_DAILY_BONUS")] CollectDailyBonus = 138,
-    [pbr::OriginalName("USE_ITEM_XP_BOOST")] UseItemXpBoost = 139,
-    [pbr::OriginalName("USE_ITEM_EGG_INCUBATOR")] UseItemEggIncubator = 140,
-    [pbr::OriginalName("USE_INCENSE")] UseIncense = 141,
-    [pbr::OriginalName("GET_INCENSE_POKEMON")] GetIncensePokemon = 142,
-    [pbr::OriginalName("INCENSE_ENCOUNTER")] IncenseEncounter = 143,
-    [pbr::OriginalName("ADD_FORT_MODIFIER")] AddFortModifier = 144,
-    [pbr::OriginalName("DISK_ENCOUNTER")] DiskEncounter = 145,
-    [pbr::OriginalName("COLLECT_DAILY_DEFENDER_BONUS")] CollectDailyDefenderBonus = 146,
-    [pbr::OriginalName("UPGRADE_POKEMON")] UpgradePokemon = 147,
-    [pbr::OriginalName("SET_FAVORITE_POKEMON")] SetFavoritePokemon = 148,
-    [pbr::OriginalName("NICKNAME_POKEMON")] NicknamePokemon = 149,
-    [pbr::OriginalName("EQUIP_BADGE")] EquipBadge = 150,
-    [pbr::OriginalName("SET_CONTACT_SETTINGS")] SetContactSettings = 151,
-    [pbr::OriginalName("GET_ASSET_DIGEST")] GetAssetDigest = 300,
-    [pbr::OriginalName("GET_DOWNLOAD_URLS")] GetDownloadUrls = 301,
-    [pbr::OriginalName("GET_SUGGESTED_CODENAMES")] GetSuggestedCodenames = 401,
-    [pbr::OriginalName("CHECK_CODENAME_AVAILABLE")] CheckCodenameAvailable = 402,
-    [pbr::OriginalName("CLAIM_CODENAME")] ClaimCodename = 403,
-    [pbr::OriginalName("SET_AVATAR")] SetAvatar = 404,
-    [pbr::OriginalName("SET_PLAYER_TEAM")] SetPlayerTeam = 405,
-    [pbr::OriginalName("MARK_TUTORIAL_COMPLETE")] MarkTutorialComplete = 406,
-    [pbr::OriginalName("LOAD_SPAWN_POINTS")] LoadSpawnPoints = 500,
-    [pbr::OriginalName("ECHO")] Echo = 666,
-    [pbr::OriginalName("DEBUG_UPDATE_INVENTORY")] DebugUpdateInventory = 700,
-    [pbr::OriginalName("DEBUG_DELETE_PLAYER")] DebugDeletePlayer = 701,
-    [pbr::OriginalName("SFIDA_REGISTRATION")] SfidaRegistration = 800,
-    [pbr::OriginalName("SFIDA_ACTION_LOG")] SfidaActionLog = 801,
-    [pbr::OriginalName("SFIDA_CERTIFICATION")] SfidaCertification = 802,
-    [pbr::OriginalName("SFIDA_UPDATE")] SfidaUpdate = 803,
-    [pbr::OriginalName("SFIDA_ACTION")] SfidaAction = 804,
-    [pbr::OriginalName("SFIDA_DOWSER")] SfidaDowser = 805,
-    [pbr::OriginalName("SFIDA_CAPTURE")] SfidaCapture = 806,
-  }
-
-  public enum PokemonMove {
-    [pbr::OriginalName("MOVE_UNSET")] MoveUnset = 0,
-    [pbr::OriginalName("THUNDER_SHOCK")] ThunderShock = 1,
-    [pbr::OriginalName("QUICK_ATTACK")] QuickAttack = 2,
-    [pbr::OriginalName("SCRATCH")] Scratch = 3,
-    [pbr::OriginalName("EMBER")] Ember = 4,
-    [pbr::OriginalName("VINE_WHIP")] VineWhip = 5,
-    [pbr::OriginalName("TACKLE")] Tackle = 6,
-    [pbr::OriginalName("RAZOR_LEAF")] RazorLeaf = 7,
-    [pbr::OriginalName("TAKE_DOWN")] TakeDown = 8,
-    [pbr::OriginalName("WATER_GUN")] WaterGun = 9,
-    [pbr::OriginalName("BITE")] Bite = 10,
-    [pbr::OriginalName("POUND")] Pound = 11,
-    [pbr::OriginalName("DOUBLE_SLAP")] DoubleSlap = 12,
-    [pbr::OriginalName("WRAP")] Wrap = 13,
-    [pbr::OriginalName("HYPER_BEAM")] HyperBeam = 14,
-    [pbr::OriginalName("LICK")] Lick = 15,
-    [pbr::OriginalName("DARK_PULSE")] DarkPulse = 16,
-    [pbr::OriginalName("SMOG")] Smog = 17,
-    [pbr::OriginalName("SLUDGE")] Sludge = 18,
-    [pbr::OriginalName("METAL_CLAW")] MetalClaw = 19,
-    [pbr::OriginalName("VICE_GRIP")] ViceGrip = 20,
-    [pbr::OriginalName("FLAME_WHEEL")] FlameWheel = 21,
-    [pbr::OriginalName("MEGAHORN")] Megahorn = 22,
-    [pbr::OriginalName("WING_ATTACK")] WingAttack = 23,
-    [pbr::OriginalName("FLAMETHROWER")] Flamethrower = 24,
-    [pbr::OriginalName("SUCKER_PUNCH")] SuckerPunch = 25,
-    [pbr::OriginalName("DIG")] Dig = 26,
-    [pbr::OriginalName("LOW_KICK")] LowKick = 27,
-    [pbr::OriginalName("CROSS_CHOP")] CrossChop = 28,
-    [pbr::OriginalName("PSYCHO_CUT")] PsychoCut = 29,
-    [pbr::OriginalName("PSYBEAM")] Psybeam = 30,
-    [pbr::OriginalName("EARTHQUAKE")] Earthquake = 31,
-    [pbr::OriginalName("STONE_EDGE")] StoneEdge = 32,
-    [pbr::OriginalName("ICE_PUNCH")] IcePunch = 33,
-    [pbr::OriginalName("HEART_STAMP")] HeartStamp = 34,
-    [pbr::OriginalName("DISCHARGE")] Discharge = 35,
-    [pbr::OriginalName("FLASH_CANNON")] FlashCannon = 36,
-    [pbr::OriginalName("PECK")] Peck = 37,
-    [pbr::OriginalName("DRILL_PECK")] DrillPeck = 38,
-    [pbr::OriginalName("ICE_BEAM")] IceBeam = 39,
-    [pbr::OriginalName("BLIZZARD")] Blizzard = 40,
-    [pbr::OriginalName("AIR_SLASH")] AirSlash = 41,
-    [pbr::OriginalName("HEAT_WAVE")] HeatWave = 42,
-    [pbr::OriginalName("TWINEEDLE")] Twineedle = 43,
-    [pbr::OriginalName("POISON_JAB")] PoisonJab = 44,
-    [pbr::OriginalName("AERIAL_ACE")] AerialAce = 45,
-    [pbr::OriginalName("DRILL_RUN")] DrillRun = 46,
-    [pbr::OriginalName("PETAL_BLIZZARD")] PetalBlizzard = 47,
-    [pbr::OriginalName("MEGA_DRAIN")] MegaDrain = 48,
-    [pbr::OriginalName("BUG_BUZZ")] BugBuzz = 49,
-    [pbr::OriginalName("POISON_FANG")] PoisonFang = 50,
-    [pbr::OriginalName("NIGHT_SLASH")] NightSlash = 51,
-    [pbr::OriginalName("SLASH")] Slash = 52,
-    [pbr::OriginalName("BUBBLE_BEAM")] BubbleBeam = 53,
-    [pbr::OriginalName("SUBMISSION")] Submission = 54,
-    [pbr::OriginalName("KARATE_CHOP")] KarateChop = 55,
-    [pbr::OriginalName("LOW_SWEEP")] LowSweep = 56,
-    [pbr::OriginalName("AQUA_JET")] AquaJet = 57,
-    [pbr::OriginalName("AQUA_TAIL")] AquaTail = 58,
-    [pbr::OriginalName("SEED_BOMB")] SeedBomb = 59,
-    [pbr::OriginalName("PSYSHOCK")] Psyshock = 60,
-    [pbr::OriginalName("ROCK_THROW")] RockThrow = 61,
-    [pbr::OriginalName("ANCIENT_POWER")] AncientPower = 62,
-    [pbr::OriginalName("ROCK_TOMB")] RockTomb = 63,
-    [pbr::OriginalName("ROCK_SLIDE")] RockSlide = 64,
-    [pbr::OriginalName("POWER_GEM")] PowerGem = 65,
-    [pbr::OriginalName("SHADOW_SNEAK")] ShadowSneak = 66,
-    [pbr::OriginalName("SHADOW_PUNCH")] ShadowPunch = 67,
-    [pbr::OriginalName("SHADOW_CLAW")] ShadowClaw = 68,
-    [pbr::OriginalName("OMINOUS_WIND")] OminousWind = 69,
-    [pbr::OriginalName("SHADOW_BALL")] ShadowBall = 70,
-    [pbr::OriginalName("BULLET_PUNCH")] BulletPunch = 71,
-    [pbr::OriginalName("MAGNET_BOMB")] MagnetBomb = 72,
-    [pbr::OriginalName("STEEL_WING")] SteelWing = 73,
-    [pbr::OriginalName("IRON_HEAD")] IronHead = 74,
-    [pbr::OriginalName("PARABOLIC_CHARGE")] ParabolicCharge = 75,
-    [pbr::OriginalName("SPARK")] Spark = 76,
-    [pbr::OriginalName("THUNDER_PUNCH")] ThunderPunch = 77,
-    [pbr::OriginalName("THUNDER")] Thunder = 78,
-    [pbr::OriginalName("THUNDERBOLT")] Thunderbolt = 79,
-    [pbr::OriginalName("TWISTER")] Twister = 80,
-    [pbr::OriginalName("DRAGON_BREATH")] DragonBreath = 81,
-    [pbr::OriginalName("DRAGON_PULSE")] DragonPulse = 82,
-    [pbr::OriginalName("DRAGON_CLAW")] DragonClaw = 83,
-    [pbr::OriginalName("DISARMING_VOICE")] DisarmingVoice = 84,
-    [pbr::OriginalName("DRAINING_KISS")] DrainingKiss = 85,
-    [pbr::OriginalName("DAZZLING_GLEAM")] DazzlingGleam = 86,
-    [pbr::OriginalName("MOONBLAST")] Moonblast = 87,
-    [pbr::OriginalName("PLAY_ROUGH")] PlayRough = 88,
-    [pbr::OriginalName("CROSS_POISON")] CrossPoison = 89,
-    [pbr::OriginalName("SLUDGE_BOMB")] SludgeBomb = 90,
-    [pbr::OriginalName("SLUDGE_WAVE")] SludgeWave = 91,
-    [pbr::OriginalName("GUNK_SHOT")] GunkShot = 92,
-    [pbr::OriginalName("MUD_SHOT")] MudShot = 93,
-    [pbr::OriginalName("BONE_CLUB")] BoneClub = 94,
-    [pbr::OriginalName("BULLDOZE")] Bulldoze = 95,
-    [pbr::OriginalName("MUD_BOMB")] MudBomb = 96,
-    [pbr::OriginalName("FURY_CUTTER")] FuryCutter = 97,
-    [pbr::OriginalName("BUG_BITE")] BugBite = 98,
-    [pbr::OriginalName("SIGNAL_BEAM")] SignalBeam = 99,
-    [pbr::OriginalName("X_SCISSOR")] XScissor = 100,
-    [pbr::OriginalName("FLAME_CHARGE")] FlameCharge = 101,
-    [pbr::OriginalName("FLAME_BURST")] FlameBurst = 102,
-    [pbr::OriginalName("FIRE_BLAST")] FireBlast = 103,
-    [pbr::OriginalName("BRINE")] Brine = 104,
-    [pbr::OriginalName("WATER_PULSE")] WaterPulse = 105,
-    [pbr::OriginalName("SCALD")] Scald = 106,
-    [pbr::OriginalName("HYDRO_PUMP")] HydroPump = 107,
-    [pbr::OriginalName("PSYCHIC")] Psychic = 108,
-    [pbr::OriginalName("PSYSTRIKE")] Psystrike = 109,
-    [pbr::OriginalName("ICE_SHARD")] IceShard = 110,
-    [pbr::OriginalName("ICY_WIND")] IcyWind = 111,
-    [pbr::OriginalName("FROST_BREATH")] FrostBreath = 112,
-    [pbr::OriginalName("ABSORB")] Absorb = 113,
-    [pbr::OriginalName("GIGA_DRAIN")] GigaDrain = 114,
-    [pbr::OriginalName("FIRE_PUNCH")] FirePunch = 115,
-    [pbr::OriginalName("SOLAR_BEAM")] SolarBeam = 116,
-    [pbr::OriginalName("LEAF_BLADE")] LeafBlade = 117,
-    [pbr::OriginalName("POWER_WHIP")] PowerWhip = 118,
-    [pbr::OriginalName("SPLASH")] Splash = 119,
-    [pbr::OriginalName("ACID")] Acid = 120,
-    [pbr::OriginalName("AIR_CUTTER")] AirCutter = 121,
-    [pbr::OriginalName("HURRICANE")] Hurricane = 122,
-    [pbr::OriginalName("BRICK_BREAK")] BrickBreak = 123,
-    [pbr::OriginalName("CUT")] Cut = 124,
-    [pbr::OriginalName("SWIFT")] Swift = 125,
-    [pbr::OriginalName("HORN_ATTACK")] HornAttack = 126,
-    [pbr::OriginalName("STOMP")] Stomp = 127,
-    [pbr::OriginalName("HEADBUTT")] Headbutt = 128,
-    [pbr::OriginalName("HYPER_FANG")] HyperFang = 129,
-    [pbr::OriginalName("SLAM")] Slam = 130,
-    [pbr::OriginalName("BODY_SLAM")] BodySlam = 131,
-    [pbr::OriginalName("REST")] Rest = 132,
-    [pbr::OriginalName("STRUGGLE")] Struggle = 133,
-    [pbr::OriginalName("SCALD_BLASTOISE")] ScaldBlastoise = 134,
-    [pbr::OriginalName("HYDRO_PUMP_BLASTOISE")] HydroPumpBlastoise = 135,
-    [pbr::OriginalName("WRAP_GREEN")] WrapGreen = 136,
-    [pbr::OriginalName("WRAP_PINK")] WrapPink = 137,
-    [pbr::OriginalName("FURY_CUTTER_FAST")] FuryCutterFast = 200,
-    [pbr::OriginalName("BUG_BITE_FAST")] BugBiteFast = 201,
-    [pbr::OriginalName("BITE_FAST")] BiteFast = 202,
-    [pbr::OriginalName("SUCKER_PUNCH_FAST")] SuckerPunchFast = 203,
-    [pbr::OriginalName("DRAGON_BREATH_FAST")] DragonBreathFast = 204,
-    [pbr::OriginalName("THUNDER_SHOCK_FAST")] ThunderShockFast = 205,
-    [pbr::OriginalName("SPARK_FAST")] SparkFast = 206,
-    [pbr::OriginalName("LOW_KICK_FAST")] LowKickFast = 207,
-    [pbr::OriginalName("KARATE_CHOP_FAST")] KarateChopFast = 208,
-    [pbr::OriginalName("EMBER_FAST")] EmberFast = 209,
-    [pbr::OriginalName("WING_ATTACK_FAST")] WingAttackFast = 210,
-    [pbr::OriginalName("PECK_FAST")] PeckFast = 211,
-    [pbr::OriginalName("LICK_FAST")] LickFast = 212,
-    [pbr::OriginalName("SHADOW_CLAW_FAST")] ShadowClawFast = 213,
-    [pbr::OriginalName("VINE_WHIP_FAST")] VineWhipFast = 214,
-    [pbr::OriginalName("RAZOR_LEAF_FAST")] RazorLeafFast = 215,
-    [pbr::OriginalName("MUD_SHOT_FAST")] MudShotFast = 216,
-    [pbr::OriginalName("ICE_SHARD_FAST")] IceShardFast = 217,
-    [pbr::OriginalName("FROST_BREATH_FAST")] FrostBreathFast = 218,
-    [pbr::OriginalName("QUICK_ATTACK_FAST")] QuickAttackFast = 219,
-    [pbr::OriginalName("SCRATCH_FAST")] ScratchFast = 220,
-    [pbr::OriginalName("TACKLE_FAST")] TackleFast = 221,
-    [pbr::OriginalName("POUND_FAST")] PoundFast = 222,
-    [pbr::OriginalName("CUT_FAST")] CutFast = 223,
-    [pbr::OriginalName("POISON_JAB_FAST")] PoisonJabFast = 224,
-    [pbr::OriginalName("ACID_FAST")] AcidFast = 225,
-    [pbr::OriginalName("PSYCHO_CUT_FAST")] PsychoCutFast = 226,
-    [pbr::OriginalName("ROCK_THROW_FAST")] RockThrowFast = 227,
-    [pbr::OriginalName("METAL_CLAW_FAST")] MetalClawFast = 228,
-    [pbr::OriginalName("BULLET_PUNCH_FAST")] BulletPunchFast = 229,
-    [pbr::OriginalName("WATER_GUN_FAST")] WaterGunFast = 230,
-    [pbr::OriginalName("SPLASH_FAST")] SplashFast = 231,
-    [pbr::OriginalName("WATER_GUN_FAST_BLASTOISE")] WaterGunFastBlastoise = 232,
-    [pbr::OriginalName("MUD_SLAP_FAST")] MudSlapFast = 233,
-    [pbr::OriginalName("ZEN_HEADBUTT_FAST")] ZenHeadbuttFast = 234,
-    [pbr::OriginalName("CONFUSION_FAST")] ConfusionFast = 235,
-    [pbr::OriginalName("POISON_STING_FAST")] PoisonStingFast = 236,
-    [pbr::OriginalName("BUBBLE_FAST")] BubbleFast = 237,
-    [pbr::OriginalName("FEINT_ATTACK_FAST")] FeintAttackFast = 238,
-    [pbr::OriginalName("STEEL_WING_FAST")] SteelWingFast = 239,
-    [pbr::OriginalName("FIRE_FANG_FAST")] FireFangFast = 240,
-    [pbr::OriginalName("ROCK_SMASH_FAST")] RockSmashFast = 241,
-  }
-
-  public enum ItemId {
-    [pbr::OriginalName("ITEM_UNKNOWN")] ItemUnknown = 0,
-    [pbr::OriginalName("ITEM_POKE_BALL")] ItemPokeBall = 1,
-    [pbr::OriginalName("ITEM_GREAT_BALL")] ItemGreatBall = 2,
-    [pbr::OriginalName("ITEM_ULTRA_BALL")] ItemUltraBall = 3,
-    [pbr::OriginalName("ITEM_MASTER_BALL")] ItemMasterBall = 4,
-    [pbr::OriginalName("ITEM_POTION")] ItemPotion = 101,
-    [pbr::OriginalName("ITEM_SUPER_POTION")] ItemSuperPotion = 102,
-    [pbr::OriginalName("ITEM_HYPER_POTION")] ItemHyperPotion = 103,
-    [pbr::OriginalName("ITEM_MAX_POTION")] ItemMaxPotion = 104,
-    [pbr::OriginalName("ITEM_REVIVE")] ItemRevive = 201,
-    [pbr::OriginalName("ITEM_MAX_REVIVE")] ItemMaxRevive = 202,
-    [pbr::OriginalName("ITEM_LUCKY_EGG")] ItemLuckyEgg = 301,
-    [pbr::OriginalName("ITEM_INCENSE_ORDINARY")] ItemIncenseOrdinary = 401,
-    [pbr::OriginalName("ITEM_INCENSE_SPICY")] ItemIncenseSpicy = 402,
-    [pbr::OriginalName("ITEM_INCENSE_COOL")] ItemIncenseCool = 403,
-    [pbr::OriginalName("ITEM_INCENSE_FLORAL")] ItemIncenseFloral = 404,
-    [pbr::OriginalName("ITEM_TROY_DISK")] ItemTroyDisk = 501,
-    [pbr::OriginalName("ITEM_X_ATTACK")] ItemXAttack = 602,
-    [pbr::OriginalName("ITEM_X_DEFENSE")] ItemXDefense = 603,
-    [pbr::OriginalName("ITEM_X_MIRACLE")] ItemXMiracle = 604,
-    [pbr::OriginalName("ITEM_RAZZ_BERRY")] ItemRazzBerry = 701,
-    [pbr::OriginalName("ITEM_BLUK_BERRY")] ItemBlukBerry = 702,
-    [pbr::OriginalName("ITEM_NANAB_BERRY")] ItemNanabBerry = 703,
-    [pbr::OriginalName("ITEM_WEPAR_BERRY")] ItemWeparBerry = 704,
-    [pbr::OriginalName("ITEM_PINAP_BERRY")] ItemPinapBerry = 705,
-    [pbr::OriginalName("ITEM_SPECIAL_CAMERA")] ItemSpecialCamera = 801,
-    [pbr::OriginalName("ITEM_INCUBATOR_BASIC_UNLIMITED")] ItemIncubatorBasicUnlimited = 901,
-    [pbr::OriginalName("ITEM_INCUBATOR_BASIC")] ItemIncubatorBasic = 902,
-    [pbr::OriginalName("ITEM_POKEMON_STORAGE_UPGRADE")] ItemPokemonStorageUpgrade = 1001,
-    [pbr::OriginalName("ITEM_ITEM_STORAGE_UPGRADE")] ItemItemStorageUpgrade = 1002,
-  }
-
-  public enum InventoryUpgradeType {
-    [pbr::OriginalName("UPGRADE_UNSET")] UpgradeUnset = 0,
-    [pbr::OriginalName("INCREASE_ITEM_STORAGE")] IncreaseItemStorage = 1,
-    [pbr::OriginalName("INCREASE_POKEMON_STORAGE")] IncreasePokemonStorage = 2,
-  }
-
-  public enum EggIncubatorType {
-    [pbr::OriginalName("INCUBATOR_UNSET")] IncubatorUnset = 0,
-    [pbr::OriginalName("INCUBATOR_DISTANCE")] IncubatorDistance = 1,
-  }
-
-  public enum PokemonFamilyId {
-    [pbr::OriginalName("FAMILY_UNSET")] FamilyUnset = 0,
-    [pbr::OriginalName("FAMILY_BULBASAUR")] FamilyBulbasaur = 1,
-    [pbr::OriginalName("FAMILY_CHARMANDER")] FamilyCharmander = 4,
-    [pbr::OriginalName("FAMILY_SQUIRTLE")] FamilySquirtle = 7,
-    [pbr::OriginalName("FAMILY_CATERPIE")] FamilyCaterpie = 10,
-    [pbr::OriginalName("FAMILY_WEEDLE")] FamilyWeedle = 13,
-    [pbr::OriginalName("FAMILY_PIDGEY")] FamilyPidgey = 16,
-    [pbr::OriginalName("FAMILY_RATTATA")] FamilyRattata = 19,
-    [pbr::OriginalName("FAMILY_SPEAROW")] FamilySpearow = 21,
-    [pbr::OriginalName("FAMILY_EKANS")] FamilyEkans = 23,
-    [pbr::OriginalName("FAMILY_PIKACHU")] FamilyPikachu = 25,
-    [pbr::OriginalName("FAMILY_SANDSHREW")] FamilySandshrew = 27,
-    [pbr::OriginalName("FAMILY_NIDORAN")] FamilyNidoran = 29,
-    [pbr::OriginalName("FAMILY_NIDORAN2")] FamilyNidoran2 = 32,
-    [pbr::OriginalName("FAMILY_CLEFAIRY")] FamilyClefairy = 35,
-    [pbr::OriginalName("FAMILY_VULPIX")] FamilyVulpix = 37,
-    [pbr::OriginalName("FAMILY_JIGGLYPUFF")] FamilyJigglypuff = 39,
-    [pbr::OriginalName("FAMILY_ZUBAT")] FamilyZubat = 41,
-    [pbr::OriginalName("FAMILY_ODDISH")] FamilyOddish = 43,
-    [pbr::OriginalName("FAMILY_PARAS")] FamilyParas = 46,
-    [pbr::OriginalName("FAMILY_VENONAT")] FamilyVenonat = 48,
-    [pbr::OriginalName("FAMILY_DIGLETT")] FamilyDiglett = 50,
-    [pbr::OriginalName("FAMILY_MEOWTH")] FamilyMeowth = 52,
-    [pbr::OriginalName("FAMILY_PSYDUCK")] FamilyPsyduck = 54,
-    [pbr::OriginalName("FAMILY_MANKEY")] FamilyMankey = 56,
-    [pbr::OriginalName("FAMILY_GROWLITHE")] FamilyGrowlithe = 58,
-    [pbr::OriginalName("FAMILY_POLIWAG")] FamilyPoliwag = 60,
-    [pbr::OriginalName("FAMILY_ABRA")] FamilyAbra = 63,
-    [pbr::OriginalName("FAMILY_MACHOP")] FamilyMachop = 66,
-    [pbr::OriginalName("FAMILY_BELLSPROUT")] FamilyBellsprout = 69,
-    [pbr::OriginalName("FAMILY_TENTACOOL")] FamilyTentacool = 72,
-    [pbr::OriginalName("FAMILY_GEODUDE")] FamilyGeodude = 74,
-    [pbr::OriginalName("FAMILY_PONYTA")] FamilyPonyta = 77,
-    [pbr::OriginalName("FAMILY_SLOWPOKE")] FamilySlowpoke = 79,
-    [pbr::OriginalName("FAMILY_MAGNEMITE")] FamilyMagnemite = 81,
-    [pbr::OriginalName("FAMILY_FARFETCHD")] FamilyFarfetchd = 83,
-    [pbr::OriginalName("FAMILY_DODUO")] FamilyDoduo = 84,
-    [pbr::OriginalName("FAMILY_SEEL")] FamilySeel = 86,
-    [pbr::OriginalName("FAMILY_GRIMER")] FamilyGrimer = 88,
-    [pbr::OriginalName("FAMILY_SHELLDER")] FamilyShellder = 90,
-    [pbr::OriginalName("FAMILY_GASTLY")] FamilyGastly = 92,
-    [pbr::OriginalName("FAMILY_ONIX")] FamilyOnix = 95,
-    [pbr::OriginalName("FAMILY_DROWZEE")] FamilyDrowzee = 96,
-    [pbr::OriginalName("FAMILY_KRABBY")] FamilyKrabby = 98,
-    [pbr::OriginalName("FAMILY_VOLTORB")] FamilyVoltorb = 100,
-    [pbr::OriginalName("FAMILY_EXEGGCUTE")] FamilyExeggcute = 102,
-    [pbr::OriginalName("FAMILY_CUBONE")] FamilyCubone = 104,
-    [pbr::OriginalName("FAMILY_HITMONLEE")] FamilyHitmonlee = 106,
-    [pbr::OriginalName("FAMILY_HITMONCHAN")] FamilyHitmonchan = 107,
-    [pbr::OriginalName("FAMILY_LICKITUNG")] FamilyLickitung = 108,
-    [pbr::OriginalName("FAMILY_KOFFING")] FamilyKoffing = 109,
-    [pbr::OriginalName("FAMILY_RHYHORN")] FamilyRhyhorn = 111,
-    [pbr::OriginalName("FAMILY_CHANSEY")] FamilyChansey = 113,
-    [pbr::OriginalName("FAMILY_TANGELA")] FamilyTangela = 114,
-    [pbr::OriginalName("FAMILY_KANGASKHAN")] FamilyKangaskhan = 115,
-    [pbr::OriginalName("FAMILY_HORSEA")] FamilyHorsea = 116,
-    [pbr::OriginalName("FAMILY_GOLDEEN")] FamilyGoldeen = 118,
-    [pbr::OriginalName("FAMILY_STARYU")] FamilyStaryu = 120,
-    [pbr::OriginalName("FAMILY_MR_MIME")] FamilyMrMime = 122,
-    [pbr::OriginalName("FAMILY_SCYTHER")] FamilyScyther = 123,
-    [pbr::OriginalName("FAMILY_JYNX")] FamilyJynx = 124,
-    [pbr::OriginalName("FAMILY_ELECTABUZZ")] FamilyElectabuzz = 125,
-    [pbr::OriginalName("FAMILY_MAGMAR")] FamilyMagmar = 126,
-    [pbr::OriginalName("FAMILY_PINSIR")] FamilyPinsir = 127,
-    [pbr::OriginalName("FAMILY_TAUROS")] FamilyTauros = 128,
-    [pbr::OriginalName("FAMILY_MAGIKARP")] FamilyMagikarp = 129,
-    [pbr::OriginalName("FAMILY_LAPRAS")] FamilyLapras = 131,
-    [pbr::OriginalName("FAMILY_DITTO")] FamilyDitto = 132,
-    [pbr::OriginalName("FAMILY_EEVEE")] FamilyEevee = 133,
-    [pbr::OriginalName("FAMILY_PORYGON")] FamilyPorygon = 137,
-    [pbr::OriginalName("FAMILY_OMANYTE")] FamilyOmanyte = 138,
-    [pbr::OriginalName("FAMILY_KABUTO")] FamilyKabuto = 140,
-    [pbr::OriginalName("FAMILY_AERODACTYL")] FamilyAerodactyl = 142,
-    [pbr::OriginalName("FAMILY_SNORLAX")] FamilySnorlax = 143,
-    [pbr::OriginalName("FAMILY_ARTICUNO")] FamilyArticuno = 144,
-    [pbr::OriginalName("FAMILY_ZAPDOS")] FamilyZapdos = 145,
-    [pbr::OriginalName("FAMILY_MOLTRES")] FamilyMoltres = 146,
-    [pbr::OriginalName("FAMILY_DRATINI")] FamilyDratini = 147,
-    [pbr::OriginalName("FAMILY_MEWTWO")] FamilyMewtwo = 150,
-    [pbr::OriginalName("FAMILY_MEW")] FamilyMew = 151,
-  }
-
-  public enum MapObjectsStatus {
-    [pbr::OriginalName("UNSET_STATUS")] UnsetStatus = 0,
-    [pbr::OriginalName("SUCCESS")] Success = 1,
-    [pbr::OriginalName("LOCATION_UNSET")] LocationUnset = 2,
-  }
-
-  public enum FortType {
-    [pbr::OriginalName("GYM")] Gym = 0,
-    [pbr::OriginalName("CHECKPOINT")] Checkpoint = 1,
-  }
-
-  public enum PokemonId {
-    [pbr::OriginalName("MISSINGNO")] Missingno = 0,
-    [pbr::OriginalName("BULBASAUR")] Bulbasaur = 1,
-    [pbr::OriginalName("IVYSAUR")] Ivysaur = 2,
-    [pbr::OriginalName("VENUSAUR")] Venusaur = 3,
-    [pbr::OriginalName("CHARMANDER")] Charmander = 4,
-    [pbr::OriginalName("CHARMELEON")] Charmeleon = 5,
-    [pbr::OriginalName("CHARIZARD")] Charizard = 6,
-    [pbr::OriginalName("SQUIRTLE")] Squirtle = 7,
-    [pbr::OriginalName("WARTORTLE")] Wartortle = 8,
-    [pbr::OriginalName("BLASTOISE")] Blastoise = 9,
-    [pbr::OriginalName("CATERPIE")] Caterpie = 10,
-    [pbr::OriginalName("METAPOD")] Metapod = 11,
-    [pbr::OriginalName("BUTTERFREE")] Butterfree = 12,
-    [pbr::OriginalName("WEEDLE")] Weedle = 13,
-    [pbr::OriginalName("KAKUNA")] Kakuna = 14,
-    [pbr::OriginalName("BEEDRILL")] Beedrill = 15,
-    [pbr::OriginalName("PIDGEY")] Pidgey = 16,
-    [pbr::OriginalName("PIDGEOTTO")] Pidgeotto = 17,
-    [pbr::OriginalName("PIDGEOT")] Pidgeot = 18,
-    [pbr::OriginalName("RATTATA")] Rattata = 19,
-    [pbr::OriginalName("RATICATE")] Raticate = 20,
-    [pbr::OriginalName("SPEAROW")] Spearow = 21,
-    [pbr::OriginalName("FEAROW")] Fearow = 22,
-    [pbr::OriginalName("EKANS")] Ekans = 23,
-    [pbr::OriginalName("ARBOK")] Arbok = 24,
-    [pbr::OriginalName("PIKACHU")] Pikachu = 25,
-    [pbr::OriginalName("RAICHU")] Raichu = 26,
-    [pbr::OriginalName("SANDSHREW")] Sandshrew = 27,
-    [pbr::OriginalName("SANDSLASH")] Sandslash = 28,
-    [pbr::OriginalName("NIDORAN_FEMALE")] NidoranFemale = 29,
-    [pbr::OriginalName("NIDORINA")] Nidorina = 30,
-    [pbr::OriginalName("NIDOQUEEN")] Nidoqueen = 31,
-    [pbr::OriginalName("NIDORAN_MALE")] NidoranMale = 32,
-    [pbr::OriginalName("NIDORINO")] Nidorino = 33,
-    [pbr::OriginalName("NIDOKING")] Nidoking = 34,
-    [pbr::OriginalName("CLEFAIRY")] Clefairy = 35,
-    [pbr::OriginalName("CLEFABLE")] Clefable = 36,
-    [pbr::OriginalName("VULPIX")] Vulpix = 37,
-    [pbr::OriginalName("NINETALES")] Ninetales = 38,
-    [pbr::OriginalName("JIGGLYPUFF")] Jigglypuff = 39,
-    [pbr::OriginalName("WIGGLYTUFF")] Wigglytuff = 40,
-    [pbr::OriginalName("ZUBAT")] Zubat = 41,
-    [pbr::OriginalName("GOLBAT")] Golbat = 42,
-    [pbr::OriginalName("ODDISH")] Oddish = 43,
-    [pbr::OriginalName("GLOOM")] Gloom = 44,
-    [pbr::OriginalName("VILEPLUME")] Vileplume = 45,
-    [pbr::OriginalName("PARAS")] Paras = 46,
-    [pbr::OriginalName("PARASECT")] Parasect = 47,
-    [pbr::OriginalName("VENONAT")] Venonat = 48,
-    [pbr::OriginalName("VENOMOTH")] Venomoth = 49,
-    [pbr::OriginalName("DIGLETT")] Diglett = 50,
-    [pbr::OriginalName("DUGTRIO")] Dugtrio = 51,
-    [pbr::OriginalName("MEOWTH")] Meowth = 52,
-    [pbr::OriginalName("PERSIAN")] Persian = 53,
-    [pbr::OriginalName("PSYDUCK")] Psyduck = 54,
-    [pbr::OriginalName("GOLDUCK")] Golduck = 55,
-    [pbr::OriginalName("MANKEY")] Mankey = 56,
-    [pbr::OriginalName("PRIMEAPE")] Primeape = 57,
-    [pbr::OriginalName("GROWLITHE")] Growlithe = 58,
-    [pbr::OriginalName("ARCANINE")] Arcanine = 59,
-    [pbr::OriginalName("POLIWAG")] Poliwag = 60,
-    [pbr::OriginalName("POLIWHIRL")] Poliwhirl = 61,
-    [pbr::OriginalName("POLIWRATH")] Poliwrath = 62,
-    [pbr::OriginalName("ABRA")] Abra = 63,
-    [pbr::OriginalName("KADABRA")] Kadabra = 64,
-    [pbr::OriginalName("ALAKAZAM")] Alakazam = 65,
-    [pbr::OriginalName("MACHOP")] Machop = 66,
-    [pbr::OriginalName("MACHOKE")] Machoke = 67,
-    [pbr::OriginalName("MACHAMP")] Machamp = 68,
-    [pbr::OriginalName("BELLSPROUT")] Bellsprout = 69,
-    [pbr::OriginalName("WEEPINBELL")] Weepinbell = 70,
-    [pbr::OriginalName("VICTREEBEL")] Victreebel = 71,
-    [pbr::OriginalName("TENTACOOL")] Tentacool = 72,
-    [pbr::OriginalName("TENTACRUEL")] Tentacruel = 73,
-    [pbr::OriginalName("GEODUDE")] Geodude = 74,
-    [pbr::OriginalName("GRAVELER")] Graveler = 75,
-    [pbr::OriginalName("GOLEM")] Golem = 76,
-    [pbr::OriginalName("PONYTA")] Ponyta = 77,
-    [pbr::OriginalName("RAPIDASH")] Rapidash = 78,
-    [pbr::OriginalName("SLOWPOKE")] Slowpoke = 79,
-    [pbr::OriginalName("SLOWBRO")] Slowbro = 80,
-    [pbr::OriginalName("MAGNEMITE")] Magnemite = 81,
-    [pbr::OriginalName("MAGNETON")] Magneton = 82,
-    [pbr::OriginalName("FARFETCHD")] Farfetchd = 83,
-    [pbr::OriginalName("DODUO")] Doduo = 84,
-    [pbr::OriginalName("DODRIO")] Dodrio = 85,
-    [pbr::OriginalName("SEEL")] Seel = 86,
-    [pbr::OriginalName("DEWGONG")] Dewgong = 87,
-    [pbr::OriginalName("GRIMER")] Grimer = 88,
-    [pbr::OriginalName("MUK")] Muk = 89,
-    [pbr::OriginalName("SHELLDER")] Shellder = 90,
-    [pbr::OriginalName("CLOYSTER")] Cloyster = 91,
-    [pbr::OriginalName("GASTLY")] Gastly = 92,
-    [pbr::OriginalName("HAUNTER")] Haunter = 93,
-    [pbr::OriginalName("GENGAR")] Gengar = 94,
-    [pbr::OriginalName("ONIX")] Onix = 95,
-    [pbr::OriginalName("DROWZEE")] Drowzee = 96,
-    [pbr::OriginalName("HYPNO")] Hypno = 97,
-    [pbr::OriginalName("KRABBY")] Krabby = 98,
-    [pbr::OriginalName("KINGLER")] Kingler = 99,
-    [pbr::OriginalName("VOLTORB")] Voltorb = 100,
-    [pbr::OriginalName("ELECTRODE")] Electrode = 101,
-    [pbr::OriginalName("EXEGGCUTE")] Exeggcute = 102,
-    [pbr::OriginalName("EXEGGUTOR")] Exeggutor = 103,
-    [pbr::OriginalName("CUBONE")] Cubone = 104,
-    [pbr::OriginalName("MAROWAK")] Marowak = 105,
-    [pbr::OriginalName("HITMONLEE")] Hitmonlee = 106,
-    [pbr::OriginalName("HITMONCHAN")] Hitmonchan = 107,
-    [pbr::OriginalName("LICKITUNG")] Lickitung = 108,
-    [pbr::OriginalName("KOFFING")] Koffing = 109,
-    [pbr::OriginalName("WEEZING")] Weezing = 110,
-    [pbr::OriginalName("RHYHORN")] Rhyhorn = 111,
-    [pbr::OriginalName("RHYDON")] Rhydon = 112,
-    [pbr::OriginalName("CHANSEY")] Chansey = 113,
-    [pbr::OriginalName("TANGELA")] Tangela = 114,
-    [pbr::OriginalName("KANGASKHAN")] Kangaskhan = 115,
-    [pbr::OriginalName("HORSEA")] Horsea = 116,
-    [pbr::OriginalName("SEADRA")] Seadra = 117,
-    [pbr::OriginalName("GOLDEEN")] Goldeen = 118,
-    [pbr::OriginalName("SEAKING")] Seaking = 119,
-    [pbr::OriginalName("STARYU")] Staryu = 120,
-    [pbr::OriginalName("STARMIE")] Starmie = 121,
-    [pbr::OriginalName("MR_MIME")] MrMime = 122,
-    [pbr::OriginalName("SCYTHER")] Scyther = 123,
-    [pbr::OriginalName("JYNX")] Jynx = 124,
-    [pbr::OriginalName("ELECTABUZZ")] Electabuzz = 125,
-    [pbr::OriginalName("MAGMAR")] Magmar = 126,
-    [pbr::OriginalName("PINSIR")] Pinsir = 127,
-    [pbr::OriginalName("TAUROS")] Tauros = 128,
-    [pbr::OriginalName("MAGIKARP")] Magikarp = 129,
-    [pbr::OriginalName("GYARADOS")] Gyarados = 130,
-    [pbr::OriginalName("LAPRAS")] Lapras = 131,
-    [pbr::OriginalName("DITTO")] Ditto = 132,
-    [pbr::OriginalName("EEVEE")] Eevee = 133,
-    [pbr::OriginalName("VAPOREON")] Vaporeon = 134,
-    [pbr::OriginalName("JOLTEON")] Jolteon = 135,
-    [pbr::OriginalName("FLAREON")] Flareon = 136,
-    [pbr::OriginalName("PORYGON")] Porygon = 137,
-    [pbr::OriginalName("OMANYTE")] Omanyte = 138,
-    [pbr::OriginalName("OMASTAR")] Omastar = 139,
-    [pbr::OriginalName("KABUTO")] Kabuto = 140,
-    [pbr::OriginalName("KABUTOPS")] Kabutops = 141,
-    [pbr::OriginalName("AERODACTYL")] Aerodactyl = 142,
-    [pbr::OriginalName("SNORLAX")] Snorlax = 143,
-    [pbr::OriginalName("ARTICUNO")] Articuno = 144,
-    [pbr::OriginalName("ZAPDOS")] Zapdos = 145,
-    [pbr::OriginalName("MOLTRES")] Moltres = 146,
-    [pbr::OriginalName("DRATINI")] Dratini = 147,
-    [pbr::OriginalName("DRAGONAIR")] Dragonair = 148,
-    [pbr::OriginalName("DRAGONITE")] Dragonite = 149,
-    [pbr::OriginalName("MEWTWO")] Mewtwo = 150,
-    [pbr::OriginalName("MEW")] Mew = 151,
-  }
-
-  public enum FortSponsor {
-    [pbr::OriginalName("UNSET_SPONSOR")] UnsetSponsor = 0,
-    [pbr::OriginalName("MCDONALDS")] Mcdonalds = 1,
-    [pbr::OriginalName("POKEMON_STORE")] PokemonStore = 2,
-  }
-
-  public enum FortRenderingType {
-    [pbr::OriginalName("DEFAULT")] Default = 0,
-    [pbr::OriginalName("INTERNAL_TEST")] InternalTest = 1,
-  }
-
-  public enum ItemType {
-    [pbr::OriginalName("ITEM_TYPE_NONE")] None = 0,
-    [pbr::OriginalName("ITEM_TYPE_POKEBALL")] Pokeball = 1,
-    [pbr::OriginalName("ITEM_TYPE_POTION")] Potion = 2,
-    [pbr::OriginalName("ITEM_TYPE_REVIVE")] Revive = 3,
-    [pbr::OriginalName("ITEM_TYPE_MAP")] Map = 4,
-    [pbr::OriginalName("ITEM_TYPE_BATTLE")] Battle = 5,
-    [pbr::OriginalName("ITEM_TYPE_FOOD")] Food = 6,
-    [pbr::OriginalName("ITEM_TYPE_CAMERA")] Camera = 7,
-    [pbr::OriginalName("ITEM_TYPE_DISK")] Disk = 8,
-    [pbr::OriginalName("ITEM_TYPE_INCUBATOR")] Incubator = 9,
-    [pbr::OriginalName("ITEM_TYPE_INCENSE")] Incense = 10,
-    [pbr::OriginalName("ITEM_TYPE_XP_BOOST")] XpBoost = 11,
-    [pbr::OriginalName("ITEM_TYPE_INVENTORY_UPGRADE")] InventoryUpgrade = 12,
-  }
-
-  public enum ItemCategory {
-    [pbr::OriginalName("ITEM_CATEGORY_NONE")] None = 0,
-    [pbr::OriginalName("ITEM_CATEGORY_POKEBALL")] Pokeball = 1,
-    [pbr::OriginalName("ITEM_CATEGORY_FOOD")] Food = 2,
-    [pbr::OriginalName("ITEM_CATEGORY_MEDICINE")] Medicine = 3,
-    [pbr::OriginalName("ITEM_CATEGORY_BOOST")] Boost = 4,
-    [pbr::OriginalName("ITEM_CATEGORY_UTILITES")] Utilites = 5,
-    [pbr::OriginalName("ITEM_CATEGORY_CAMERA")] Camera = 6,
-    [pbr::OriginalName("ITEM_CATEGORY_DISK")] Disk = 7,
-    [pbr::OriginalName("ITEM_CATEGORY_INCUBATOR")] Incubator = 8,
-    [pbr::OriginalName("ITEM_CATEGORY_INCENSE")] Incense = 9,
-    [pbr::OriginalName("ITEM_CATEGORY_XP_BOOST")] XpBoost = 10,
-    [pbr::OriginalName("ITEM_CATEGORY_INVENTORY_UPGRADE")] InventoryUpgrade = 11,
-  }
-
-  public enum ItemEffect {
-    [pbr::OriginalName("ITEM_EFFECT_NONE")] None = 0,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_NO_FLEE")] CapNoFlee = 1000,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_NO_MOVEMENT")] CapNoMovement = 1002,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_NO_THREAT")] CapNoThreat = 1003,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_TARGET_MAX")] CapTargetMax = 1004,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_TARGET_SLOW")] CapTargetSlow = 1005,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_NIGHT")] CapChanceNight = 1006,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_TRAINER")] CapChanceTrainer = 1007,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_FIRST_THROW")] CapChanceFirstThrow = 1008,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_LEGEND")] CapChanceLegend = 1009,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_HEAVY")] CapChanceHeavy = 1010,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_REPEAT")] CapChanceRepeat = 1011,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_MULTI_THROW")] CapChanceMultiThrow = 1012,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_ALWAYS")] CapChanceAlways = 1013,
-    [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_SINGLE_THROW")] CapChanceSingleThrow = 1014,
-  }
-
-  public enum ActivityType {
-    [pbr::OriginalName("ACTIVITY_UNKNOWN")] ActivityUnknown = 0,
-    [pbr::OriginalName("ACTIVITY_CATCH_POKEMON")] ActivityCatchPokemon = 1,
-    [pbr::OriginalName("ACTIVITY_CATCH_LEGEND_POKEMON")] ActivityCatchLegendPokemon = 2,
-    [pbr::OriginalName("ACTIVITY_FLEE_POKEMON")] ActivityFleePokemon = 3,
-    [pbr::OriginalName("ACTIVITY_DEFEAT_FORT")] ActivityDefeatFort = 4,
-    [pbr::OriginalName("ACTIVITY_EVOLVE_POKEMON")] ActivityEvolvePokemon = 5,
-    [pbr::OriginalName("ACTIVITY_HATCH_EGG")] ActivityHatchEgg = 6,
-    [pbr::OriginalName("ACTIVITY_WALK_KM")] ActivityWalkKm = 7,
-    [pbr::OriginalName("ACTIVITY_POKEDEX_ENTRY_NEW")] ActivityPokedexEntryNew = 8,
-    [pbr::OriginalName("ACTIVITY_CATCH_FIRST_THROW")] ActivityCatchFirstThrow = 9,
-    [pbr::OriginalName("ACTIVITY_CATCH_NICE_THROW")] ActivityCatchNiceThrow = 10,
-    [pbr::OriginalName("ACTIVITY_CATCH_GREAT_THROW")] ActivityCatchGreatThrow = 11,
-    [pbr::OriginalName("ACTIVITY_CATCH_EXCELLENT_THROW")] ActivityCatchExcellentThrow = 12,
-    [pbr::OriginalName("ACTIVITY_CATCH_CURVEBALL")] ActivityCatchCurveball = 13,
-    [pbr::OriginalName("ACTIVITY_CATCH_FIRST_CATCH_OF_DAY")] ActivityCatchFirstCatchOfDay = 14,
-    [pbr::OriginalName("ACTIVITY_CATCH_MILESTONE")] ActivityCatchMilestone = 15,
-    [pbr::OriginalName("ACTIVITY_TRAIN_POKEMON")] ActivityTrainPokemon = 16,
-    [pbr::OriginalName("ACTIVITY_SEARCH_FORT")] ActivitySearchFort = 17,
-    [pbr::OriginalName("ACTIVITY_RELEASE_POKEMON")] ActivityReleasePokemon = 18,
-    [pbr::OriginalName("ACTIVITY_HATCH_EGG_SMALL_BONUS")] ActivityHatchEggSmallBonus = 19,
-    [pbr::OriginalName("ACTIVITY_HATCH_EGG_MEDIUM_BONUS")] ActivityHatchEggMediumBonus = 20,
-    [pbr::OriginalName("ACTIVITY_HATCH_EGG_LARGE_BONUS")] ActivityHatchEggLargeBonus = 21,
-    [pbr::OriginalName("ACTIVITY_DEFEAT_GYM_DEFENDER")] ActivityDefeatGymDefender = 22,
-    [pbr::OriginalName("ACTIVITY_DEFEAT_GYM_LEADER")] ActivityDefeatGymLeader = 23,
-  }
-
-  public enum BadgeType {
-    [pbr::OriginalName("BADGE_UNSET")] BadgeUnset = 0,
-    [pbr::OriginalName("BADGE_TRAVEL_KM")] BadgeTravelKm = 1,
-    [pbr::OriginalName("BADGE_POKEDEX_ENTRIES")] BadgePokedexEntries = 2,
-    [pbr::OriginalName("BADGE_CAPTURE_TOTAL")] BadgeCaptureTotal = 3,
-    [pbr::OriginalName("BADGE_DEFEATED_FORT")] BadgeDefeatedFort = 4,
-    [pbr::OriginalName("BADGE_EVOLVED_TOTAL")] BadgeEvolvedTotal = 5,
-    [pbr::OriginalName("BADGE_HATCHED_TOTAL")] BadgeHatchedTotal = 6,
-    [pbr::OriginalName("BADGE_ENCOUNTERED_TOTAL")] BadgeEncounteredTotal = 7,
-    [pbr::OriginalName("BADGE_POKESTOPS_VISITED")] BadgePokestopsVisited = 8,
-    [pbr::OriginalName("BADGE_UNIQUE_POKESTOPS")] BadgeUniquePokestops = 9,
-    [pbr::OriginalName("BADGE_POKEBALL_THROWN")] BadgePokeballThrown = 10,
-    [pbr::OriginalName("BADGE_BIG_MAGIKARP")] BadgeBigMagikarp = 11,
-    [pbr::OriginalName("BADGE_DEPLOYED_TOTAL")] BadgeDeployedTotal = 12,
-    [pbr::OriginalName("BADGE_BATTLE_ATTACK_WON")] BadgeBattleAttackWon = 13,
-    [pbr::OriginalName("BADGE_BATTLE_TRAINING_WON")] BadgeBattleTrainingWon = 14,
-    [pbr::OriginalName("BADGE_BATTLE_DEFEND_WON")] BadgeBattleDefendWon = 15,
-    [pbr::OriginalName("BADGE_PRESTIGE_RAISED")] BadgePrestigeRaised = 16,
-    [pbr::OriginalName("BADGE_PRESTIGE_DROPPED")] BadgePrestigeDropped = 17,
-    [pbr::OriginalName("BADGE_TYPE_NORMAL")] Normal = 18,
-    [pbr::OriginalName("BADGE_TYPE_FIGHTING")] Fighting = 19,
-    [pbr::OriginalName("BADGE_TYPE_FLYING")] Flying = 20,
-    [pbr::OriginalName("BADGE_TYPE_POISON")] Poison = 21,
-    [pbr::OriginalName("BADGE_TYPE_GROUND")] Ground = 22,
-    [pbr::OriginalName("BADGE_TYPE_ROCK")] Rock = 23,
-    [pbr::OriginalName("BADGE_TYPE_BUG")] Bug = 24,
-    [pbr::OriginalName("BADGE_TYPE_GHOST")] Ghost = 25,
-    [pbr::OriginalName("BADGE_TYPE_STEEL")] Steel = 26,
-    [pbr::OriginalName("BADGE_TYPE_FIRE")] Fire = 27,
-    [pbr::OriginalName("BADGE_TYPE_WATER")] Water = 28,
-    [pbr::OriginalName("BADGE_TYPE_GRASS")] Grass = 29,
-    [pbr::OriginalName("BADGE_TYPE_ELECTRIC")] Electric = 30,
-    [pbr::OriginalName("BADGE_TYPE_PSYCHIC")] Psychic = 31,
-    [pbr::OriginalName("BADGE_TYPE_ICE")] Ice = 32,
-    [pbr::OriginalName("BADGE_TYPE_DRAGON")] Dragon = 33,
-    [pbr::OriginalName("BADGE_TYPE_DARK")] Dark = 34,
-    [pbr::OriginalName("BADGE_TYPE_FAIRY")] Fairy = 35,
-    [pbr::OriginalName("BADGE_SMALL_RATTATA")] BadgeSmallRattata = 36,
-    [pbr::OriginalName("BADGE_PIKACHU")] BadgePikachu = 37,
-  }
-
-  public enum HoloIapItemCategory {
-    [pbr::OriginalName("IAP_CATEGORY_NONE")] IapCategoryNone = 0,
-    [pbr::OriginalName("IAP_CATEGORY_BUNDLE")] IapCategoryBundle = 1,
-    [pbr::OriginalName("IAP_CATEGORY_ITEMS")] IapCategoryItems = 2,
-    [pbr::OriginalName("IAP_CATEGORY_UPGRADES")] IapCategoryUpgrades = 3,
-    [pbr::OriginalName("IAP_CATEGORY_POKECOINS")] IapCategoryPokecoins = 4,
-  }
-
-  public enum CameraInterpolation {
-    [pbr::OriginalName("CAM_INTERP_CUT")] CamInterpCut = 0,
-    [pbr::OriginalName("CAM_INTERP_LINEAR")] CamInterpLinear = 1,
-    [pbr::OriginalName("CAM_INTERP_SMOOTH")] CamInterpSmooth = 2,
-    [pbr::OriginalName("CAM_INTERP_SMOOTH_ROT_LINEAR_MOVE")] CamInterpSmoothRotLinearMove = 3,
-    [pbr::OriginalName("CAM_INTERP_DEPENDS")] CamInterpDepends = 4,
-  }
-
-  public enum CameraTarget {
-    [pbr::OriginalName("CAM_TARGET_ATTACKER")] CamTargetAttacker = 0,
-    [pbr::OriginalName("CAM_TARGET_ATTACKER_EDGE")] CamTargetAttackerEdge = 1,
-    [pbr::OriginalName("CAM_TARGET_ATTACKER_GROUND")] CamTargetAttackerGround = 2,
-    [pbr::OriginalName("CAM_TARGET_DEFENDER")] CamTargetDefender = 3,
-    [pbr::OriginalName("CAM_TARGET_DEFENDER_EDGE")] CamTargetDefenderEdge = 4,
-    [pbr::OriginalName("CAM_TARGET_DEFENDER_GROUND")] CamTargetDefenderGround = 5,
-    [pbr::OriginalName("CAM_TARGET_ATTACKER_DEFENDER")] CamTargetAttackerDefender = 6,
-    [pbr::OriginalName("CAM_TARGET_ATTACKER_DEFENDER_EDGE")] CamTargetAttackerDefenderEdge = 7,
-    [pbr::OriginalName("CAM_TARGET_DEFENDER_ATTACKER")] CamTargetDefenderAttacker = 8,
-    [pbr::OriginalName("CAM_TARGET_DEFENDER_ATTACKER_EDGE")] CamTargetDefenderAttackerEdge = 9,
-    [pbr::OriginalName("CAM_TARGET_ATTACKER_DEFENDER_MIRROR")] CamTargetAttackerDefenderMirror = 11,
-    [pbr::OriginalName("CAM_TARGET_SHOULDER_ATTACKER_DEFENDER")] CamTargetShoulderAttackerDefender = 12,
-    [pbr::OriginalName("CAM_TARGET_SHOULDER_ATTACKER_DEFENDER_MIRROR")] CamTargetShoulderAttackerDefenderMirror = 13,
-    [pbr::OriginalName("CAM_TARGET_ATTACKER_DEFENDER_WORLD")] CamTargetAttackerDefenderWorld = 14,
-  }
-
-  public enum PokemonType {
-    [pbr::OriginalName("POKEMON_TYPE_NONE")] None = 0,
-    [pbr::OriginalName("POKEMON_TYPE_NORMAL")] Normal = 1,
-    [pbr::OriginalName("POKEMON_TYPE_FIGHTING")] Fighting = 2,
-    [pbr::OriginalName("POKEMON_TYPE_FLYING")] Flying = 3,
-    [pbr::OriginalName("POKEMON_TYPE_POISON")] Poison = 4,
-    [pbr::OriginalName("POKEMON_TYPE_GROUND")] Ground = 5,
-    [pbr::OriginalName("POKEMON_TYPE_ROCK")] Rock = 6,
-    [pbr::OriginalName("POKEMON_TYPE_BUG")] Bug = 7,
-    [pbr::OriginalName("POKEMON_TYPE_GHOST")] Ghost = 8,
-    [pbr::OriginalName("POKEMON_TYPE_STEEL")] Steel = 9,
-    [pbr::OriginalName("POKEMON_TYPE_FIRE")] Fire = 10,
-    [pbr::OriginalName("POKEMON_TYPE_WATER")] Water = 11,
-    [pbr::OriginalName("POKEMON_TYPE_GRASS")] Grass = 12,
-    [pbr::OriginalName("POKEMON_TYPE_ELECTRIC")] Electric = 13,
-    [pbr::OriginalName("POKEMON_TYPE_PSYCHIC")] Psychic = 14,
-    [pbr::OriginalName("POKEMON_TYPE_ICE")] Ice = 15,
-    [pbr::OriginalName("POKEMON_TYPE_DRAGON")] Dragon = 16,
-    [pbr::OriginalName("POKEMON_TYPE_DARK")] Dark = 17,
-    [pbr::OriginalName("POKEMON_TYPE_FAIRY")] Fairy = 18,
-  }
-
-  public enum PokemonMovementType {
-    [pbr::OriginalName("MOVEMENT_STATIC")] MovementStatic = 0,
-    [pbr::OriginalName("MOVEMENT_JUMP")] MovementJump = 1,
-    [pbr::OriginalName("MOVEMENT_VERTICAL")] MovementVertical = 2,
-    [pbr::OriginalName("MOVEMENT_PSYCHIC")] MovementPsychic = 3,
-    [pbr::OriginalName("MOVEMENT_ELECTRIC")] MovementElectric = 4,
-    [pbr::OriginalName("MOVEMENT_FLYING")] MovementFlying = 5,
-    [pbr::OriginalName("MOVEMENT_HOVERING")] MovementHovering = 6,
-  }
-
-  public enum PokemonClass {
-    [pbr::OriginalName("NORMAL")] Normal = 0,
-    [pbr::OriginalName("LEGENDARY")] Legendary = 1,
-    [pbr::OriginalName("MYTHIC")] Mythic = 2,
-  }
-
-  #endregion
-
-}
-
-#endregion Designer generated code
+// Generated by the protocol buffer compiler.  DO NOT EDIT!
+// source: AllEnum.proto
+#pragma warning disable 1591, 0612, 3021
+#region Designer generated code
+
+using pb = global::Google.Protobuf;
+using pbc = global::Google.Protobuf.Collections;
+using pbr = global::Google.Protobuf.Reflection;
+using scg = global::System.Collections.Generic;
+namespace PokemonGo.RocketAPI.GeneratedCode
+{
+
+    /// <summary>Holder for reflection information generated from AllEnum.proto</summary>
+    public static partial class AllEnumReflection
+    {
+
+        #region Descriptor
+        /// <summary>File descriptor for AllEnum.proto</summary>
+        public static pbr::FileDescriptor Descriptor
+        {
+            get { return descriptor; }
+        }
+        private static pbr::FileDescriptor descriptor;
+
+        static AllEnumReflection()
+        {
+            byte[] descriptorData = global::System.Convert.FromBase64String(
+                string.Concat(
+                  "Cg1BbGxFbnVtLnByb3RvEgdBbGxFbnVtKjYKDFJwY0RpcmVjdGlvbhILCgdV",
+                  "TktOT1dOEAASDAoIUkVTUE9OU0UQARILCgdSRVFVRVNUEAIqNwoJVGVhbUNv",
+                  "bG9yEgsKB05FVVRSQUwQABIICgRCTFVFEAESBwoDUkVEEAISCgoGWUVMTE9X",
+                  "EAMqwwwKDVJlcXVlc3RNZXRob2QSEAoMTUVUSE9EX1VOU0VUEAASEQoNUExB",
+                  "WUVSX1VQREFURRABEg4KCkdFVF9QTEFZRVIQAhIRCg1HRVRfSU5WRU5UT1JZ",
+                  "EAQSFQoRRE9XTkxPQURfU0VUVElOR1MQBRIbChdET1dOTE9BRF9JVEVNX1RF",
+                  "TVBMQVRFUxAGEiIKHkRPV05MT0FEX1JFTU9URV9DT05GSUdfVkVSU0lPThAH",
+                  "Eg8KC0ZPUlRfU0VBUkNIEGUSDQoJRU5DT1VOVEVSEGYSEQoNQ0FUQ0hfUE9L",
+                  "RU1PThBnEhAKDEZPUlRfREVUQUlMUxBoEgwKCElURU1fVVNFEGkSEwoPR0VU",
+                  "X01BUF9PQkpFQ1RTEGoSFwoTRk9SVF9ERVBMT1lfUE9LRU1PThBuEhcKE0ZP",
+                  "UlRfUkVDQUxMX1BPS0VNT04QbxITCg9SRUxFQVNFX1BPS0VNT04QcBITCg9V",
+                  "U0VfSVRFTV9QT1RJT04QcRIUChBVU0VfSVRFTV9DQVBUVVJFEHISEQoNVVNF",
+                  "X0lURU1fRkxFRRBzEhMKD1VTRV9JVEVNX1JFVklWRRB0EhAKDFRSQURFX1NF",
+                  "QVJDSBB1Eg8KC1RSQURFX09GRkVSEHYSEgoOVFJBREVfUkVTUE9OU0UQdxIQ",
+                  "CgxUUkFERV9SRVNVTFQQeBIWChJHRVRfUExBWUVSX1BST0ZJTEUQeRIRCg1H",
+                  "RVRfSVRFTV9QQUNLEHoSEQoNQlVZX0lURU1fUEFDSxB7EhAKDEJVWV9HRU1f",
+                  "UEFDSxB8EhIKDkVWT0xWRV9QT0tFTU9OEH0SFAoQR0VUX0hBVENIRURfRUdH",
+                  "UxB+Eh8KG0VOQ09VTlRFUl9UVVRPUklBTF9DT01QTEVURRB/EhUKEExFVkVM",
+                  "X1VQX1JFV0FSRFMQgAESGQoUQ0hFQ0tfQVdBUkRFRF9CQURHRVMQgQESEQoM",
+                  "VVNFX0lURU1fR1lNEIUBEhQKD0dFVF9HWU1fREVUQUlMUxCGARIVChBTVEFS",
+                  "VF9HWU1fQkFUVExFEIcBEg8KCkFUVEFDS19HWU0QiAESGwoWUkVDWUNMRV9J",
+                  "TlZFTlRPUllfSVRFTRCJARIYChNDT0xMRUNUX0RBSUxZX0JPTlVTEIoBEhYK",
+                  "EVVTRV9JVEVNX1hQX0JPT1NUEIsBEhsKFlVTRV9JVEVNX0VHR19JTkNVQkFU",
+                  "T1IQjAESEAoLVVNFX0lOQ0VOU0UQjQESGAoTR0VUX0lOQ0VOU0VfUE9LRU1P",
+                  "ThCOARIWChFJTkNFTlNFX0VOQ09VTlRFUhCPARIWChFBRERfRk9SVF9NT0RJ",
+                  "RklFUhCQARITCg5ESVNLX0VOQ09VTlRFUhCRARIhChxDT0xMRUNUX0RBSUxZ",
+                  "X0RFRkVOREVSX0JPTlVTEJIBEhQKD1VQR1JBREVfUE9LRU1PThCTARIZChRT",
+                  "RVRfRkFWT1JJVEVfUE9LRU1PThCUARIVChBOSUNLTkFNRV9QT0tFTU9OEJUB",
+                  "EhAKC0VRVUlQX0JBREdFEJYBEhkKFFNFVF9DT05UQUNUX1NFVFRJTkdTEJcB",
+                  "EhUKEEdFVF9BU1NFVF9ESUdFU1QQrAISFgoRR0VUX0RPV05MT0FEX1VSTFMQ",
+                  "rQISHAoXR0VUX1NVR0dFU1RFRF9DT0RFTkFNRVMQkQMSHQoYQ0hFQ0tfQ09E",
+                  "RU5BTUVfQVZBSUxBQkxFEJIDEhMKDkNMQUlNX0NPREVOQU1FEJMDEg8KClNF",
+                  "VF9BVkFUQVIQlAMSFAoPU0VUX1BMQVlFUl9URUFNEJUDEhsKFk1BUktfVFVU",
+                  "T1JJQUxfQ09NUExFVEUQlgMSFgoRTE9BRF9TUEFXTl9QT0lOVFMQ9AMSCQoE",
+                  "RUNITxCaBRIbChZERUJVR19VUERBVEVfSU5WRU5UT1JZELwFEhgKE0RFQlVH",
+                  "X0RFTEVURV9QTEFZRVIQvQUSFwoSU0ZJREFfUkVHSVNUUkFUSU9OEKAGEhUK",
+                  "EFNGSURBX0FDVElPTl9MT0cQoQYSGAoTU0ZJREFfQ0VSVElGSUNBVElPThCi",
+                  "BhIRCgxTRklEQV9VUERBVEUQowYSEQoMU0ZJREFfQUNUSU9OEKQGEhEKDFNG",
+                  "SURBX0RPV1NFUhClBhISCg1TRklEQV9DQVBUVVJFEKYGKs4XCgtQb2tlbW9u",
+                  "TW92ZRIOCgpNT1ZFX1VOU0VUEAASEQoNVEhVTkRFUl9TSE9DSxABEhAKDFFV",
+                  "SUNLX0FUVEFDSxACEgsKB1NDUkFUQ0gQAxIJCgVFTUJFUhAEEg0KCVZJTkVf",
+                  "V0hJUBAFEgoKBlRBQ0tMRRAGEg4KClJBWk9SX0xFQUYQBxINCglUQUtFX0RP",
+                  "V04QCBINCglXQVRFUl9HVU4QCRIICgRCSVRFEAoSCQoFUE9VTkQQCxIPCgtE",
+                  "T1VCTEVfU0xBUBAMEggKBFdSQVAQDRIOCgpIWVBFUl9CRUFNEA4SCAoETElD",
+                  "SxAPEg4KCkRBUktfUFVMU0UQEBIICgRTTU9HEBESCgoGU0xVREdFEBISDgoK",
+                  "TUVUQUxfQ0xBVxATEg0KCVZJQ0VfR1JJUBAUEg8KC0ZMQU1FX1dIRUVMEBUS",
+                  "DAoITUVHQUhPUk4QFhIPCgtXSU5HX0FUVEFDSxAXEhAKDEZMQU1FVEhST1dF",
+                  "UhAYEhAKDFNVQ0tFUl9QVU5DSBAZEgcKA0RJRxAaEgwKCExPV19LSUNLEBsS",
+                  "DgoKQ1JPU1NfQ0hPUBAcEg4KClBTWUNIT19DVVQQHRILCgdQU1lCRUFNEB4S",
+                  "DgoKRUFSVEhRVUFLRRAfEg4KClNUT05FX0VER0UQIBINCglJQ0VfUFVOQ0gQ",
+                  "IRIPCgtIRUFSVF9TVEFNUBAiEg0KCURJU0NIQVJHRRAjEhAKDEZMQVNIX0NB",
+                  "Tk5PThAkEggKBFBFQ0sQJRIOCgpEUklMTF9QRUNLECYSDAoISUNFX0JFQU0Q",
+                  "JxIMCghCTElaWkFSRBAoEg0KCUFJUl9TTEFTSBApEg0KCUhFQVRfV0FWRRAq",
+                  "Eg0KCVRXSU5FRURMRRArEg4KClBPSVNPTl9KQUIQLBIOCgpBRVJJQUxfQUNF",
+                  "EC0SDQoJRFJJTExfUlVOEC4SEgoOUEVUQUxfQkxJWlpBUkQQLxIOCgpNRUdB",
+                  "X0RSQUlOEDASDAoIQlVHX0JVWloQMRIPCgtQT0lTT05fRkFORxAyEg8KC05J",
+                  "R0hUX1NMQVNIEDMSCQoFU0xBU0gQNBIPCgtCVUJCTEVfQkVBTRA1Eg4KClNV",
+                  "Qk1JU1NJT04QNhIPCgtLQVJBVEVfQ0hPUBA3Eg0KCUxPV19TV0VFUBA4EgwK",
+                  "CEFRVUFfSkVUEDkSDQoJQVFVQV9UQUlMEDoSDQoJU0VFRF9CT01CEDsSDAoI",
+                  "UFNZU0hPQ0sQPBIOCgpST0NLX1RIUk9XED0SEQoNQU5DSUVOVF9QT1dFUhA+",
+                  "Eg0KCVJPQ0tfVE9NQhA/Eg4KClJPQ0tfU0xJREUQQBINCglQT1dFUl9HRU0Q",
+                  "QRIQCgxTSEFET1dfU05FQUsQQhIQCgxTSEFET1dfUFVOQ0gQQxIPCgtTSEFE",
+                  "T1dfQ0xBVxBEEhAKDE9NSU5PVVNfV0lORBBFEg8KC1NIQURPV19CQUxMEEYS",
+                  "EAoMQlVMTEVUX1BVTkNIEEcSDwoLTUFHTkVUX0JPTUIQSBIOCgpTVEVFTF9X",
+                  "SU5HEEkSDQoJSVJPTl9IRUFEEEoSFAoQUEFSQUJPTElDX0NIQVJHRRBLEgkK",
+                  "BVNQQVJLEEwSEQoNVEhVTkRFUl9QVU5DSBBNEgsKB1RIVU5ERVIQThIPCgtU",
+                  "SFVOREVSQk9MVBBPEgsKB1RXSVNURVIQUBIRCg1EUkFHT05fQlJFQVRIEFES",
+                  "EAoMRFJBR09OX1BVTFNFEFISDwoLRFJBR09OX0NMQVcQUxITCg9ESVNBUk1J",
+                  "TkdfVk9JQ0UQVBIRCg1EUkFJTklOR19LSVNTEFUSEgoOREFaWkxJTkdfR0xF",
+                  "QU0QVhINCglNT09OQkxBU1QQVxIOCgpQTEFZX1JPVUdIEFgSEAoMQ1JPU1Nf",
+                  "UE9JU09OEFkSDwoLU0xVREdFX0JPTUIQWhIPCgtTTFVER0VfV0FWRRBbEg0K",
+                  "CUdVTktfU0hPVBBcEgwKCE1VRF9TSE9UEF0SDQoJQk9ORV9DTFVCEF4SDAoI",
+                  "QlVMTERPWkUQXxIMCghNVURfQk9NQhBgEg8KC0ZVUllfQ1VUVEVSEGESDAoI",
+                  "QlVHX0JJVEUQYhIPCgtTSUdOQUxfQkVBTRBjEg0KCVhfU0NJU1NPUhBkEhAK",
+                  "DEZMQU1FX0NIQVJHRRBlEg8KC0ZMQU1FX0JVUlNUEGYSDgoKRklSRV9CTEFT",
+                  "VBBnEgkKBUJSSU5FEGgSDwoLV0FURVJfUFVMU0UQaRIJCgVTQ0FMRBBqEg4K",
+                  "CkhZRFJPX1BVTVAQaxILCgdQU1lDSElDEGwSDQoJUFNZU1RSSUtFEG0SDQoJ",
+                  "SUNFX1NIQVJEEG4SDAoISUNZX1dJTkQQbxIQCgxGUk9TVF9CUkVBVEgQcBIK",
+                  "CgZBQlNPUkIQcRIOCgpHSUdBX0RSQUlOEHISDgoKRklSRV9QVU5DSBBzEg4K",
+                  "ClNPTEFSX0JFQU0QdBIOCgpMRUFGX0JMQURFEHUSDgoKUE9XRVJfV0hJUBB2",
+                  "EgoKBlNQTEFTSBB3EggKBEFDSUQQeBIOCgpBSVJfQ1VUVEVSEHkSDQoJSFVS",
+                  "UklDQU5FEHoSDwoLQlJJQ0tfQlJFQUsQexIHCgNDVVQQfBIJCgVTV0lGVBB9",
+                  "Eg8KC0hPUk5fQVRUQUNLEH4SCQoFU1RPTVAQfxINCghIRUFEQlVUVBCAARIP",
+                  "CgpIWVBFUl9GQU5HEIEBEgkKBFNMQU0QggESDgoJQk9EWV9TTEFNEIMBEgkK",
+                  "BFJFU1QQhAESDQoIU1RSVUdHTEUQhQESFAoPU0NBTERfQkxBU1RPSVNFEIYB",
+                  "EhkKFEhZRFJPX1BVTVBfQkxBU1RPSVNFEIcBEg8KCldSQVBfR1JFRU4QiAES",
+                  "DgoJV1JBUF9QSU5LEIkBEhUKEEZVUllfQ1VUVEVSX0ZBU1QQyAESEgoNQlVH",
+                  "X0JJVEVfRkFTVBDJARIOCglCSVRFX0ZBU1QQygESFgoRU1VDS0VSX1BVTkNI",
+                  "X0ZBU1QQywESFwoSRFJBR09OX0JSRUFUSF9GQVNUEMwBEhcKElRIVU5ERVJf",
+                  "U0hPQ0tfRkFTVBDNARIPCgpTUEFSS19GQVNUEM4BEhIKDUxPV19LSUNLX0ZB",
+                  "U1QQzwESFQoQS0FSQVRFX0NIT1BfRkFTVBDQARIPCgpFTUJFUl9GQVNUENEB",
+                  "EhUKEFdJTkdfQVRUQUNLX0ZBU1QQ0gESDgoJUEVDS19GQVNUENMBEg4KCUxJ",
+                  "Q0tfRkFTVBDUARIVChBTSEFET1dfQ0xBV19GQVNUENUBEhMKDlZJTkVfV0hJ",
+                  "UF9GQVNUENYBEhQKD1JBWk9SX0xFQUZfRkFTVBDXARISCg1NVURfU0hPVF9G",
+                  "QVNUENgBEhMKDklDRV9TSEFSRF9GQVNUENkBEhYKEUZST1NUX0JSRUFUSF9G",
+                  "QVNUENoBEhYKEVFVSUNLX0FUVEFDS19GQVNUENsBEhEKDFNDUkFUQ0hfRkFT",
+                  "VBDcARIQCgtUQUNLTEVfRkFTVBDdARIPCgpQT1VORF9GQVNUEN4BEg0KCENV",
+                  "VF9GQVNUEN8BEhQKD1BPSVNPTl9KQUJfRkFTVBDgARIOCglBQ0lEX0ZBU1QQ",
+                  "4QESFAoPUFNZQ0hPX0NVVF9GQVNUEOIBEhQKD1JPQ0tfVEhST1dfRkFTVBDj",
+                  "ARIUCg9NRVRBTF9DTEFXX0ZBU1QQ5AESFgoRQlVMTEVUX1BVTkNIX0ZBU1QQ",
+                  "5QESEwoOV0FURVJfR1VOX0ZBU1QQ5gESEAoLU1BMQVNIX0ZBU1QQ5wESHQoY",
+                  "V0FURVJfR1VOX0ZBU1RfQkxBU1RPSVNFEOgBEhIKDU1VRF9TTEFQX0ZBU1QQ",
+                  "6QESFgoRWkVOX0hFQURCVVRUX0ZBU1QQ6gESEwoOQ09ORlVTSU9OX0ZBU1QQ",
+                  "6wESFgoRUE9JU09OX1NUSU5HX0ZBU1QQ7AESEAoLQlVCQkxFX0ZBU1QQ7QES",
+                  "FgoRRkVJTlRfQVRUQUNLX0ZBU1QQ7gESFAoPU1RFRUxfV0lOR19GQVNUEO8B",
+                  "EhMKDkZJUkVfRkFOR19GQVNUEPABEhQKD1JPQ0tfU01BU0hfRkFTVBDxASrH",
+                  "BQoGSXRlbUlkEhAKDElURU1fVU5LTk9XThAAEhIKDklURU1fUE9LRV9CQUxM",
+                  "EAESEwoPSVRFTV9HUkVBVF9CQUxMEAISEwoPSVRFTV9VTFRSQV9CQUxMEAMS",
+                  "FAoQSVRFTV9NQVNURVJfQkFMTBAEEg8KC0lURU1fUE9USU9OEGUSFQoRSVRF",
+                  "TV9TVVBFUl9QT1RJT04QZhIVChFJVEVNX0hZUEVSX1BPVElPThBnEhMKD0lU",
+                  "RU1fTUFYX1BPVElPThBoEhAKC0lURU1fUkVWSVZFEMkBEhQKD0lURU1fTUFY",
+                  "X1JFVklWRRDKARITCg5JVEVNX0xVQ0tZX0VHRxCtAhIaChVJVEVNX0lOQ0VO",
+                  "U0VfT1JESU5BUlkQkQMSFwoSSVRFTV9JTkNFTlNFX1NQSUNZEJIDEhYKEUlU",
+                  "RU1fSU5DRU5TRV9DT09MEJMDEhgKE0lURU1fSU5DRU5TRV9GTE9SQUwQlAMS",
+                  "EwoOSVRFTV9UUk9ZX0RJU0sQ9QMSEgoNSVRFTV9YX0FUVEFDSxDaBBITCg5J",
+                  "VEVNX1hfREVGRU5TRRDbBBITCg5JVEVNX1hfTUlSQUNMRRDcBBIUCg9JVEVN",
+                  "X1JBWlpfQkVSUlkQvQUSFAoPSVRFTV9CTFVLX0JFUlJZEL4FEhUKEElURU1f",
+                  "TkFOQUJfQkVSUlkQvwUSFQoQSVRFTV9XRVBBUl9CRVJSWRDABRIVChBJVEVN",
+                  "X1BJTkFQX0JFUlJZEMEFEhgKE0lURU1fU1BFQ0lBTF9DQU1FUkEQoQYSIwoe",
+                  "SVRFTV9JTkNVQkFUT1JfQkFTSUNfVU5MSU1JVEVEEIUHEhkKFElURU1fSU5D",
+                  "VUJBVE9SX0JBU0lDEIYHEiEKHElURU1fUE9LRU1PTl9TVE9SQUdFX1VQR1JB",
+                  "REUQ6QcSHgoZSVRFTV9JVEVNX1NUT1JBR0VfVVBHUkFERRDqBypiChRJbnZl",
+                  "bnRvcnlVcGdyYWRlVHlwZRIRCg1VUEdSQURFX1VOU0VUEAASGQoVSU5DUkVB",
+                  "U0VfSVRFTV9TVE9SQUdFEAESHAoYSU5DUkVBU0VfUE9LRU1PTl9TVE9SQUdF",
+                  "EAIqPwoQRWdnSW5jdWJhdG9yVHlwZRITCg9JTkNVQkFUT1JfVU5TRVQQABIW",
+                  "ChJJTkNVQkFUT1JfRElTVEFOQ0UQASrdDAoPUG9rZW1vbkZhbWlseUlkEhAK",
+                  "DEZBTUlMWV9VTlNFVBAAEhQKEEZBTUlMWV9CVUxCQVNBVVIQARIVChFGQU1J",
+                  "TFlfQ0hBUk1BTkRFUhAEEhMKD0ZBTUlMWV9TUVVJUlRMRRAHEhMKD0ZBTUlM",
+                  "WV9DQVRFUlBJRRAKEhEKDUZBTUlMWV9XRUVETEUQDRIRCg1GQU1JTFlfUElE",
+                  "R0VZEBASEgoORkFNSUxZX1JBVFRBVEEQExISCg5GQU1JTFlfU1BFQVJPVxAV",
+                  "EhAKDEZBTUlMWV9FS0FOUxAXEhIKDkZBTUlMWV9QSUtBQ0hVEBkSFAoQRkFN",
+                  "SUxZX1NBTkRTSFJFVxAbEhIKDkZBTUlMWV9OSURPUkFOEB0SEwoPRkFNSUxZ",
+                  "X05JRE9SQU4yECASEwoPRkFNSUxZX0NMRUZBSVJZECMSEQoNRkFNSUxZX1ZV",
+                  "TFBJWBAlEhUKEUZBTUlMWV9KSUdHTFlQVUZGECcSEAoMRkFNSUxZX1pVQkFU",
+                  "ECkSEQoNRkFNSUxZX09ERElTSBArEhAKDEZBTUlMWV9QQVJBUxAuEhIKDkZB",
+                  "TUlMWV9WRU5PTkFUEDASEgoORkFNSUxZX0RJR0xFVFQQMhIRCg1GQU1JTFlf",
+                  "TUVPV1RIEDQSEgoORkFNSUxZX1BTWURVQ0sQNhIRCg1GQU1JTFlfTUFOS0VZ",
+                  "EDgSFAoQRkFNSUxZX0dST1dMSVRIRRA6EhIKDkZBTUlMWV9QT0xJV0FHEDwS",
+                  "DwoLRkFNSUxZX0FCUkEQPxIRCg1GQU1JTFlfTUFDSE9QEEISFQoRRkFNSUxZ",
+                  "X0JFTExTUFJPVVQQRRIUChBGQU1JTFlfVEVOVEFDT09MEEgSEgoORkFNSUxZ",
+                  "X0dFT0RVREUQShIRCg1GQU1JTFlfUE9OWVRBEE0SEwoPRkFNSUxZX1NMT1dQ",
+                  "T0tFEE8SFAoQRkFNSUxZX01BR05FTUlURRBREhQKEEZBTUlMWV9GQVJGRVRD",
+                  "SEQQUxIQCgxGQU1JTFlfRE9EVU8QVBIPCgtGQU1JTFlfU0VFTBBWEhEKDUZB",
+                  "TUlMWV9HUklNRVIQWBITCg9GQU1JTFlfU0hFTExERVIQWhIRCg1GQU1JTFlf",
+                  "R0FTVExZEFwSDwoLRkFNSUxZX09OSVgQXxISCg5GQU1JTFlfRFJPV1pFRRBg",
+                  "EhEKDUZBTUlMWV9LUkFCQlkQYhISCg5GQU1JTFlfVk9MVE9SQhBkEhQKEEZB",
+                  "TUlMWV9FWEVHR0NVVEUQZhIRCg1GQU1JTFlfQ1VCT05FEGgSFAoQRkFNSUxZ",
+                  "X0hJVE1PTkxFRRBqEhUKEUZBTUlMWV9ISVRNT05DSEFOEGsSFAoQRkFNSUxZ",
+                  "X0xJQ0tJVFVORxBsEhIKDkZBTUlMWV9LT0ZGSU5HEG0SEgoORkFNSUxZX1JI",
+                  "WUhPUk4QbxISCg5GQU1JTFlfQ0hBTlNFWRBxEhIKDkZBTUlMWV9UQU5HRUxB",
+                  "EHISFQoRRkFNSUxZX0tBTkdBU0tIQU4QcxIRCg1GQU1JTFlfSE9SU0VBEHQS",
+                  "EgoORkFNSUxZX0dPTERFRU4QdhIRCg1GQU1JTFlfU1RBUllVEHgSEgoORkFN",
+                  "SUxZX01SX01JTUUQehISCg5GQU1JTFlfU0NZVEhFUhB7Eg8KC0ZBTUlMWV9K",
+                  "WU5YEHwSFQoRRkFNSUxZX0VMRUNUQUJVWloQfRIRCg1GQU1JTFlfTUFHTUFS",
+                  "EH4SEQoNRkFNSUxZX1BJTlNJUhB/EhIKDUZBTUlMWV9UQVVST1MQgAESFAoP",
+                  "RkFNSUxZX01BR0lLQVJQEIEBEhIKDUZBTUlMWV9MQVBSQVMQgwESEQoMRkFN",
+                  "SUxZX0RJVFRPEIQBEhEKDEZBTUlMWV9FRVZFRRCFARITCg5GQU1JTFlfUE9S",
+                  "WUdPThCJARITCg5GQU1JTFlfT01BTllURRCKARISCg1GQU1JTFlfS0FCVVRP",
+                  "EIwBEhYKEUZBTUlMWV9BRVJPREFDVFlMEI4BEhMKDkZBTUlMWV9TTk9STEFY",
+                  "EI8BEhQKD0ZBTUlMWV9BUlRJQ1VOTxCQARISCg1GQU1JTFlfWkFQRE9TEJEB",
+                  "EhMKDkZBTUlMWV9NT0xUUkVTEJIBEhMKDkZBTUlMWV9EUkFUSU5JEJMBEhIK",
+                  "DUZBTUlMWV9NRVdUV08QlgESDwoKRkFNSUxZX01FVxCXASpFChBNYXBPYmpl",
+                  "Y3RzU3RhdHVzEhAKDFVOU0VUX1NUQVRVUxAAEgsKB1NVQ0NFU1MQARISCg5M",
+                  "T0NBVElPTl9VTlNFVBACKiMKCEZvcnRUeXBlEgcKA0dZTRAAEg4KCkNIRUNL",
+                  "UE9JTlQQASqUEAoJUG9rZW1vbklkEg0KCU1JU1NJTkdOTxAAEg0KCUJVTEJB",
+                  "U0FVUhABEgsKB0lWWVNBVVIQAhIMCghWRU5VU0FVUhADEg4KCkNIQVJNQU5E",
+                  "RVIQBBIOCgpDSEFSTUVMRU9OEAUSDQoJQ0hBUklaQVJEEAYSDAoIU1FVSVJU",
+                  "TEUQBxINCglXQVJUT1JUTEUQCBINCglCTEFTVE9JU0UQCRIMCghDQVRFUlBJ",
+                  "RRAKEgsKB01FVEFQT0QQCxIOCgpCVVRURVJGUkVFEAwSCgoGV0VFRExFEA0S",
+                  "CgoGS0FLVU5BEA4SDAoIQkVFRFJJTEwQDxIKCgZQSURHRVkQEBINCglQSURH",
+                  "RU9UVE8QERILCgdQSURHRU9UEBISCwoHUkFUVEFUQRATEgwKCFJBVElDQVRF",
+                  "EBQSCwoHU1BFQVJPVxAVEgoKBkZFQVJPVxAWEgkKBUVLQU5TEBcSCQoFQVJC",
+                  "T0sQGBILCgdQSUtBQ0hVEBkSCgoGUkFJQ0hVEBoSDQoJU0FORFNIUkVXEBsS",
+                  "DAoIU0FORExBU0gQHBISCg5OSURPUkFOX0ZFTUFMRRAdEgwKCE5JRE9SSU5B",
+                  "EB4SDQoJTklET1FVRUVOEB8SEAoMTklET1JBTl9NQUxFECASDAoITklET1JJ",
+                  "Tk8QIRIMCghOSURPS0lORxAiEgwKCENMRUZBSVJZECMSDAoIQ0xFRkFCTEUQ",
+                  "JBIKCgZWVUxQSVgQJRINCglOSU5FVEFMRVMQJhIOCgpKSUdHTFlQVUZGECcS",
+                  "DgoKV0lHR0xZVFVGRhAoEgkKBVpVQkFUECkSCgoGR09MQkFUECoSCgoGT0RE",
+                  "SVNIECsSCQoFR0xPT00QLBINCglWSUxFUExVTUUQLRIJCgVQQVJBUxAuEgwK",
+                  "CFBBUkFTRUNUEC8SCwoHVkVOT05BVBAwEgwKCFZFTk9NT1RIEDESCwoHRElH",
+                  "TEVUVBAyEgsKB0RVR1RSSU8QMxIKCgZNRU9XVEgQNBILCgdQRVJTSUFOEDUS",
+                  "CwoHUFNZRFVDSxA2EgsKB0dPTERVQ0sQNxIKCgZNQU5LRVkQOBIMCghQUklN",
+                  "RUFQRRA5Eg0KCUdST1dMSVRIRRA6EgwKCEFSQ0FOSU5FEDsSCwoHUE9MSVdB",
+                  "RxA8Eg0KCVBPTElXSElSTBA9Eg0KCVBPTElXUkFUSBA+EggKBEFCUkEQPxIL",
+                  "CgdLQURBQlJBEEASDQoJQUxBS0hBWkFNEEESCgoGTUFDSE9QEEISCwoHTUFD",
+                  "SE9LRRBDEgsKB01BQ0hBTVAQRBIOCgpCRUxMU1BST1VUEEUSDgoKV0VFUElO",
+                  "QkVMTBBGEg8KC1ZJQ1RSRUVCRUxMEEcSDQoJVEVOVEFDT09MEEgSDgoKVEVO",
+                  "VEFDUlVFTBBJEgsKB0dFT0RVREUQShIMCghHUkFWRUxFUhBLEgkKBUdPTEVN",
+                  "EEwSCgoGUE9OWVRBEE0SDAoIUkFQSURBU0gQThIMCghTTE9XUE9LRRBPEgsK",
+                  "B1NMT1dCUk8QUBINCglNQUdORU1JVEUQURIMCghNQUdORVRPThBSEg0KCUZB",
+                  "UkZFVENIRBBTEgkKBURPRFVPEFQSCgoGRE9EUklPEFUSCAoEU0VFTBBWEgsK",
+                  "B0RFV0dPTkcQVxIKCgZHUklNRVIQWBIHCgNNVUsQWRIMCghTSEVMTERFUhBa",
+                  "EgwKCENMT1lTVEVSEFsSCgoGR0FTVExZEFwSCwoHSEFVTlRFUhBdEgoKBkdF",
+                  "TkdBUhBeEggKBE9OSVgQXxILCgdEUk9XWkVFEGASCQoFSFlQTk8QYRIKCgZL",
+                  "UkFCQlkQYhILCgdLSU5HTEVSEGMSCwoHVk9MVE9SQhBkEg0KCUVMRUNUUk9E",
+                  "RRBlEg0KCUVYRUdHQ1VURRBmEg0KCUVYRUdHVVRPUhBnEgoKBkNVQk9ORRBo",
+                  "EgsKB01BUk9XQUsQaRINCglISVRNT05MRUUQahIOCgpISVRNT05DSEFOEGsS",
+                  "DQoJTElDS0lUVU5HEGwSCwoHS09GRklORxBtEgsKB1dFRVpJTkcQbhILCgdS",
+                  "SFlIT1JOEG8SCgoGUkhZRE9OEHASCwoHQ0hBTlNFWRBxEgsKB1RBTkdFTEEQ",
+                  "chIOCgpLQU5HQVNLSEFOEHMSCgoGSE9SU0VBEHQSCgoGU0VBRFJBEHUSCwoH",
+                  "R09MREVFThB2EgsKB1NFQUtJTkcQdxIKCgZTVEFSWVUQeBILCgdTVEFSTUlF",
+                  "EHkSCwoHTVJfTUlNRRB6EgsKB1NDWVRIRVIQexIICgRKWU5YEHwSDgoKRUxF",
+                  "Q1RBQlVaWhB9EgoKBk1BR01BUhB+EgoKBlBJTlNJUhB/EgsKBlRBVVJPUxCA",
+                  "ARINCghNQUdJS0FSUBCBARINCghHWUFSQURPUxCCARILCgZMQVBSQVMQgwES",
+                  "CgoFRElUVE8QhAESCgoFRUVWRUUQhQESDQoIVkFQT1JFT04QhgESDAoHSk9M",
+                  "VEVPThCHARIMCgdGTEFSRU9OEIgBEgwKB1BPUllHT04QiQESDAoHT01BTllU",
+                  "RRCKARIMCgdPTUFTVEFSEIsBEgsKBktBQlVUTxCMARINCghLQUJVVE9QUxCN",
+                  "ARIPCgpBRVJPREFDVFlMEI4BEgwKB1NOT1JMQVgQjwESDQoIQVJUSUNVTk8Q",
+                  "kAESCwoGWkFQRE9TEJEBEgwKB01PTFRSRVMQkgESDAoHRFJBVElOSRCTARIO",
+                  "CglEUkFHT05BSVIQlAESDgoJRFJBR09OSVRFEJUBEgsKBk1FV1RXTxCWARII",
+                  "CgNNRVcQlwEqQgoLRm9ydFNwb25zb3ISEQoNVU5TRVRfU1BPTlNPUhAAEg0K",
+                  "CU1DRE9OQUxEUxABEhEKDVBPS0VNT05fU1RPUkUQAiozChFGb3J0UmVuZGVy",
+                  "aW5nVHlwZRILCgdERUZBVUxUEAASEQoNSU5URVJOQUxfVEVTVBABKrICCghJ",
+                  "dGVtVHlwZRISCg5JVEVNX1RZUEVfTk9ORRAAEhYKEklURU1fVFlQRV9QT0tF",
+                  "QkFMTBABEhQKEElURU1fVFlQRV9QT1RJT04QAhIUChBJVEVNX1RZUEVfUkVW",
+                  "SVZFEAMSEQoNSVRFTV9UWVBFX01BUBAEEhQKEElURU1fVFlQRV9CQVRUTEUQ",
+                  "BRISCg5JVEVNX1RZUEVfRk9PRBAGEhQKEElURU1fVFlQRV9DQU1FUkEQBxIS",
+                  "Cg5JVEVNX1RZUEVfRElTSxAIEhcKE0lURU1fVFlQRV9JTkNVQkFUT1IQCRIV",
+                  "ChFJVEVNX1RZUEVfSU5DRU5TRRAKEhYKEklURU1fVFlQRV9YUF9CT09TVBAL",
+                  "Eh8KG0lURU1fVFlQRV9JTlZFTlRPUllfVVBHUkFERRAMKtYCCgxJdGVtQ2F0",
+                  "ZWdvcnkSFgoSSVRFTV9DQVRFR09SWV9OT05FEAASGgoWSVRFTV9DQVRFR09S",
+                  "WV9QT0tFQkFMTBABEhYKEklURU1fQ0FURUdPUllfRk9PRBACEhoKFklURU1f",
+                  "Q0FURUdPUllfTUVESUNJTkUQAxIXChNJVEVNX0NBVEVHT1JZX0JPT1NUEAQS",
+                  "GgoWSVRFTV9DQVRFR09SWV9VVElMSVRFUxAFEhgKFElURU1fQ0FURUdPUllf",
+                  "Q0FNRVJBEAYSFgoSSVRFTV9DQVRFR09SWV9ESVNLEAcSGwoXSVRFTV9DQVRF",
+                  "R09SWV9JTkNVQkFUT1IQCBIZChVJVEVNX0NBVEVHT1JZX0lOQ0VOU0UQCRIa",
+                  "ChZJVEVNX0NBVEVHT1JZX1hQX0JPT1NUEAoSIwofSVRFTV9DQVRFR09SWV9J",
+                  "TlZFTlRPUllfVVBHUkFERRALKpgECgpJdGVtRWZmZWN0EhQKEElURU1fRUZG",
+                  "RUNUX05PTkUQABIcChdJVEVNX0VGRkVDVF9DQVBfTk9fRkxFRRDoBxIgChtJ",
+                  "VEVNX0VGRkVDVF9DQVBfTk9fTU9WRU1FTlQQ6gcSHgoZSVRFTV9FRkZFQ1Rf",
+                  "Q0FQX05PX1RIUkVBVBDrBxIfChpJVEVNX0VGRkVDVF9DQVBfVEFSR0VUX01B",
+                  "WBDsBxIgChtJVEVNX0VGRkVDVF9DQVBfVEFSR0VUX1NMT1cQ7QcSIQocSVRF",
+                  "TV9FRkZFQ1RfQ0FQX0NIQU5DRV9OSUdIVBDuBxIjCh5JVEVNX0VGRkVDVF9D",
+                  "QVBfQ0hBTkNFX1RSQUlORVIQ7wcSJwoiSVRFTV9FRkZFQ1RfQ0FQX0NIQU5D",
+                  "RV9GSVJTVF9USFJPVxDwBxIiCh1JVEVNX0VGRkVDVF9DQVBfQ0hBTkNFX0xF",
+                  "R0VORBDxBxIhChxJVEVNX0VGRkVDVF9DQVBfQ0hBTkNFX0hFQVZZEPIHEiIK",
+                  "HUlURU1fRUZGRUNUX0NBUF9DSEFOQ0VfUkVQRUFUEPMHEicKIklURU1fRUZG",
+                  "RUNUX0NBUF9DSEFOQ0VfTVVMVElfVEhST1cQ9AcSIgodSVRFTV9FRkZFQ1Rf",
+                  "Q0FQX0NIQU5DRV9BTFdBWVMQ9QcSKAojSVRFTV9FRkZFQ1RfQ0FQX0NIQU5D",
+                  "RV9TSU5HTEVfVEhST1cQ9gcq7AUKDEFjdGl2aXR5VHlwZRIUChBBQ1RJVklU",
+                  "WV9VTktOT1dOEAASGgoWQUNUSVZJVFlfQ0FUQ0hfUE9LRU1PThABEiEKHUFD",
+                  "VElWSVRZX0NBVENIX0xFR0VORF9QT0tFTU9OEAISGQoVQUNUSVZJVFlfRkxF",
+                  "RV9QT0tFTU9OEAMSGAoUQUNUSVZJVFlfREVGRUFUX0ZPUlQQBBIbChdBQ1RJ",
+                  "VklUWV9FVk9MVkVfUE9LRU1PThAFEhYKEkFDVElWSVRZX0hBVENIX0VHRxAG",
+                  "EhQKEEFDVElWSVRZX1dBTEtfS00QBxIeChpBQ1RJVklUWV9QT0tFREVYX0VO",
+                  "VFJZX05FVxAIEh4KGkFDVElWSVRZX0NBVENIX0ZJUlNUX1RIUk9XEAkSHQoZ",
+                  "QUNUSVZJVFlfQ0FUQ0hfTklDRV9USFJPVxAKEh4KGkFDVElWSVRZX0NBVENI",
+                  "X0dSRUFUX1RIUk9XEAsSIgoeQUNUSVZJVFlfQ0FUQ0hfRVhDRUxMRU5UX1RI",
+                  "Uk9XEAwSHAoYQUNUSVZJVFlfQ0FUQ0hfQ1VSVkVCQUxMEA0SJQohQUNUSVZJ",
+                  "VFlfQ0FUQ0hfRklSU1RfQ0FUQ0hfT0ZfREFZEA4SHAoYQUNUSVZJVFlfQ0FU",
+                  "Q0hfTUlMRVNUT05FEA8SGgoWQUNUSVZJVFlfVFJBSU5fUE9LRU1PThAQEhgK",
+                  "FEFDVElWSVRZX1NFQVJDSF9GT1JUEBESHAoYQUNUSVZJVFlfUkVMRUFTRV9Q",
+                  "T0tFTU9OEBISIgoeQUNUSVZJVFlfSEFUQ0hfRUdHX1NNQUxMX0JPTlVTEBMS",
+                  "IwofQUNUSVZJVFlfSEFUQ0hfRUdHX01FRElVTV9CT05VUxAUEiIKHkFDVElW",
+                  "SVRZX0hBVENIX0VHR19MQVJHRV9CT05VUxAVEiAKHEFDVElWSVRZX0RFRkVB",
+                  "VF9HWU1fREVGRU5ERVIQFhIeChpBQ1RJVklUWV9ERUZFQVRfR1lNX0xFQURF",
+                  "UhAXKqEHCglCYWRnZVR5cGUSDwoLQkFER0VfVU5TRVQQABITCg9CQURHRV9U",
+                  "UkFWRUxfS00QARIZChVCQURHRV9QT0tFREVYX0VOVFJJRVMQAhIXChNCQURH",
+                  "RV9DQVBUVVJFX1RPVEFMEAMSFwoTQkFER0VfREVGRUFURURfRk9SVBAEEhcK",
+                  "E0JBREdFX0VWT0xWRURfVE9UQUwQBRIXChNCQURHRV9IQVRDSEVEX1RPVEFM",
+                  "EAYSGwoXQkFER0VfRU5DT1VOVEVSRURfVE9UQUwQBxIbChdCQURHRV9QT0tF",
+                  "U1RPUFNfVklTSVRFRBAIEhoKFkJBREdFX1VOSVFVRV9QT0tFU1RPUFMQCRIZ",
+                  "ChVCQURHRV9QT0tFQkFMTF9USFJPV04QChIWChJCQURHRV9CSUdfTUFHSUtB",
+                  "UlAQCxIYChRCQURHRV9ERVBMT1lFRF9UT1RBTBAMEhsKF0JBREdFX0JBVFRM",
+                  "RV9BVFRBQ0tfV09OEA0SHQoZQkFER0VfQkFUVExFX1RSQUlOSU5HX1dPThAO",
+                  "EhsKF0JBREdFX0JBVFRMRV9ERUZFTkRfV09OEA8SGQoVQkFER0VfUFJFU1RJ",
+                  "R0VfUkFJU0VEEBASGgoWQkFER0VfUFJFU1RJR0VfRFJPUFBFRBAREhUKEUJB",
+                  "REdFX1RZUEVfTk9STUFMEBISFwoTQkFER0VfVFlQRV9GSUdIVElORxATEhUK",
+                  "EUJBREdFX1RZUEVfRkxZSU5HEBQSFQoRQkFER0VfVFlQRV9QT0lTT04QFRIV",
+                  "ChFCQURHRV9UWVBFX0dST1VORBAWEhMKD0JBREdFX1RZUEVfUk9DSxAXEhIK",
+                  "DkJBREdFX1RZUEVfQlVHEBgSFAoQQkFER0VfVFlQRV9HSE9TVBAZEhQKEEJB",
+                  "REdFX1RZUEVfU1RFRUwQGhITCg9CQURHRV9UWVBFX0ZJUkUQGxIUChBCQURH",
+                  "RV9UWVBFX1dBVEVSEBwSFAoQQkFER0VfVFlQRV9HUkFTUxAdEhcKE0JBREdF",
+                  "X1RZUEVfRUxFQ1RSSUMQHhIWChJCQURHRV9UWVBFX1BTWUNISUMQHxISCg5C",
+                  "QURHRV9UWVBFX0lDRRAgEhUKEUJBREdFX1RZUEVfRFJBR09OECESEwoPQkFE",
+                  "R0VfVFlQRV9EQVJLECISFAoQQkFER0VfVFlQRV9GQUlSWRAjEhcKE0JBREdF",
+                  "X1NNQUxMX1JBVFRBVEEQJBIRCg1CQURHRV9QSUtBQ0hVECUqlAEKE0hvbG9J",
+                  "YXBJdGVtQ2F0ZWdvcnkSFQoRSUFQX0NBVEVHT1JZX05PTkUQABIXChNJQVBf",
+                  "Q0FURUdPUllfQlVORExFEAESFgoSSUFQX0NBVEVHT1JZX0lURU1TEAISGQoV",
+                  "SUFQX0NBVEVHT1JZX1VQR1JBREVTEAMSGgoWSUFQX0NBVEVHT1JZX1BPS0VD",
+                  "T0lOUxAEKpYBChNDYW1lcmFJbnRlcnBvbGF0aW9uEhIKDkNBTV9JTlRFUlBf",
+                  "Q1VUEAASFQoRQ0FNX0lOVEVSUF9MSU5FQVIQARIVChFDQU1fSU5URVJQX1NN",
+                  "T09USBACEiUKIUNBTV9JTlRFUlBfU01PT1RIX1JPVF9MSU5FQVJfTU9WRRAD",
+                  "EhYKEkNBTV9JTlRFUlBfREVQRU5EUxAEKvwDCgxDYW1lcmFUYXJnZXQSFwoT",
+                  "Q0FNX1RBUkdFVF9BVFRBQ0tFUhAAEhwKGENBTV9UQVJHRVRfQVRUQUNLRVJf",
+                  "RURHRRABEh4KGkNBTV9UQVJHRVRfQVRUQUNLRVJfR1JPVU5EEAISFwoTQ0FN",
+                  "X1RBUkdFVF9ERUZFTkRFUhADEhwKGENBTV9UQVJHRVRfREVGRU5ERVJfRURH",
+                  "RRAEEh4KGkNBTV9UQVJHRVRfREVGRU5ERVJfR1JPVU5EEAUSIAocQ0FNX1RB",
+                  "UkdFVF9BVFRBQ0tFUl9ERUZFTkRFUhAGEiUKIUNBTV9UQVJHRVRfQVRUQUNL",
+                  "RVJfREVGRU5ERVJfRURHRRAHEiAKHENBTV9UQVJHRVRfREVGRU5ERVJfQVRU",
+                  "QUNLRVIQCBIlCiFDQU1fVEFSR0VUX0RFRkVOREVSX0FUVEFDS0VSX0VER0UQ",
+                  "CRInCiNDQU1fVEFSR0VUX0FUVEFDS0VSX0RFRkVOREVSX01JUlJPUhALEikK",
+                  "JUNBTV9UQVJHRVRfU0hPVUxERVJfQVRUQUNLRVJfREVGRU5ERVIQDBIwCixD",
+                  "QU1fVEFSR0VUX1NIT1VMREVSX0FUVEFDS0VSX0RFRkVOREVSX01JUlJPUhAN",
+                  "EiYKIkNBTV9UQVJHRVRfQVRUQUNLRVJfREVGRU5ERVJfV09STEQQDiraAwoL",
+                  "UG9rZW1vblR5cGUSFQoRUE9LRU1PTl9UWVBFX05PTkUQABIXChNQT0tFTU9O",
+                  "X1RZUEVfTk9STUFMEAESGQoVUE9LRU1PTl9UWVBFX0ZJR0hUSU5HEAISFwoT",
+                  "UE9LRU1PTl9UWVBFX0ZMWUlORxADEhcKE1BPS0VNT05fVFlQRV9QT0lTT04Q",
+                  "BBIXChNQT0tFTU9OX1RZUEVfR1JPVU5EEAUSFQoRUE9LRU1PTl9UWVBFX1JP",
+                  "Q0sQBhIUChBQT0tFTU9OX1RZUEVfQlVHEAcSFgoSUE9LRU1PTl9UWVBFX0dI",
+                  "T1NUEAgSFgoSUE9LRU1PTl9UWVBFX1NURUVMEAkSFQoRUE9LRU1PTl9UWVBF",
+                  "X0ZJUkUQChIWChJQT0tFTU9OX1RZUEVfV0FURVIQCxIWChJQT0tFTU9OX1RZ",
+                  "UEVfR1JBU1MQDBIZChVQT0tFTU9OX1RZUEVfRUxFQ1RSSUMQDRIYChRQT0tF",
+                  "TU9OX1RZUEVfUFNZQ0hJQxAOEhQKEFBPS0VNT05fVFlQRV9JQ0UQDxIXChNQ",
+                  "T0tFTU9OX1RZUEVfRFJBR09OEBASFQoRUE9LRU1PTl9UWVBFX0RBUksQERIW",
+                  "ChJQT0tFTU9OX1RZUEVfRkFJUlkQEiqtAQoTUG9rZW1vbk1vdmVtZW50VHlw",
+                  "ZRITCg9NT1ZFTUVOVF9TVEFUSUMQABIRCg1NT1ZFTUVOVF9KVU1QEAESFQoR",
+                  "TU9WRU1FTlRfVkVSVElDQUwQAhIUChBNT1ZFTUVOVF9QU1lDSElDEAMSFQoR",
+                  "TU9WRU1FTlRfRUxFQ1RSSUMQBBITCg9NT1ZFTUVOVF9GTFlJTkcQBRIVChFN",
+                  "T1ZFTUVOVF9IT1ZFUklORxAGKjUKDFBva2Vtb25DbGFzcxIKCgZOT1JNQUwQ",
+                  "ABINCglMRUdFTkRBUlkQARIKCgZNWVRISUMQAkIkqgIhUG9rZW1vbkdvLlJv",
+                  "Y2tldEFQSS5HZW5lcmF0ZWRDb2RlYgZwcm90bzM="));
+            descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
+                new pbr::FileDescriptor[] { },
+                new pbr::GeneratedClrTypeInfo(new[] { typeof(global::PokemonGo.RocketAPI.GeneratedCode.RpcDirection), typeof(global::PokemonGo.RocketAPI.GeneratedCode.TeamColor), typeof(global::PokemonGo.RocketAPI.GeneratedCode.RequestMethod), typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove), typeof(global::PokemonGo.RocketAPI.GeneratedCode.ItemId), typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamilyId), typeof(global::PokemonGo.RocketAPI.GeneratedCode.MapObjectsStatus), typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonId), typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSponsor), typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortRenderingType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.ItemType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.ItemCategory), typeof(global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect), typeof(global::PokemonGo.RocketAPI.GeneratedCode.ActivityType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.BadgeType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.HoloIapItemCategory), typeof(global::PokemonGo.RocketAPI.GeneratedCode.CameraInterpolation), typeof(global::PokemonGo.RocketAPI.GeneratedCode.CameraTarget), typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonMovementType), typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonClass), }, null));
+        }
+        #endregion
+
+    }
+    #region Enums
+    public enum RpcDirection
+    {
+        [pbr::OriginalName("UNKNOWN")]
+        Unknown = 0,
+        [pbr::OriginalName("RESPONSE")]
+        Response = 1,
+        [pbr::OriginalName("REQUEST")]
+        Request = 2,
+    }
+
+    public enum TeamColor
+    {
+        [pbr::OriginalName("NEUTRAL")]
+        Neutral = 0,
+        [pbr::OriginalName("BLUE")]
+        Blue = 1,
+        [pbr::OriginalName("RED")]
+        Red = 2,
+        [pbr::OriginalName("YELLOW")]
+        Yellow = 3,
+    }
+
+    public enum RequestMethod
+    {
+        [pbr::OriginalName("METHOD_UNSET")]
+        MethodUnset = 0,
+        [pbr::OriginalName("PLAYER_UPDATE")]
+        PlayerUpdate = 1,
+        [pbr::OriginalName("GET_PLAYER")]
+        GetPlayer = 2,
+        [pbr::OriginalName("GET_INVENTORY")]
+        GetInventory = 4,
+        [pbr::OriginalName("DOWNLOAD_SETTINGS")]
+        DownloadSettings = 5,
+        [pbr::OriginalName("DOWNLOAD_ITEM_TEMPLATES")]
+        DownloadItemTemplates = 6,
+        [pbr::OriginalName("DOWNLOAD_REMOTE_CONFIG_VERSION")]
+        DownloadRemoteConfigVersion = 7,
+        [pbr::OriginalName("FORT_SEARCH")]
+        FortSearch = 101,
+        [pbr::OriginalName("ENCOUNTER")]
+        Encounter = 102,
+        [pbr::OriginalName("CATCH_POKEMON")]
+        CatchPokemon = 103,
+        [pbr::OriginalName("FORT_DETAILS")]
+        FortDetails = 104,
+        [pbr::OriginalName("ITEM_USE")]
+        ItemUse = 105,
+        [pbr::OriginalName("GET_MAP_OBJECTS")]
+        GetMapObjects = 106,
+        [pbr::OriginalName("FORT_DEPLOY_POKEMON")]
+        FortDeployPokemon = 110,
+        [pbr::OriginalName("FORT_RECALL_POKEMON")]
+        FortRecallPokemon = 111,
+        [pbr::OriginalName("RELEASE_POKEMON")]
+        ReleasePokemon = 112,
+        [pbr::OriginalName("USE_ITEM_POTION")]
+        UseItemPotion = 113,
+        [pbr::OriginalName("USE_ITEM_CAPTURE")]
+        UseItemCapture = 114,
+        [pbr::OriginalName("USE_ITEM_FLEE")]
+        UseItemFlee = 115,
+        [pbr::OriginalName("USE_ITEM_REVIVE")]
+        UseItemRevive = 116,
+        [pbr::OriginalName("TRADE_SEARCH")]
+        TradeSearch = 117,
+        [pbr::OriginalName("TRADE_OFFER")]
+        TradeOffer = 118,
+        [pbr::OriginalName("TRADE_RESPONSE")]
+        TradeResponse = 119,
+        [pbr::OriginalName("TRADE_RESULT")]
+        TradeResult = 120,
+        [pbr::OriginalName("GET_PLAYER_PROFILE")]
+        GetPlayerProfile = 121,
+        [pbr::OriginalName("GET_ITEM_PACK")]
+        GetItemPack = 122,
+        [pbr::OriginalName("BUY_ITEM_PACK")]
+        BuyItemPack = 123,
+        [pbr::OriginalName("BUY_GEM_PACK")]
+        BuyGemPack = 124,
+        [pbr::OriginalName("EVOLVE_POKEMON")]
+        EvolvePokemon = 125,
+        [pbr::OriginalName("GET_HATCHED_EGGS")]
+        GetHatchedEggs = 126,
+        [pbr::OriginalName("ENCOUNTER_TUTORIAL_COMPLETE")]
+        EncounterTutorialComplete = 127,
+        [pbr::OriginalName("LEVEL_UP_REWARDS")]
+        LevelUpRewards = 128,
+        [pbr::OriginalName("CHECK_AWARDED_BADGES")]
+        CheckAwardedBadges = 129,
+        [pbr::OriginalName("USE_ITEM_GYM")]
+        UseItemGym = 133,
+        [pbr::OriginalName("GET_GYM_DETAILS")]
+        GetGymDetails = 134,
+        [pbr::OriginalName("START_GYM_BATTLE")]
+        StartGymBattle = 135,
+        [pbr::OriginalName("ATTACK_GYM")]
+        AttackGym = 136,
+        [pbr::OriginalName("RECYCLE_INVENTORY_ITEM")]
+        RecycleInventoryItem = 137,
+        [pbr::OriginalName("COLLECT_DAILY_BONUS")]
+        CollectDailyBonus = 138,
+        [pbr::OriginalName("USE_ITEM_XP_BOOST")]
+        UseItemXpBoost = 139,
+        [pbr::OriginalName("USE_ITEM_EGG_INCUBATOR")]
+        UseItemEggIncubator = 140,
+        [pbr::OriginalName("USE_INCENSE")]
+        UseIncense = 141,
+        [pbr::OriginalName("GET_INCENSE_POKEMON")]
+        GetIncensePokemon = 142,
+        [pbr::OriginalName("INCENSE_ENCOUNTER")]
+        IncenseEncounter = 143,
+        [pbr::OriginalName("ADD_FORT_MODIFIER")]
+        AddFortModifier = 144,
+        [pbr::OriginalName("DISK_ENCOUNTER")]
+        DiskEncounter = 145,
+        [pbr::OriginalName("COLLECT_DAILY_DEFENDER_BONUS")]
+        CollectDailyDefenderBonus = 146,
+        [pbr::OriginalName("UPGRADE_POKEMON")]
+        UpgradePokemon = 147,
+        [pbr::OriginalName("SET_FAVORITE_POKEMON")]
+        SetFavoritePokemon = 148,
+        [pbr::OriginalName("NICKNAME_POKEMON")]
+        NicknamePokemon = 149,
+        [pbr::OriginalName("EQUIP_BADGE")]
+        EquipBadge = 150,
+        [pbr::OriginalName("SET_CONTACT_SETTINGS")]
+        SetContactSettings = 151,
+        [pbr::OriginalName("GET_ASSET_DIGEST")]
+        GetAssetDigest = 300,
+        [pbr::OriginalName("GET_DOWNLOAD_URLS")]
+        GetDownloadUrls = 301,
+        [pbr::OriginalName("GET_SUGGESTED_CODENAMES")]
+        GetSuggestedCodenames = 401,
+        [pbr::OriginalName("CHECK_CODENAME_AVAILABLE")]
+        CheckCodenameAvailable = 402,
+        [pbr::OriginalName("CLAIM_CODENAME")]
+        ClaimCodename = 403,
+        [pbr::OriginalName("SET_AVATAR")]
+        SetAvatar = 404,
+        [pbr::OriginalName("SET_PLAYER_TEAM")]
+        SetPlayerTeam = 405,
+        [pbr::OriginalName("MARK_TUTORIAL_COMPLETE")]
+        MarkTutorialComplete = 406,
+        [pbr::OriginalName("LOAD_SPAWN_POINTS")]
+        LoadSpawnPoints = 500,
+        [pbr::OriginalName("ECHO")]
+        Echo = 666,
+        [pbr::OriginalName("DEBUG_UPDATE_INVENTORY")]
+        DebugUpdateInventory = 700,
+        [pbr::OriginalName("DEBUG_DELETE_PLAYER")]
+        DebugDeletePlayer = 701,
+        [pbr::OriginalName("SFIDA_REGISTRATION")]
+        SfidaRegistration = 800,
+        [pbr::OriginalName("SFIDA_ACTION_LOG")]
+        SfidaActionLog = 801,
+        [pbr::OriginalName("SFIDA_CERTIFICATION")]
+        SfidaCertification = 802,
+        [pbr::OriginalName("SFIDA_UPDATE")]
+        SfidaUpdate = 803,
+        [pbr::OriginalName("SFIDA_ACTION")]
+        SfidaAction = 804,
+        [pbr::OriginalName("SFIDA_DOWSER")]
+        SfidaDowser = 805,
+        [pbr::OriginalName("SFIDA_CAPTURE")]
+        SfidaCapture = 806,
+    }
+
+    public enum PokemonMove
+    {
+        [pbr::OriginalName("MOVE_UNSET")]
+        MoveUnset = 0,
+        [pbr::OriginalName("THUNDER_SHOCK")]
+        ThunderShock = 1,
+        [pbr::OriginalName("QUICK_ATTACK")]
+        QuickAttack = 2,
+        [pbr::OriginalName("SCRATCH")]
+        Scratch = 3,
+        [pbr::OriginalName("EMBER")]
+        Ember = 4,
+        [pbr::OriginalName("VINE_WHIP")]
+        VineWhip = 5,
+        [pbr::OriginalName("TACKLE")]
+        Tackle = 6,
+        [pbr::OriginalName("RAZOR_LEAF")]
+        RazorLeaf = 7,
+        [pbr::OriginalName("TAKE_DOWN")]
+        TakeDown = 8,
+        [pbr::OriginalName("WATER_GUN")]
+        WaterGun = 9,
+        [pbr::OriginalName("BITE")]
+        Bite = 10,
+        [pbr::OriginalName("POUND")]
+        Pound = 11,
+        [pbr::OriginalName("DOUBLE_SLAP")]
+        DoubleSlap = 12,
+        [pbr::OriginalName("WRAP")]
+        Wrap = 13,
+        [pbr::OriginalName("HYPER_BEAM")]
+        HyperBeam = 14,
+        [pbr::OriginalName("LICK")]
+        Lick = 15,
+        [pbr::OriginalName("DARK_PULSE")]
+        DarkPulse = 16,
+        [pbr::OriginalName("SMOG")]
+        Smog = 17,
+        [pbr::OriginalName("SLUDGE")]
+        Sludge = 18,
+        [pbr::OriginalName("METAL_CLAW")]
+        MetalClaw = 19,
+        [pbr::OriginalName("VICE_GRIP")]
+        ViceGrip = 20,
+        [pbr::OriginalName("FLAME_WHEEL")]
+        FlameWheel = 21,
+        [pbr::OriginalName("MEGAHORN")]
+        Megahorn = 22,
+        [pbr::OriginalName("WING_ATTACK")]
+        WingAttack = 23,
+        [pbr::OriginalName("FLAMETHROWER")]
+        Flamethrower = 24,
+        [pbr::OriginalName("SUCKER_PUNCH")]
+        SuckerPunch = 25,
+        [pbr::OriginalName("DIG")]
+        Dig = 26,
+        [pbr::OriginalName("LOW_KICK")]
+        LowKick = 27,
+        [pbr::OriginalName("CROSS_CHOP")]
+        CrossChop = 28,
+        [pbr::OriginalName("PSYCHO_CUT")]
+        PsychoCut = 29,
+        [pbr::OriginalName("PSYBEAM")]
+        Psybeam = 30,
+        [pbr::OriginalName("EARTHQUAKE")]
+        Earthquake = 31,
+        [pbr::OriginalName("STONE_EDGE")]
+        StoneEdge = 32,
+        [pbr::OriginalName("ICE_PUNCH")]
+        IcePunch = 33,
+        [pbr::OriginalName("HEART_STAMP")]
+        HeartStamp = 34,
+        [pbr::OriginalName("DISCHARGE")]
+        Discharge = 35,
+        [pbr::OriginalName("FLASH_CANNON")]
+        FlashCannon = 36,
+        [pbr::OriginalName("PECK")]
+        Peck = 37,
+        [pbr::OriginalName("DRILL_PECK")]
+        DrillPeck = 38,
+        [pbr::OriginalName("ICE_BEAM")]
+        IceBeam = 39,
+        [pbr::OriginalName("BLIZZARD")]
+        Blizzard = 40,
+        [pbr::OriginalName("AIR_SLASH")]
+        AirSlash = 41,
+        [pbr::OriginalName("HEAT_WAVE")]
+        HeatWave = 42,
+        [pbr::OriginalName("TWINEEDLE")]
+        Twineedle = 43,
+        [pbr::OriginalName("POISON_JAB")]
+        PoisonJab = 44,
+        [pbr::OriginalName("AERIAL_ACE")]
+        AerialAce = 45,
+        [pbr::OriginalName("DRILL_RUN")]
+        DrillRun = 46,
+        [pbr::OriginalName("PETAL_BLIZZARD")]
+        PetalBlizzard = 47,
+        [pbr::OriginalName("MEGA_DRAIN")]
+        MegaDrain = 48,
+        [pbr::OriginalName("BUG_BUZZ")]
+        BugBuzz = 49,
+        [pbr::OriginalName("POISON_FANG")]
+        PoisonFang = 50,
+        [pbr::OriginalName("NIGHT_SLASH")]
+        NightSlash = 51,
+        [pbr::OriginalName("SLASH")]
+        Slash = 52,
+        [pbr::OriginalName("BUBBLE_BEAM")]
+        BubbleBeam = 53,
+        [pbr::OriginalName("SUBMISSION")]
+        Submission = 54,
+        [pbr::OriginalName("KARATE_CHOP")]
+        KarateChop = 55,
+        [pbr::OriginalName("LOW_SWEEP")]
+        LowSweep = 56,
+        [pbr::OriginalName("AQUA_JET")]
+        AquaJet = 57,
+        [pbr::OriginalName("AQUA_TAIL")]
+        AquaTail = 58,
+        [pbr::OriginalName("SEED_BOMB")]
+        SeedBomb = 59,
+        [pbr::OriginalName("PSYSHOCK")]
+        Psyshock = 60,
+        [pbr::OriginalName("ROCK_THROW")]
+        RockThrow = 61,
+        [pbr::OriginalName("ANCIENT_POWER")]
+        AncientPower = 62,
+        [pbr::OriginalName("ROCK_TOMB")]
+        RockTomb = 63,
+        [pbr::OriginalName("ROCK_SLIDE")]
+        RockSlide = 64,
+        [pbr::OriginalName("POWER_GEM")]
+        PowerGem = 65,
+        [pbr::OriginalName("SHADOW_SNEAK")]
+        ShadowSneak = 66,
+        [pbr::OriginalName("SHADOW_PUNCH")]
+        ShadowPunch = 67,
+        [pbr::OriginalName("SHADOW_CLAW")]
+        ShadowClaw = 68,
+        [pbr::OriginalName("OMINOUS_WIND")]
+        OminousWind = 69,
+        [pbr::OriginalName("SHADOW_BALL")]
+        ShadowBall = 70,
+        [pbr::OriginalName("BULLET_PUNCH")]
+        BulletPunch = 71,
+        [pbr::OriginalName("MAGNET_BOMB")]
+        MagnetBomb = 72,
+        [pbr::OriginalName("STEEL_WING")]
+        SteelWing = 73,
+        [pbr::OriginalName("IRON_HEAD")]
+        IronHead = 74,
+        [pbr::OriginalName("PARABOLIC_CHARGE")]
+        ParabolicCharge = 75,
+        [pbr::OriginalName("SPARK")]
+        Spark = 76,
+        [pbr::OriginalName("THUNDER_PUNCH")]
+        ThunderPunch = 77,
+        [pbr::OriginalName("THUNDER")]
+        Thunder = 78,
+        [pbr::OriginalName("THUNDERBOLT")]
+        Thunderbolt = 79,
+        [pbr::OriginalName("TWISTER")]
+        Twister = 80,
+        [pbr::OriginalName("DRAGON_BREATH")]
+        DragonBreath = 81,
+        [pbr::OriginalName("DRAGON_PULSE")]
+        DragonPulse = 82,
+        [pbr::OriginalName("DRAGON_CLAW")]
+        DragonClaw = 83,
+        [pbr::OriginalName("DISARMING_VOICE")]
+        DisarmingVoice = 84,
+        [pbr::OriginalName("DRAINING_KISS")]
+        DrainingKiss = 85,
+        [pbr::OriginalName("DAZZLING_GLEAM")]
+        DazzlingGleam = 86,
+        [pbr::OriginalName("MOONBLAST")]
+        Moonblast = 87,
+        [pbr::OriginalName("PLAY_ROUGH")]
+        PlayRough = 88,
+        [pbr::OriginalName("CROSS_POISON")]
+        CrossPoison = 89,
+        [pbr::OriginalName("SLUDGE_BOMB")]
+        SludgeBomb = 90,
+        [pbr::OriginalName("SLUDGE_WAVE")]
+        SludgeWave = 91,
+        [pbr::OriginalName("GUNK_SHOT")]
+        GunkShot = 92,
+        [pbr::OriginalName("MUD_SHOT")]
+        MudShot = 93,
+        [pbr::OriginalName("BONE_CLUB")]
+        BoneClub = 94,
+        [pbr::OriginalName("BULLDOZE")]
+        Bulldoze = 95,
+        [pbr::OriginalName("MUD_BOMB")]
+        MudBomb = 96,
+        [pbr::OriginalName("FURY_CUTTER")]
+        FuryCutter = 97,
+        [pbr::OriginalName("BUG_BITE")]
+        BugBite = 98,
+        [pbr::OriginalName("SIGNAL_BEAM")]
+        SignalBeam = 99,
+        [pbr::OriginalName("X_SCISSOR")]
+        XScissor = 100,
+        [pbr::OriginalName("FLAME_CHARGE")]
+        FlameCharge = 101,
+        [pbr::OriginalName("FLAME_BURST")]
+        FlameBurst = 102,
+        [pbr::OriginalName("FIRE_BLAST")]
+        FireBlast = 103,
+        [pbr::OriginalName("BRINE")]
+        Brine = 104,
+        [pbr::OriginalName("WATER_PULSE")]
+        WaterPulse = 105,
+        [pbr::OriginalName("SCALD")]
+        Scald = 106,
+        [pbr::OriginalName("HYDRO_PUMP")]
+        HydroPump = 107,
+        [pbr::OriginalName("PSYCHIC")]
+        Psychic = 108,
+        [pbr::OriginalName("PSYSTRIKE")]
+        Psystrike = 109,
+        [pbr::OriginalName("ICE_SHARD")]
+        IceShard = 110,
+        [pbr::OriginalName("ICY_WIND")]
+        IcyWind = 111,
+        [pbr::OriginalName("FROST_BREATH")]
+        FrostBreath = 112,
+        [pbr::OriginalName("ABSORB")]
+        Absorb = 113,
+        [pbr::OriginalName("GIGA_DRAIN")]
+        GigaDrain = 114,
+        [pbr::OriginalName("FIRE_PUNCH")]
+        FirePunch = 115,
+        [pbr::OriginalName("SOLAR_BEAM")]
+        SolarBeam = 116,
+        [pbr::OriginalName("LEAF_BLADE")]
+        LeafBlade = 117,
+        [pbr::OriginalName("POWER_WHIP")]
+        PowerWhip = 118,
+        [pbr::OriginalName("SPLASH")]
+        Splash = 119,
+        [pbr::OriginalName("ACID")]
+        Acid = 120,
+        [pbr::OriginalName("AIR_CUTTER")]
+        AirCutter = 121,
+        [pbr::OriginalName("HURRICANE")]
+        Hurricane = 122,
+        [pbr::OriginalName("BRICK_BREAK")]
+        BrickBreak = 123,
+        [pbr::OriginalName("CUT")]
+        Cut = 124,
+        [pbr::OriginalName("SWIFT")]
+        Swift = 125,
+        [pbr::OriginalName("HORN_ATTACK")]
+        HornAttack = 126,
+        [pbr::OriginalName("STOMP")]
+        Stomp = 127,
+        [pbr::OriginalName("HEADBUTT")]
+        Headbutt = 128,
+        [pbr::OriginalName("HYPER_FANG")]
+        HyperFang = 129,
+        [pbr::OriginalName("SLAM")]
+        Slam = 130,
+        [pbr::OriginalName("BODY_SLAM")]
+        BodySlam = 131,
+        [pbr::OriginalName("REST")]
+        Rest = 132,
+        [pbr::OriginalName("STRUGGLE")]
+        Struggle = 133,
+        [pbr::OriginalName("SCALD_BLASTOISE")]
+        ScaldBlastoise = 134,
+        [pbr::OriginalName("HYDRO_PUMP_BLASTOISE")]
+        HydroPumpBlastoise = 135,
+        [pbr::OriginalName("WRAP_GREEN")]
+        WrapGreen = 136,
+        [pbr::OriginalName("WRAP_PINK")]
+        WrapPink = 137,
+        [pbr::OriginalName("FURY_CUTTER_FAST")]
+        FuryCutterFast = 200,
+        [pbr::OriginalName("BUG_BITE_FAST")]
+        BugBiteFast = 201,
+        [pbr::OriginalName("BITE_FAST")]
+        BiteFast = 202,
+        [pbr::OriginalName("SUCKER_PUNCH_FAST")]
+        SuckerPunchFast = 203,
+        [pbr::OriginalName("DRAGON_BREATH_FAST")]
+        DragonBreathFast = 204,
+        [pbr::OriginalName("THUNDER_SHOCK_FAST")]
+        ThunderShockFast = 205,
+        [pbr::OriginalName("SPARK_FAST")]
+        SparkFast = 206,
+        [pbr::OriginalName("LOW_KICK_FAST")]
+        LowKickFast = 207,
+        [pbr::OriginalName("KARATE_CHOP_FAST")]
+        KarateChopFast = 208,
+        [pbr::OriginalName("EMBER_FAST")]
+        EmberFast = 209,
+        [pbr::OriginalName("WING_ATTACK_FAST")]
+        WingAttackFast = 210,
+        [pbr::OriginalName("PECK_FAST")]
+        PeckFast = 211,
+        [pbr::OriginalName("LICK_FAST")]
+        LickFast = 212,
+        [pbr::OriginalName("SHADOW_CLAW_FAST")]
+        ShadowClawFast = 213,
+        [pbr::OriginalName("VINE_WHIP_FAST")]
+        VineWhipFast = 214,
+        [pbr::OriginalName("RAZOR_LEAF_FAST")]
+        RazorLeafFast = 215,
+        [pbr::OriginalName("MUD_SHOT_FAST")]
+        MudShotFast = 216,
+        [pbr::OriginalName("ICE_SHARD_FAST")]
+        IceShardFast = 217,
+        [pbr::OriginalName("FROST_BREATH_FAST")]
+        FrostBreathFast = 218,
+        [pbr::OriginalName("QUICK_ATTACK_FAST")]
+        QuickAttackFast = 219,
+        [pbr::OriginalName("SCRATCH_FAST")]
+        ScratchFast = 220,
+        [pbr::OriginalName("TACKLE_FAST")]
+        TackleFast = 221,
+        [pbr::OriginalName("POUND_FAST")]
+        PoundFast = 222,
+        [pbr::OriginalName("CUT_FAST")]
+        CutFast = 223,
+        [pbr::OriginalName("POISON_JAB_FAST")]
+        PoisonJabFast = 224,
+        [pbr::OriginalName("ACID_FAST")]
+        AcidFast = 225,
+        [pbr::OriginalName("PSYCHO_CUT_FAST")]
+        PsychoCutFast = 226,
+        [pbr::OriginalName("ROCK_THROW_FAST")]
+        RockThrowFast = 227,
+        [pbr::OriginalName("METAL_CLAW_FAST")]
+        MetalClawFast = 228,
+        [pbr::OriginalName("BULLET_PUNCH_FAST")]
+        BulletPunchFast = 229,
+        [pbr::OriginalName("WATER_GUN_FAST")]
+        WaterGunFast = 230,
+        [pbr::OriginalName("SPLASH_FAST")]
+        SplashFast = 231,
+        [pbr::OriginalName("WATER_GUN_FAST_BLASTOISE")]
+        WaterGunFastBlastoise = 232,
+        [pbr::OriginalName("MUD_SLAP_FAST")]
+        MudSlapFast = 233,
+        [pbr::OriginalName("ZEN_HEADBUTT_FAST")]
+        ZenHeadbuttFast = 234,
+        [pbr::OriginalName("CONFUSION_FAST")]
+        ConfusionFast = 235,
+        [pbr::OriginalName("POISON_STING_FAST")]
+        PoisonStingFast = 236,
+        [pbr::OriginalName("BUBBLE_FAST")]
+        BubbleFast = 237,
+        [pbr::OriginalName("FEINT_ATTACK_FAST")]
+        FeintAttackFast = 238,
+        [pbr::OriginalName("STEEL_WING_FAST")]
+        SteelWingFast = 239,
+        [pbr::OriginalName("FIRE_FANG_FAST")]
+        FireFangFast = 240,
+        [pbr::OriginalName("ROCK_SMASH_FAST")]
+        RockSmashFast = 241,
+    }
+
+    public enum ItemId
+    {
+        [pbr::OriginalName("ITEM_UNKNOWN")]
+        ItemUnknown = 0,
+        [pbr::OriginalName("ITEM_POKE_BALL")]
+        ItemPokeBall = 1,
+        [pbr::OriginalName("ITEM_GREAT_BALL")]
+        ItemGreatBall = 2,
+        [pbr::OriginalName("ITEM_ULTRA_BALL")]
+        ItemUltraBall = 3,
+        [pbr::OriginalName("ITEM_MASTER_BALL")]
+        ItemMasterBall = 4,
+        [pbr::OriginalName("ITEM_POTION")]
+        ItemPotion = 101,
+        [pbr::OriginalName("ITEM_SUPER_POTION")]
+        ItemSuperPotion = 102,
+        [pbr::OriginalName("ITEM_HYPER_POTION")]
+        ItemHyperPotion = 103,
+        [pbr::OriginalName("ITEM_MAX_POTION")]
+        ItemMaxPotion = 104,
+        [pbr::OriginalName("ITEM_REVIVE")]
+        ItemRevive = 201,
+        [pbr::OriginalName("ITEM_MAX_REVIVE")]
+        ItemMaxRevive = 202,
+        [pbr::OriginalName("ITEM_LUCKY_EGG")]
+        ItemLuckyEgg = 301,
+        [pbr::OriginalName("ITEM_INCENSE_ORDINARY")]
+        ItemIncenseOrdinary = 401,
+        [pbr::OriginalName("ITEM_INCENSE_SPICY")]
+        ItemIncenseSpicy = 402,
+        [pbr::OriginalName("ITEM_INCENSE_COOL")]
+        ItemIncenseCool = 403,
+        [pbr::OriginalName("ITEM_INCENSE_FLORAL")]
+        ItemIncenseFloral = 404,
+        [pbr::OriginalName("ITEM_TROY_DISK")]
+        ItemTroyDisk = 501,
+        [pbr::OriginalName("ITEM_X_ATTACK")]
+        ItemXAttack = 602,
+        [pbr::OriginalName("ITEM_X_DEFENSE")]
+        ItemXDefense = 603,
+        [pbr::OriginalName("ITEM_X_MIRACLE")]
+        ItemXMiracle = 604,
+        [pbr::OriginalName("ITEM_RAZZ_BERRY")]
+        ItemRazzBerry = 701,
+        [pbr::OriginalName("ITEM_BLUK_BERRY")]
+        ItemBlukBerry = 702,
+        [pbr::OriginalName("ITEM_NANAB_BERRY")]
+        ItemNanabBerry = 703,
+        [pbr::OriginalName("ITEM_WEPAR_BERRY")]
+        ItemWeparBerry = 704,
+        [pbr::OriginalName("ITEM_PINAP_BERRY")]
+        ItemPinapBerry = 705,
+        [pbr::OriginalName("ITEM_SPECIAL_CAMERA")]
+        ItemSpecialCamera = 801,
+        [pbr::OriginalName("ITEM_INCUBATOR_BASIC_UNLIMITED")]
+        ItemIncubatorBasicUnlimited = 901,
+        [pbr::OriginalName("ITEM_INCUBATOR_BASIC")]
+        ItemIncubatorBasic = 902,
+        [pbr::OriginalName("ITEM_POKEMON_STORAGE_UPGRADE")]
+        ItemPokemonStorageUpgrade = 1001,
+        [pbr::OriginalName("ITEM_ITEM_STORAGE_UPGRADE")]
+        ItemItemStorageUpgrade = 1002,
+    }
+
+    public enum InventoryUpgradeType
+    {
+        [pbr::OriginalName("UPGRADE_UNSET")]
+        UpgradeUnset = 0,
+        [pbr::OriginalName("INCREASE_ITEM_STORAGE")]
+        IncreaseItemStorage = 1,
+        [pbr::OriginalName("INCREASE_POKEMON_STORAGE")]
+        IncreasePokemonStorage = 2,
+    }
+
+    public enum EggIncubatorType
+    {
+        [pbr::OriginalName("INCUBATOR_UNSET")]
+        IncubatorUnset = 0,
+        [pbr::OriginalName("INCUBATOR_DISTANCE")]
+        IncubatorDistance = 1,
+    }
+
+    public enum PokemonFamilyId
+    {
+        [pbr::OriginalName("FAMILY_UNSET")]
+        FamilyUnset = 0,
+        [pbr::OriginalName("FAMILY_BULBASAUR")]
+        FamilyBulbasaur = 1,
+        [pbr::OriginalName("FAMILY_CHARMANDER")]
+        FamilyCharmander = 4,
+        [pbr::OriginalName("FAMILY_SQUIRTLE")]
+        FamilySquirtle = 7,
+        [pbr::OriginalName("FAMILY_CATERPIE")]
+        FamilyCaterpie = 10,
+        [pbr::OriginalName("FAMILY_WEEDLE")]
+        FamilyWeedle = 13,
+        [pbr::OriginalName("FAMILY_PIDGEY")]
+        FamilyPidgey = 16,
+        [pbr::OriginalName("FAMILY_RATTATA")]
+        FamilyRattata = 19,
+        [pbr::OriginalName("FAMILY_SPEAROW")]
+        FamilySpearow = 21,
+        [pbr::OriginalName("FAMILY_EKANS")]
+        FamilyEkans = 23,
+        [pbr::OriginalName("FAMILY_PIKACHU")]
+        FamilyPikachu = 25,
+        [pbr::OriginalName("FAMILY_SANDSHREW")]
+        FamilySandshrew = 27,
+        [pbr::OriginalName("FAMILY_NIDORAN")]
+        FamilyNidoran = 29,
+        [pbr::OriginalName("FAMILY_NIDORAN2")]
+        FamilyNidoran2 = 32,
+        [pbr::OriginalName("FAMILY_CLEFAIRY")]
+        FamilyClefairy = 35,
+        [pbr::OriginalName("FAMILY_VULPIX")]
+        FamilyVulpix = 37,
+        [pbr::OriginalName("FAMILY_JIGGLYPUFF")]
+        FamilyJigglypuff = 39,
+        [pbr::OriginalName("FAMILY_ZUBAT")]
+        FamilyZubat = 41,
+        [pbr::OriginalName("FAMILY_ODDISH")]
+        FamilyOddish = 43,
+        [pbr::OriginalName("FAMILY_PARAS")]
+        FamilyParas = 46,
+        [pbr::OriginalName("FAMILY_VENONAT")]
+        FamilyVenonat = 48,
+        [pbr::OriginalName("FAMILY_DIGLETT")]
+        FamilyDiglett = 50,
+        [pbr::OriginalName("FAMILY_MEOWTH")]
+        FamilyMeowth = 52,
+        [pbr::OriginalName("FAMILY_PSYDUCK")]
+        FamilyPsyduck = 54,
+        [pbr::OriginalName("FAMILY_MANKEY")]
+        FamilyMankey = 56,
+        [pbr::OriginalName("FAMILY_GROWLITHE")]
+        FamilyGrowlithe = 58,
+        [pbr::OriginalName("FAMILY_POLIWAG")]
+        FamilyPoliwag = 60,
+        [pbr::OriginalName("FAMILY_ABRA")]
+        FamilyAbra = 63,
+        [pbr::OriginalName("FAMILY_MACHOP")]
+        FamilyMachop = 66,
+        [pbr::OriginalName("FAMILY_BELLSPROUT")]
+        FamilyBellsprout = 69,
+        [pbr::OriginalName("FAMILY_TENTACOOL")]
+        FamilyTentacool = 72,
+        [pbr::OriginalName("FAMILY_GEODUDE")]
+        FamilyGeodude = 74,
+        [pbr::OriginalName("FAMILY_PONYTA")]
+        FamilyPonyta = 77,
+        [pbr::OriginalName("FAMILY_SLOWPOKE")]
+        FamilySlowpoke = 79,
+        [pbr::OriginalName("FAMILY_MAGNEMITE")]
+        FamilyMagnemite = 81,
+        [pbr::OriginalName("FAMILY_FARFETCHD")]
+        FamilyFarfetchd = 83,
+        [pbr::OriginalName("FAMILY_DODUO")]
+        FamilyDoduo = 84,
+        [pbr::OriginalName("FAMILY_SEEL")]
+        FamilySeel = 86,
+        [pbr::OriginalName("FAMILY_GRIMER")]
+        FamilyGrimer = 88,
+        [pbr::OriginalName("FAMILY_SHELLDER")]
+        FamilyShellder = 90,
+        [pbr::OriginalName("FAMILY_GASTLY")]
+        FamilyGastly = 92,
+        [pbr::OriginalName("FAMILY_ONIX")]
+        FamilyOnix = 95,
+        [pbr::OriginalName("FAMILY_DROWZEE")]
+        FamilyDrowzee = 96,
+        [pbr::OriginalName("FAMILY_KRABBY")]
+        FamilyKrabby = 98,
+        [pbr::OriginalName("FAMILY_VOLTORB")]
+        FamilyVoltorb = 100,
+        [pbr::OriginalName("FAMILY_EXEGGCUTE")]
+        FamilyExeggcute = 102,
+        [pbr::OriginalName("FAMILY_CUBONE")]
+        FamilyCubone = 104,
+        [pbr::OriginalName("FAMILY_HITMONLEE")]
+        FamilyHitmonlee = 106,
+        [pbr::OriginalName("FAMILY_HITMONCHAN")]
+        FamilyHitmonchan = 107,
+        [pbr::OriginalName("FAMILY_LICKITUNG")]
+        FamilyLickitung = 108,
+        [pbr::OriginalName("FAMILY_KOFFING")]
+        FamilyKoffing = 109,
+        [pbr::OriginalName("FAMILY_RHYHORN")]
+        FamilyRhyhorn = 111,
+        [pbr::OriginalName("FAMILY_CHANSEY")]
+        FamilyChansey = 113,
+        [pbr::OriginalName("FAMILY_TANGELA")]
+        FamilyTangela = 114,
+        [pbr::OriginalName("FAMILY_KANGASKHAN")]
+        FamilyKangaskhan = 115,
+        [pbr::OriginalName("FAMILY_HORSEA")]
+        FamilyHorsea = 116,
+        [pbr::OriginalName("FAMILY_GOLDEEN")]
+        FamilyGoldeen = 118,
+        [pbr::OriginalName("FAMILY_STARYU")]
+        FamilyStaryu = 120,
+        [pbr::OriginalName("FAMILY_MR_MIME")]
+        FamilyMrMime = 122,
+        [pbr::OriginalName("FAMILY_SCYTHER")]
+        FamilyScyther = 123,
+        [pbr::OriginalName("FAMILY_JYNX")]
+        FamilyJynx = 124,
+        [pbr::OriginalName("FAMILY_ELECTABUZZ")]
+        FamilyElectabuzz = 125,
+        [pbr::OriginalName("FAMILY_MAGMAR")]
+        FamilyMagmar = 126,
+        [pbr::OriginalName("FAMILY_PINSIR")]
+        FamilyPinsir = 127,
+        [pbr::OriginalName("FAMILY_TAUROS")]
+        FamilyTauros = 128,
+        [pbr::OriginalName("FAMILY_MAGIKARP")]
+        FamilyMagikarp = 129,
+        [pbr::OriginalName("FAMILY_LAPRAS")]
+        FamilyLapras = 131,
+        [pbr::OriginalName("FAMILY_DITTO")]
+        FamilyDitto = 132,
+        [pbr::OriginalName("FAMILY_EEVEE")]
+        FamilyEevee = 133,
+        [pbr::OriginalName("FAMILY_PORYGON")]
+        FamilyPorygon = 137,
+        [pbr::OriginalName("FAMILY_OMANYTE")]
+        FamilyOmanyte = 138,
+        [pbr::OriginalName("FAMILY_KABUTO")]
+        FamilyKabuto = 140,
+        [pbr::OriginalName("FAMILY_AERODACTYL")]
+        FamilyAerodactyl = 142,
+        [pbr::OriginalName("FAMILY_SNORLAX")]
+        FamilySnorlax = 143,
+        [pbr::OriginalName("FAMILY_ARTICUNO")]
+        FamilyArticuno = 144,
+        [pbr::OriginalName("FAMILY_ZAPDOS")]
+        FamilyZapdos = 145,
+        [pbr::OriginalName("FAMILY_MOLTRES")]
+        FamilyMoltres = 146,
+        [pbr::OriginalName("FAMILY_DRATINI")]
+        FamilyDratini = 147,
+        [pbr::OriginalName("FAMILY_MEWTWO")]
+        FamilyMewtwo = 150,
+        [pbr::OriginalName("FAMILY_MEW")]
+        FamilyMew = 151,
+    }
+
+    public enum MapObjectsStatus
+    {
+        [pbr::OriginalName("UNSET_STATUS")]
+        UnsetStatus = 0,
+        [pbr::OriginalName("SUCCESS")]
+        Success = 1,
+        [pbr::OriginalName("LOCATION_UNSET")]
+        LocationUnset = 2,
+    }
+
+    public enum FortType
+    {
+        [pbr::OriginalName("GYM")]
+        Gym = 0,
+        [pbr::OriginalName("CHECKPOINT")]
+        Checkpoint = 1,
+    }
+
+    public enum PokemonId
+    {
+        [pbr::OriginalName("MISSINGNO")]
+        Missingno = 0,
+        [pbr::OriginalName("BULBASAUR")]
+        Bulbasaur = 1,
+        [pbr::OriginalName("IVYSAUR")]
+        Ivysaur = 2,
+        [pbr::OriginalName("VENUSAUR")]
+        Venusaur = 3,
+        [pbr::OriginalName("CHARMANDER")]
+        Charmander = 4,
+        [pbr::OriginalName("CHARMELEON")]
+        Charmeleon = 5,
+        [pbr::OriginalName("CHARIZARD")]
+        Charizard = 6,
+        [pbr::OriginalName("SQUIRTLE")]
+        Squirtle = 7,
+        [pbr::OriginalName("WARTORTLE")]
+        Wartortle = 8,
+        [pbr::OriginalName("BLASTOISE")]
+        Blastoise = 9,
+        [pbr::OriginalName("CATERPIE")]
+        Caterpie = 10,
+        [pbr::OriginalName("METAPOD")]
+        Metapod = 11,
+        [pbr::OriginalName("BUTTERFREE")]
+        Butterfree = 12,
+        [pbr::OriginalName("WEEDLE")]
+        Weedle = 13,
+        [pbr::OriginalName("KAKUNA")]
+        Kakuna = 14,
+        [pbr::OriginalName("BEEDRILL")]
+        Beedrill = 15,
+        [pbr::OriginalName("PIDGEY")]
+        Pidgey = 16,
+        [pbr::OriginalName("PIDGEOTTO")]
+        Pidgeotto = 17,
+        [pbr::OriginalName("PIDGEOT")]
+        Pidgeot = 18,
+        [pbr::OriginalName("RATTATA")]
+        Rattata = 19,
+        [pbr::OriginalName("RATICATE")]
+        Raticate = 20,
+        [pbr::OriginalName("SPEAROW")]
+        Spearow = 21,
+        [pbr::OriginalName("FEAROW")]
+        Fearow = 22,
+        [pbr::OriginalName("EKANS")]
+        Ekans = 23,
+        [pbr::OriginalName("ARBOK")]
+        Arbok = 24,
+        [pbr::OriginalName("PIKACHU")]
+        Pikachu = 25,
+        [pbr::OriginalName("RAICHU")]
+        Raichu = 26,
+        [pbr::OriginalName("SANDSHREW")]
+        Sandshrew = 27,
+        [pbr::OriginalName("SANDSLASH")]
+        Sandslash = 28,
+        [pbr::OriginalName("NIDORAN_FEMALE")]
+        NidoranFemale = 29,
+        [pbr::OriginalName("NIDORINA")]
+        Nidorina = 30,
+        [pbr::OriginalName("NIDOQUEEN")]
+        Nidoqueen = 31,
+        [pbr::OriginalName("NIDORAN_MALE")]
+        NidoranMale = 32,
+        [pbr::OriginalName("NIDORINO")]
+        Nidorino = 33,
+        [pbr::OriginalName("NIDOKING")]
+        Nidoking = 34,
+        [pbr::OriginalName("CLEFAIRY")]
+        Clefairy = 35,
+        [pbr::OriginalName("CLEFABLE")]
+        Clefable = 36,
+        [pbr::OriginalName("VULPIX")]
+        Vulpix = 37,
+        [pbr::OriginalName("NINETALES")]
+        Ninetales = 38,
+        [pbr::OriginalName("JIGGLYPUFF")]
+        Jigglypuff = 39,
+        [pbr::OriginalName("WIGGLYTUFF")]
+        Wigglytuff = 40,
+        [pbr::OriginalName("ZUBAT")]
+        Zubat = 41,
+        [pbr::OriginalName("GOLBAT")]
+        Golbat = 42,
+        [pbr::OriginalName("ODDISH")]
+        Oddish = 43,
+        [pbr::OriginalName("GLOOM")]
+        Gloom = 44,
+        [pbr::OriginalName("VILEPLUME")]
+        Vileplume = 45,
+        [pbr::OriginalName("PARAS")]
+        Paras = 46,
+        [pbr::OriginalName("PARASECT")]
+        Parasect = 47,
+        [pbr::OriginalName("VENONAT")]
+        Venonat = 48,
+        [pbr::OriginalName("VENOMOTH")]
+        Venomoth = 49,
+        [pbr::OriginalName("DIGLETT")]
+        Diglett = 50,
+        [pbr::OriginalName("DUGTRIO")]
+        Dugtrio = 51,
+        [pbr::OriginalName("MEOWTH")]
+        Meowth = 52,
+        [pbr::OriginalName("PERSIAN")]
+        Persian = 53,
+        [pbr::OriginalName("PSYDUCK")]
+        Psyduck = 54,
+        [pbr::OriginalName("GOLDUCK")]
+        Golduck = 55,
+        [pbr::OriginalName("MANKEY")]
+        Mankey = 56,
+        [pbr::OriginalName("PRIMEAPE")]
+        Primeape = 57,
+        [pbr::OriginalName("GROWLITHE")]
+        Growlithe = 58,
+        [pbr::OriginalName("ARCANINE")]
+        Arcanine = 59,
+        [pbr::OriginalName("POLIWAG")]
+        Poliwag = 60,
+        [pbr::OriginalName("POLIWHIRL")]
+        Poliwhirl = 61,
+        [pbr::OriginalName("POLIWRATH")]
+        Poliwrath = 62,
+        [pbr::OriginalName("ABRA")]
+        Abra = 63,
+        [pbr::OriginalName("KADABRA")]
+        Kadabra = 64,
+        [pbr::OriginalName("ALAKAZAM")]
+        Alakazam = 65,
+        [pbr::OriginalName("MACHOP")]
+        Machop = 66,
+        [pbr::OriginalName("MACHOKE")]
+        Machoke = 67,
+        [pbr::OriginalName("MACHAMP")]
+        Machamp = 68,
+        [pbr::OriginalName("BELLSPROUT")]
+        Bellsprout = 69,
+        [pbr::OriginalName("WEEPINBELL")]
+        Weepinbell = 70,
+        [pbr::OriginalName("VICTREEBEL")]
+        Victreebel = 71,
+        [pbr::OriginalName("TENTACOOL")]
+        Tentacool = 72,
+        [pbr::OriginalName("TENTACRUEL")]
+        Tentacruel = 73,
+        [pbr::OriginalName("GEODUDE")]
+        Geodude = 74,
+        [pbr::OriginalName("GRAVELER")]
+        Graveler = 75,
+        [pbr::OriginalName("GOLEM")]
+        Golem = 76,
+        [pbr::OriginalName("PONYTA")]
+        Ponyta = 77,
+        [pbr::OriginalName("RAPIDASH")]
+        Rapidash = 78,
+        [pbr::OriginalName("SLOWPOKE")]
+        Slowpoke = 79,
+        [pbr::OriginalName("SLOWBRO")]
+        Slowbro = 80,
+        [pbr::OriginalName("MAGNEMITE")]
+        Magnemite = 81,
+        [pbr::OriginalName("MAGNETON")]
+        Magneton = 82,
+        [pbr::OriginalName("FARFETCHD")]
+        Farfetchd = 83,
+        [pbr::OriginalName("DODUO")]
+        Doduo = 84,
+        [pbr::OriginalName("DODRIO")]
+        Dodrio = 85,
+        [pbr::OriginalName("SEEL")]
+        Seel = 86,
+        [pbr::OriginalName("DEWGONG")]
+        Dewgong = 87,
+        [pbr::OriginalName("GRIMER")]
+        Grimer = 88,
+        [pbr::OriginalName("MUK")]
+        Muk = 89,
+        [pbr::OriginalName("SHELLDER")]
+        Shellder = 90,
+        [pbr::OriginalName("CLOYSTER")]
+        Cloyster = 91,
+        [pbr::OriginalName("GASTLY")]
+        Gastly = 92,
+        [pbr::OriginalName("HAUNTER")]
+        Haunter = 93,
+        [pbr::OriginalName("GENGAR")]
+        Gengar = 94,
+        [pbr::OriginalName("ONIX")]
+        Onix = 95,
+        [pbr::OriginalName("DROWZEE")]
+        Drowzee = 96,
+        [pbr::OriginalName("HYPNO")]
+        Hypno = 97,
+        [pbr::OriginalName("KRABBY")]
+        Krabby = 98,
+        [pbr::OriginalName("KINGLER")]
+        Kingler = 99,
+        [pbr::OriginalName("VOLTORB")]
+        Voltorb = 100,
+        [pbr::OriginalName("ELECTRODE")]
+        Electrode = 101,
+        [pbr::OriginalName("EXEGGCUTE")]
+        Exeggcute = 102,
+        [pbr::OriginalName("EXEGGUTOR")]
+        Exeggutor = 103,
+        [pbr::OriginalName("CUBONE")]
+        Cubone = 104,
+        [pbr::OriginalName("MAROWAK")]
+        Marowak = 105,
+        [pbr::OriginalName("HITMONLEE")]
+        Hitmonlee = 106,
+        [pbr::OriginalName("HITMONCHAN")]
+        Hitmonchan = 107,
+        [pbr::OriginalName("LICKITUNG")]
+        Lickitung = 108,
+        [pbr::OriginalName("KOFFING")]
+        Koffing = 109,
+        [pbr::OriginalName("WEEZING")]
+        Weezing = 110,
+        [pbr::OriginalName("RHYHORN")]
+        Rhyhorn = 111,
+        [pbr::OriginalName("RHYDON")]
+        Rhydon = 112,
+        [pbr::OriginalName("CHANSEY")]
+        Chansey = 113,
+        [pbr::OriginalName("TANGELA")]
+        Tangela = 114,
+        [pbr::OriginalName("KANGASKHAN")]
+        Kangaskhan = 115,
+        [pbr::OriginalName("HORSEA")]
+        Horsea = 116,
+        [pbr::OriginalName("SEADRA")]
+        Seadra = 117,
+        [pbr::OriginalName("GOLDEEN")]
+        Goldeen = 118,
+        [pbr::OriginalName("SEAKING")]
+        Seaking = 119,
+        [pbr::OriginalName("STARYU")]
+        Staryu = 120,
+        [pbr::OriginalName("STARMIE")]
+        Starmie = 121,
+        [pbr::OriginalName("MR_MIME")]
+        MrMime = 122,
+        [pbr::OriginalName("SCYTHER")]
+        Scyther = 123,
+        [pbr::OriginalName("JYNX")]
+        Jynx = 124,
+        [pbr::OriginalName("ELECTABUZZ")]
+        Electabuzz = 125,
+        [pbr::OriginalName("MAGMAR")]
+        Magmar = 126,
+        [pbr::OriginalName("PINSIR")]
+        Pinsir = 127,
+        [pbr::OriginalName("TAUROS")]
+        Tauros = 128,
+        [pbr::OriginalName("MAGIKARP")]
+        Magikarp = 129,
+        [pbr::OriginalName("GYARADOS")]
+        Gyarados = 130,
+        [pbr::OriginalName("LAPRAS")]
+        Lapras = 131,
+        [pbr::OriginalName("DITTO")]
+        Ditto = 132,
+        [pbr::OriginalName("EEVEE")]
+        Eevee = 133,
+        [pbr::OriginalName("VAPOREON")]
+        Vaporeon = 134,
+        [pbr::OriginalName("JOLTEON")]
+        Jolteon = 135,
+        [pbr::OriginalName("FLAREON")]
+        Flareon = 136,
+        [pbr::OriginalName("PORYGON")]
+        Porygon = 137,
+        [pbr::OriginalName("OMANYTE")]
+        Omanyte = 138,
+        [pbr::OriginalName("OMASTAR")]
+        Omastar = 139,
+        [pbr::OriginalName("KABUTO")]
+        Kabuto = 140,
+        [pbr::OriginalName("KABUTOPS")]
+        Kabutops = 141,
+        [pbr::OriginalName("AERODACTYL")]
+        Aerodactyl = 142,
+        [pbr::OriginalName("SNORLAX")]
+        Snorlax = 143,
+        [pbr::OriginalName("ARTICUNO")]
+        Articuno = 144,
+        [pbr::OriginalName("ZAPDOS")]
+        Zapdos = 145,
+        [pbr::OriginalName("MOLTRES")]
+        Moltres = 146,
+        [pbr::OriginalName("DRATINI")]
+        Dratini = 147,
+        [pbr::OriginalName("DRAGONAIR")]
+        Dragonair = 148,
+        [pbr::OriginalName("DRAGONITE")]
+        Dragonite = 149,
+        [pbr::OriginalName("MEWTWO")]
+        Mewtwo = 150,
+        [pbr::OriginalName("MEW")]
+        Mew = 151,
+    }
+
+    public enum FortSponsor
+    {
+        [pbr::OriginalName("UNSET_SPONSOR")]
+        UnsetSponsor = 0,
+        [pbr::OriginalName("MCDONALDS")]
+        McDonalds = 1,
+        [pbr::OriginalName("POKEMON_STORE")]
+        PokemonStore = 2,
+    }
+
+    public enum FortRenderingType
+    {
+        [pbr::OriginalName("DEFAULT")]
+        Default = 0,
+        [pbr::OriginalName("INTERNAL_TEST")]
+        InternalTest = 1,
+    }
+
+    public enum ItemType
+    {
+        [pbr::OriginalName("ITEM_TYPE_NONE")]
+        None = 0,
+        [pbr::OriginalName("ITEM_TYPE_POKEBALL")]
+        Pokeball = 1,
+        [pbr::OriginalName("ITEM_TYPE_POTION")]
+        Potion = 2,
+        [pbr::OriginalName("ITEM_TYPE_REVIVE")]
+        Revive = 3,
+        [pbr::OriginalName("ITEM_TYPE_MAP")]
+        Map = 4,
+        [pbr::OriginalName("ITEM_TYPE_BATTLE")]
+        Battle = 5,
+        [pbr::OriginalName("ITEM_TYPE_FOOD")]
+        Food = 6,
+        [pbr::OriginalName("ITEM_TYPE_CAMERA")]
+        Camera = 7,
+        [pbr::OriginalName("ITEM_TYPE_DISK")]
+        Disk = 8,
+        [pbr::OriginalName("ITEM_TYPE_INCUBATOR")]
+        Incubator = 9,
+        [pbr::OriginalName("ITEM_TYPE_INCENSE")]
+        Incense = 10,
+        [pbr::OriginalName("ITEM_TYPE_XP_BOOST")]
+        XpBoost = 11,
+        [pbr::OriginalName("ITEM_TYPE_INVENTORY_UPGRADE")]
+        InventoryUpgrade = 12,
+    }
+
+    public enum ItemCategory
+    {
+        [pbr::OriginalName("ITEM_CATEGORY_NONE")]
+        None = 0,
+        [pbr::OriginalName("ITEM_CATEGORY_POKEBALL")]
+        Pokeball = 1,
+        [pbr::OriginalName("ITEM_CATEGORY_FOOD")]
+        Food = 2,
+        [pbr::OriginalName("ITEM_CATEGORY_MEDICINE")]
+        Medicine = 3,
+        [pbr::OriginalName("ITEM_CATEGORY_BOOST")]
+        Boost = 4,
+        [pbr::OriginalName("ITEM_CATEGORY_UTILITES")]
+        Utilites = 5,
+        [pbr::OriginalName("ITEM_CATEGORY_CAMERA")]
+        Camera = 6,
+        [pbr::OriginalName("ITEM_CATEGORY_DISK")]
+        Disk = 7,
+        [pbr::OriginalName("ITEM_CATEGORY_INCUBATOR")]
+        Incubator = 8,
+        [pbr::OriginalName("ITEM_CATEGORY_INCENSE")]
+        Incense = 9,
+        [pbr::OriginalName("ITEM_CATEGORY_XP_BOOST")]
+        XpBoost = 10,
+        [pbr::OriginalName("ITEM_CATEGORY_INVENTORY_UPGRADE")]
+        InventoryUpgrade = 11,
+    }
+
+    public enum ItemEffect
+    {
+        [pbr::OriginalName("ITEM_EFFECT_NONE")]
+        None = 0,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_NO_FLEE")]
+        CapNoFlee = 1000,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_NO_MOVEMENT")]
+        CapNoMovement = 1002,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_NO_THREAT")]
+        CapNoThreat = 1003,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_TARGET_MAX")]
+        CapTargetMax = 1004,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_TARGET_SLOW")]
+        CapTargetSlow = 1005,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_NIGHT")]
+        CapChanceNight = 1006,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_TRAINER")]
+        CapChanceTrainer = 1007,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_FIRST_THROW")]
+        CapChanceFirstThrow = 1008,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_LEGEND")]
+        CapChanceLegend = 1009,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_HEAVY")]
+        CapChanceHeavy = 1010,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_REPEAT")]
+        CapChanceRepeat = 1011,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_MULTI_THROW")]
+        CapChanceMultiThrow = 1012,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_ALWAYS")]
+        CapChanceAlways = 1013,
+        [pbr::OriginalName("ITEM_EFFECT_CAP_CHANCE_SINGLE_THROW")]
+        CapChanceSingleThrow = 1014,
+    }
+
+    public enum ActivityType
+    {
+        [pbr::OriginalName("ACTIVITY_UNKNOWN")]
+        ActivityUnknown = 0,
+        [pbr::OriginalName("ACTIVITY_CATCH_POKEMON")]
+        ActivityCatchPokemon = 1,
+        [pbr::OriginalName("ACTIVITY_CATCH_LEGEND_POKEMON")]
+        ActivityCatchLegendPokemon = 2,
+        [pbr::OriginalName("ACTIVITY_FLEE_POKEMON")]
+        ActivityFleePokemon = 3,
+        [pbr::OriginalName("ACTIVITY_DEFEAT_FORT")]
+        ActivityDefeatFort = 4,
+        [pbr::OriginalName("ACTIVITY_EVOLVE_POKEMON")]
+        ActivityEvolvePokemon = 5,
+        [pbr::OriginalName("ACTIVITY_HATCH_EGG")]
+        ActivityHatchEgg = 6,
+        [pbr::OriginalName("ACTIVITY_WALK_KM")]
+        ActivityWalkKm = 7,
+        [pbr::OriginalName("ACTIVITY_POKEDEX_ENTRY_NEW")]
+        ActivityPokedexEntryNew = 8,
+        [pbr::OriginalName("ACTIVITY_CATCH_FIRST_THROW")]
+        ActivityCatchFirstThrow = 9,
+        [pbr::OriginalName("ACTIVITY_CATCH_NICE_THROW")]
+        ActivityCatchNiceThrow = 10,
+        [pbr::OriginalName("ACTIVITY_CATCH_GREAT_THROW")]
+        ActivityCatchGreatThrow = 11,
+        [pbr::OriginalName("ACTIVITY_CATCH_EXCELLENT_THROW")]
+        ActivityCatchExcellentThrow = 12,
+        [pbr::OriginalName("ACTIVITY_CATCH_CURVEBALL")]
+        ActivityCatchCurveball = 13,
+        [pbr::OriginalName("ACTIVITY_CATCH_FIRST_CATCH_OF_DAY")]
+        ActivityCatchFirstCatchOfDay = 14,
+        [pbr::OriginalName("ACTIVITY_CATCH_MILESTONE")]
+        ActivityCatchMilestone = 15,
+        [pbr::OriginalName("ACTIVITY_TRAIN_POKEMON")]
+        ActivityTrainPokemon = 16,
+        [pbr::OriginalName("ACTIVITY_SEARCH_FORT")]
+        ActivitySearchFort = 17,
+        [pbr::OriginalName("ACTIVITY_RELEASE_POKEMON")]
+        ActivityReleasePokemon = 18,
+        [pbr::OriginalName("ACTIVITY_HATCH_EGG_SMALL_BONUS")]
+        ActivityHatchEggSmallBonus = 19,
+        [pbr::OriginalName("ACTIVITY_HATCH_EGG_MEDIUM_BONUS")]
+        ActivityHatchEggMediumBonus = 20,
+        [pbr::OriginalName("ACTIVITY_HATCH_EGG_LARGE_BONUS")]
+        ActivityHatchEggLargeBonus = 21,
+        [pbr::OriginalName("ACTIVITY_DEFEAT_GYM_DEFENDER")]
+        ActivityDefeatGymDefender = 22,
+        [pbr::OriginalName("ACTIVITY_DEFEAT_GYM_LEADER")]
+        ActivityDefeatGymLeader = 23,
+    }
+
+    public enum BadgeType
+    {
+        [pbr::OriginalName("BADGE_UNSET")]
+        BadgeUnset = 0,
+        [pbr::OriginalName("BADGE_TRAVEL_KM")]
+        BadgeTravelKm = 1,
+        [pbr::OriginalName("BADGE_POKEDEX_ENTRIES")]
+        BadgePokedexEntries = 2,
+        [pbr::OriginalName("BADGE_CAPTURE_TOTAL")]
+        BadgeCaptureTotal = 3,
+        [pbr::OriginalName("BADGE_DEFEATED_FORT")]
+        BadgeDefeatedFort = 4,
+        [pbr::OriginalName("BADGE_EVOLVED_TOTAL")]
+        BadgeEvolvedTotal = 5,
+        [pbr::OriginalName("BADGE_HATCHED_TOTAL")]
+        BadgeHatchedTotal = 6,
+        [pbr::OriginalName("BADGE_ENCOUNTERED_TOTAL")]
+        BadgeEncounteredTotal = 7,
+        [pbr::OriginalName("BADGE_POKESTOPS_VISITED")]
+        BadgePokestopsVisited = 8,
+        [pbr::OriginalName("BADGE_UNIQUE_POKESTOPS")]
+        BadgeUniquePokestops = 9,
+        [pbr::OriginalName("BADGE_POKEBALL_THROWN")]
+        BadgePokeballThrown = 10,
+        [pbr::OriginalName("BADGE_BIG_MAGIKARP")]
+        BadgeBigMagikarp = 11,
+        [pbr::OriginalName("BADGE_DEPLOYED_TOTAL")]
+        BadgeDeployedTotal = 12,
+        [pbr::OriginalName("BADGE_BATTLE_ATTACK_WON")]
+        BadgeBattleAttackWon = 13,
+        [pbr::OriginalName("BADGE_BATTLE_TRAINING_WON")]
+        BadgeBattleTrainingWon = 14,
+        [pbr::OriginalName("BADGE_BATTLE_DEFEND_WON")]
+        BadgeBattleDefendWon = 15,
+        [pbr::OriginalName("BADGE_PRESTIGE_RAISED")]
+        BadgePrestigeRaised = 16,
+        [pbr::OriginalName("BADGE_PRESTIGE_DROPPED")]
+        BadgePrestigeDropped = 17,
+        [pbr::OriginalName("BADGE_TYPE_NORMAL")]
+        Normal = 18,
+        [pbr::OriginalName("BADGE_TYPE_FIGHTING")]
+        Fighting = 19,
+        [pbr::OriginalName("BADGE_TYPE_FLYING")]
+        Flying = 20,
+        [pbr::OriginalName("BADGE_TYPE_POISON")]
+        Poison = 21,
+        [pbr::OriginalName("BADGE_TYPE_GROUND")]
+        Ground = 22,
+        [pbr::OriginalName("BADGE_TYPE_ROCK")]
+        Rock = 23,
+        [pbr::OriginalName("BADGE_TYPE_BUG")]
+        Bug = 24,
+        [pbr::OriginalName("BADGE_TYPE_GHOST")]
+        Ghost = 25,
+        [pbr::OriginalName("BADGE_TYPE_STEEL")]
+        Steel = 26,
+        [pbr::OriginalName("BADGE_TYPE_FIRE")]
+        Fire = 27,
+        [pbr::OriginalName("BADGE_TYPE_WATER")]
+        Water = 28,
+        [pbr::OriginalName("BADGE_TYPE_GRASS")]
+        Grass = 29,
+        [pbr::OriginalName("BADGE_TYPE_ELECTRIC")]
+        Electric = 30,
+        [pbr::OriginalName("BADGE_TYPE_PSYCHIC")]
+        Psychic = 31,
+        [pbr::OriginalName("BADGE_TYPE_ICE")]
+        Ice = 32,
+        [pbr::OriginalName("BADGE_TYPE_DRAGON")]
+        Dragon = 33,
+        [pbr::OriginalName("BADGE_TYPE_DARK")]
+        Dark = 34,
+        [pbr::OriginalName("BADGE_TYPE_FAIRY")]
+        Fairy = 35,
+        [pbr::OriginalName("BADGE_SMALL_RATTATA")]
+        BadgeSmallRattata = 36,
+        [pbr::OriginalName("BADGE_PIKACHU")]
+        BadgePikachu = 37,
+    }
+
+    public enum HoloIapItemCategory
+    {
+        [pbr::OriginalName("IAP_CATEGORY_NONE")]
+        IapCategoryNone = 0,
+        [pbr::OriginalName("IAP_CATEGORY_BUNDLE")]
+        IapCategoryBundle = 1,
+        [pbr::OriginalName("IAP_CATEGORY_ITEMS")]
+        IapCategoryItems = 2,
+        [pbr::OriginalName("IAP_CATEGORY_UPGRADES")]
+        IapCategoryUpgrades = 3,
+        [pbr::OriginalName("IAP_CATEGORY_POKECOINS")]
+        IapCategoryPokecoins = 4,
+    }
+
+    public enum CameraInterpolation
+    {
+        [pbr::OriginalName("CAM_INTERP_CUT")]
+        CamInterpCut = 0,
+        [pbr::OriginalName("CAM_INTERP_LINEAR")]
+        CamInterpLinear = 1,
+        [pbr::OriginalName("CAM_INTERP_SMOOTH")]
+        CamInterpSmooth = 2,
+        [pbr::OriginalName("CAM_INTERP_SMOOTH_ROT_LINEAR_MOVE")]
+        CamInterpSmoothRotLinearMove = 3,
+        [pbr::OriginalName("CAM_INTERP_DEPENDS")]
+        CamInterpDepends = 4,
+    }
+
+    public enum CameraTarget
+    {
+        [pbr::OriginalName("CAM_TARGET_ATTACKER")]
+        CamTargetAttacker = 0,
+        [pbr::OriginalName("CAM_TARGET_ATTACKER_EDGE")]
+        CamTargetAttackerEdge = 1,
+        [pbr::OriginalName("CAM_TARGET_ATTACKER_GROUND")]
+        CamTargetAttackerGround = 2,
+        [pbr::OriginalName("CAM_TARGET_DEFENDER")]
+        CamTargetDefender = 3,
+        [pbr::OriginalName("CAM_TARGET_DEFENDER_EDGE")]
+        CamTargetDefenderEdge = 4,
+        [pbr::OriginalName("CAM_TARGET_DEFENDER_GROUND")]
+        CamTargetDefenderGround = 5,
+        [pbr::OriginalName("CAM_TARGET_ATTACKER_DEFENDER")]
+        CamTargetAttackerDefender = 6,
+        [pbr::OriginalName("CAM_TARGET_ATTACKER_DEFENDER_EDGE")]
+        CamTargetAttackerDefenderEdge = 7,
+        [pbr::OriginalName("CAM_TARGET_DEFENDER_ATTACKER")]
+        CamTargetDefenderAttacker = 8,
+        [pbr::OriginalName("CAM_TARGET_DEFENDER_ATTACKER_EDGE")]
+        CamTargetDefenderAttackerEdge = 9,
+        [pbr::OriginalName("CAM_TARGET_ATTACKER_DEFENDER_MIRROR")]
+        CamTargetAttackerDefenderMirror = 11,
+        [pbr::OriginalName("CAM_TARGET_SHOULDER_ATTACKER_DEFENDER")]
+        CamTargetShoulderAttackerDefender = 12,
+        [pbr::OriginalName("CAM_TARGET_SHOULDER_ATTACKER_DEFENDER_MIRROR")]
+        CamTargetShoulderAttackerDefenderMirror = 13,
+        [pbr::OriginalName("CAM_TARGET_ATTACKER_DEFENDER_WORLD")]
+        CamTargetAttackerDefenderWorld = 14,
+    }
+
+    public enum PokemonType
+    {
+        [pbr::OriginalName("POKEMON_TYPE_NONE")]
+        None = 0,
+        [pbr::OriginalName("POKEMON_TYPE_NORMAL")]
+        Normal = 1,
+        [pbr::OriginalName("POKEMON_TYPE_FIGHTING")]
+        Fighting = 2,
+        [pbr::OriginalName("POKEMON_TYPE_FLYING")]
+        Flying = 3,
+        [pbr::OriginalName("POKEMON_TYPE_POISON")]
+        Poison = 4,
+        [pbr::OriginalName("POKEMON_TYPE_GROUND")]
+        Ground = 5,
+        [pbr::OriginalName("POKEMON_TYPE_ROCK")]
+        Rock = 6,
+        [pbr::OriginalName("POKEMON_TYPE_BUG")]
+        Bug = 7,
+        [pbr::OriginalName("POKEMON_TYPE_GHOST")]
+        Ghost = 8,
+        [pbr::OriginalName("POKEMON_TYPE_STEEL")]
+        Steel = 9,
+        [pbr::OriginalName("POKEMON_TYPE_FIRE")]
+        Fire = 10,
+        [pbr::OriginalName("POKEMON_TYPE_WATER")]
+        Water = 11,
+        [pbr::OriginalName("POKEMON_TYPE_GRASS")]
+        Grass = 12,
+        [pbr::OriginalName("POKEMON_TYPE_ELECTRIC")]
+        Electric = 13,
+        [pbr::OriginalName("POKEMON_TYPE_PSYCHIC")]
+        Psychic = 14,
+        [pbr::OriginalName("POKEMON_TYPE_ICE")]
+        Ice = 15,
+        [pbr::OriginalName("POKEMON_TYPE_DRAGON")]
+        Dragon = 16,
+        [pbr::OriginalName("POKEMON_TYPE_DARK")]
+        Dark = 17,
+        [pbr::OriginalName("POKEMON_TYPE_FAIRY")]
+        Fairy = 18,
+    }
+
+    public enum PokemonMovementType
+    {
+        [pbr::OriginalName("MOVEMENT_STATIC")]
+        MovementStatic = 0,
+        [pbr::OriginalName("MOVEMENT_JUMP")]
+        MovementJump = 1,
+        [pbr::OriginalName("MOVEMENT_VERTICAL")]
+        MovementVertical = 2,
+        [pbr::OriginalName("MOVEMENT_PSYCHIC")]
+        MovementPsychic = 3,
+        [pbr::OriginalName("MOVEMENT_ELECTRIC")]
+        MovementElectric = 4,
+        [pbr::OriginalName("MOVEMENT_FLYING")]
+        MovementFlying = 5,
+        [pbr::OriginalName("MOVEMENT_HOVERING")]
+        MovementHovering = 6,
+    }
+
+    public enum PokemonClass
+    {
+        [pbr::OriginalName("NORMAL")]
+        Normal = 0,
+        [pbr::OriginalName("LEGENDARY")]
+        Legendary = 1,
+        [pbr::OriginalName("MYTHIC")]
+        Mythic = 2,
+    }
+
+    #endregion
+
+}
+
+#endregion Designer generated code
\ No newline at end of file
diff --git a/PokemonGo.RocketAPI/GeneratedCode/Payloads.cs b/PokemonGo.RocketAPI/GeneratedCode/Payloads.cs
index 8594674..e1f80a0 100644
--- a/PokemonGo.RocketAPI/GeneratedCode/Payloads.cs
+++ b/PokemonGo.RocketAPI/GeneratedCode/Payloads.cs
@@ -1,27348 +1,27625 @@
-// Generated by the protocol buffer compiler.  DO NOT EDIT!
-// source: Payloads.proto
-#pragma warning disable 1591, 0612, 3021
-#region Designer generated code
-
-using pb = global::Google.Protobuf;
-using pbc = global::Google.Protobuf.Collections;
-using pbr = global::Google.Protobuf.Reflection;
-using scg = global::System.Collections.Generic;
-namespace PokemonGo.RocketAPI.GeneratedCode
-{
-
-    /// <summary>Holder for reflection information generated from Payloads.proto</summary>
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public static partial class PayloadsReflection
-    {
-
-        #region Descriptor
-        /// <summary>File descriptor for Payloads.proto</summary>
-        public static pbr::FileDescriptor Descriptor
-        {
-            get { return descriptor; }
-        }
-        private static pbr::FileDescriptor descriptor;
-
-        static PayloadsReflection()
-        {
-            byte[] descriptorData = global::System.Convert.FromBase64String(
-                string.Concat(
-                  "Cg5QYXlsb2Fkcy5wcm90bxIhUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0",
-                  "ZWRDb2RlGg1BbGxFbnVtLnByb3RvImIKEUdldFBsYXllclJlc3BvbnNlEhAK",
-                  "CHVua25vd24xGAEgASgFEjsKB3Byb2ZpbGUYAiABKAsyKi5Qb2tlbW9uR28u",
-                  "Um9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUHJvZmlsZSL9AgoHUHJvZmlsZRIV",
-                  "Cg1jcmVhdGlvbl90aW1lGAEgASgDEhAKCHVzZXJuYW1lGAIgASgJEiAKBHRl",
-                  "YW0YBSABKA4yEi5BbGxFbnVtLlRlYW1Db2xvchIQCgh0dXRvcmlhbBgHIAEo",
-                  "DBJACgZhdmF0YXIYCCABKAsyMC5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVy",
-                  "YXRlZENvZGUuQXZhdGFyRGV0YWlscxIUCgxwb2tlX3N0b3JhZ2UYCSABKAUS",
-                  "FAoMaXRlbV9zdG9yYWdlGAogASgFEkIKC2RhaWx5X2JvbnVzGAsgASgLMi0u",
-                  "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkRhaWx5Qm9udXMS",
-                  "EQoJdW5rbm93bjEyGAwgASgMEhEKCXVua25vd24xMxgNIAEoDBI9CghjdXJy",
-                  "ZW5jeRgOIAMoCzIrLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29k",
-                  "ZS5DdXJyZW5jeSJZCgpEYWlseUJvbnVzEh4KFk5leHRDb2xsZWN0VGltZXN0",
-                  "YW1wTXMYASABKAMSKwojTmV4dERlZmVuZGVyQm9udXNDb2xsZWN0VGltZXN0",
-                  "YW1wTXMYAiABKAMiKAoIQ3VycmVuY3kSDAoEdHlwZRgBIAEoCRIOCgZhbW91",
-                  "bnQYAiABKAUiWAoNQXZhdGFyRGV0YWlscxIQCgh1bmtub3duMhgCIAEoBRIQ",
-                  "Cgh1bmtub3duMxgDIAEoBRIQCgh1bmtub3duORgJIAEoBRIRCgl1bmtub3du",
-                  "MTAYCiABKAUiJwoXRG93bmxvYWRTZXR0aW5nc1JlcXVlc3QSDAoEaGFzaBgB",
-                  "IAEoCSJzChRHZXRJbnZlbnRvcnlSZXNwb25zZRIPCgdzdWNjZXNzGAEgASgI",
-                  "EkoKD2ludmVudG9yeV9kZWx0YRgCIAEoCzIxLlBva2Vtb25Hby5Sb2NrZXRB",
-                  "UEkuR2VuZXJhdGVkQ29kZS5JbnZlbnRvcnlEZWx0YSKUAQoOSW52ZW50b3J5",
-                  "RGVsdGESHQoVb3JpZ2luYWxfdGltZXN0YW1wX21zGAEgASgDEhgKEG5ld190",
-                  "aW1lc3RhbXBfbXMYAiABKAMSSQoPaW52ZW50b3J5X2l0ZW1zGAMgAygLMjAu",
-                  "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkludmVudG9yeUl0",
-                  "ZW0imwEKDUludmVudG9yeUl0ZW0SHQoVbW9kaWZpZWRfdGltZXN0YW1wX21z",
-                  "GAEgASgDEhgKEGRlbGV0ZWRfaXRlbV9rZXkYAiABKAMSUQoTaW52ZW50b3J5",
-                  "X2l0ZW1fZGF0YRgDIAEoCzI0LlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJh",
-                  "dGVkQ29kZS5JbnZlbnRvcnlJdGVtRGF0YSLbBQoRSW52ZW50b3J5SXRlbURh",
-                  "dGESPwoHcG9rZW1vbhgBIAEoCzIuLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2Vu",
-                  "ZXJhdGVkQ29kZS5Qb2tlbW9uRGF0YRI1CgRpdGVtGAIgASgLMicuUG9rZW1v",
-                  "bkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkl0ZW0SRgoNcG9rZWRleF9l",
-                  "bnRyeRgDIAEoCzIvLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29k",
-                  "ZS5Qb2tlZGV4RW50cnkSRAoMcGxheWVyX3N0YXRzGAQgASgLMi4uUG9rZW1v",
-                  "bkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlBsYXllclN0YXRzEkoKD3Bs",
-                  "YXllcl9jdXJyZW5jeRgFIAEoCzIxLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2Vu",
-                  "ZXJhdGVkQ29kZS5QbGF5ZXJDdXJyZW5jeRJGCg1wbGF5ZXJfY2FtZXJhGAYg",
-                  "ASgLMi8uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlBsYXll",
-                  "ckNhbWVyYRJQChJpbnZlbnRvcnlfdXBncmFkZXMYByABKAsyNC5Qb2tlbW9u",
-                  "R28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuSW52ZW50b3J5VXBncmFkZXMS",
-                  "RgoNYXBwbGllZF9pdGVtcxgIIAEoCzIvLlBva2Vtb25Hby5Sb2NrZXRBUEku",
-                  "R2VuZXJhdGVkQ29kZS5BcHBsaWVkSXRlbXMSSAoOZWdnX2luY3ViYXRvcnMY",
-                  "CSABKAsyMC5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuRWdn",
-                  "SW5jdWJhdG9ycxJICg5wb2tlbW9uX2ZhbWlseRgKIAEoCzIwLlBva2Vtb25H",
-                  "by5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5Qb2tlbW9uRmFtaWx5IkcKFFJl",
-                  "Y3ljbGVJbnZlbnRvcnlJdGVtEiAKB2l0ZW1faWQYASABKA4yDy5BbGxFbnVt",
-                  "Lkl0ZW1JZBINCgVjb3VudBgCIAEoBSLYBQoHUG9rZW1vbhIKCgJpZBgBIAEo",
-                  "BRIoCgxwb2tlbW9uX3R5cGUYAiABKA4yEi5BbGxFbnVtLlBva2Vtb25JZBIK",
-                  "CgJjcBgDIAEoBRIPCgdzdGFtaW5hGAQgASgFEhMKC3N0YW1pbmFfbWF4GAUg",
-                  "ASgFEiQKBm1vdmVfMRgGIAEoDjIULkFsbEVudW0uUG9rZW1vbk1vdmUSJAoG",
-                  "bW92ZV8yGAcgASgOMhQuQWxsRW51bS5Qb2tlbW9uTW92ZRIYChBkZXBsb3ll",
-                  "ZF9mb3J0X2lkGAggASgFEhIKCm93bmVyX25hbWUYCSABKAkSDgoGaXNfZWdn",
-                  "GAogASgIEhwKFGVnZ19rbV93YWxrZWRfdGFyZ2V0GAsgASgFEhsKE2VnZ19r",
-                  "bV93YWxrZWRfc3RhcnQYDCABKAUSDgoGb3JpZ2luGA4gASgFEhAKCGhlaWdo",
-                  "dF9tGA8gASgCEhEKCXdlaWdodF9rZxgQIAEoAhIZChFpbmRpdmlkdWFsX2F0",
-                  "dGFjaxgRIAEoBRIaChJpbmRpdmlkdWFsX2RlZmVuc2UYEiABKAUSGgoSaW5k",
-                  "aXZpZHVhbF9zdGFtaW5hGBMgASgFEhUKDWNwX211bHRpcGxpZXIYFCABKAUS",
-                  "EAoIcG9rZWJhbGwYFSABKAUSGAoQY2FwdHVyZWRfY2VsbF9pZBgWIAEoBBIY",
-                  "ChBiYXR0bGVzX2F0dGFja2VkGBcgASgFEhgKEGJhdHRsZXNfZGVmZW5kZWQY",
-                  "GCABKAUSGAoQZWdnX2luY3ViYXRvcl9pZBgZIAEoBRIYChBjcmVhdGlvbl90",
-                  "aW1lX21zGBogASgEEhQKDG51bV91cGdyYWRlcxgbIAEoBRIgChhhZGRpdGlv",
-                  "bmFsX2NwX211bHRpcGxpZXIYHCABKAUSEAoIZmF2b3JpdGUYHSABKAUSEAoI",
-                  "bmlja25hbWUYHiABKAkSEQoJZnJvbV9mb3J0GB8gASgFIkYKBEl0ZW0SHwoE",
-                  "aXRlbRgBIAEoDjIRLkFsbEVudW0uSXRlbVR5cGUSDQoFY291bnQYAiABKAUS",
-                  "DgoGdW5zZWVuGAMgASgIIpkBCgxQb2tlZGV4RW50cnkSHAoUcG9rZWRleF9l",
-                  "bnRyeV9udW1iZXIYASABKAUSGQoRdGltZXNfZW5jb3VudGVyZWQYAiABKAUS",
-                  "FgoOdGltZXNfY2FwdHVyZWQYAyABKAUSHgoWZXZvbHV0aW9uX3N0b25lX3Bp",
-                  "ZWNlcxgEIAEoBRIYChBldm9sdXRpb25fc3RvbmVzGAUgASgFIu0ECgtQbGF5",
-                  "ZXJTdGF0cxINCgVsZXZlbBgBIAEoBRISCgpleHBlcmllbmNlGAIgASgDEhUK",
-                  "DXByZXZfbGV2ZWxfeHAYAyABKAMSFQoNbmV4dF9sZXZlbF94cBgEIAEoAxIR",
-                  "CglrbV93YWxrZWQYBSABKAISHAoUcG9rZW1vbnNfZW5jb3VudGVyZWQYBiAB",
-                  "KAUSHgoWdW5pcXVlX3Bva2VkZXhfZW50cmllcxgHIAEoBRIZChFwb2tlbW9u",
-                  "c19jYXB0dXJlZBgIIAEoBRISCgpldm9sdXRpb25zGAkgASgFEhgKEHBva2Vf",
-                  "c3RvcF92aXNpdHMYCiABKAUSGAoQcG9rZWJhbGxzX3Rocm93bhgLIAEoBRIU",
-                  "CgxlZ2dzX2hhdGNoZWQYDCABKAUSGwoTYmlnX21hZ2lrYXJwX2NhdWdodBgN",
-                  "IAEoBRIZChFiYXR0bGVfYXR0YWNrX3dvbhgOIAEoBRIbChNiYXR0bGVfYXR0",
-                  "YWNrX3RvdGFsGA8gASgFEhsKE2JhdHRsZV9kZWZlbmRlZF93b24YECABKAUS",
-                  "GwoTYmF0dGxlX3RyYWluaW5nX3dvbhgRIAEoBRIdChViYXR0bGVfdHJhaW5p",
-                  "bmdfdG90YWwYEiABKAUSHQoVcHJlc3RpZ2VfcmFpc2VkX3RvdGFsGBMgASgF",
-                  "Eh4KFnByZXN0aWdlX2Ryb3BwZWRfdG90YWwYFCABKAUSGAoQcG9rZW1vbl9k",
-                  "ZXBsb3llZBgVIAEoBRIeChZwb2tlbW9uX2NhdWdodF9ieV90eXBlGBYgASgM",
-                  "EhwKFHNtYWxsX3JhdHRhdGFfY2F1Z2h0GBcgASgFIh4KDlBsYXllckN1cnJl",
-                  "bmN5EgwKBGdlbXMYASABKAUiKQoMUGxheWVyQ2FtZXJhEhkKEWlzX2RlZmF1",
-                  "bHRfY2FtZXJhGAEgASgIImQKEUludmVudG9yeVVwZ3JhZGVzEk8KEmludmVu",
-                  "dG9yeV91cGdyYWRlcxgBIAMoCzIzLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2Vu",
-                  "ZXJhdGVkQ29kZS5JbnZlbnRvcnlVcGdyYWRlIoQBChBJbnZlbnRvcnlVcGdy",
-                  "YWRlEh8KBGl0ZW0YASABKA4yES5BbGxFbnVtLkl0ZW1UeXBlEjMKDHVwZ3Jh",
-                  "ZGVfdHlwZRgCIAEoDjIdLkFsbEVudW0uSW52ZW50b3J5VXBncmFkZVR5cGUS",
-                  "GgoSYWRkaXRpb25hbF9zdG9yYWdlGAMgASgFIkwKDEFwcGxpZWRJdGVtcxI8",
-                  "CgRpdGVtGAQgASgLMi4uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRD",
-                  "b2RlLkFwcGxpZWRJdGVtIocBCgtBcHBsaWVkSXRlbRIiCglpdGVtX3R5cGUY",
-                  "ASABKA4yDy5BbGxFbnVtLkl0ZW1JZBItChJpdGVtX3R5cGVfY2F0ZWdvcnkY",
-                  "AiABKA4yES5BbGxFbnVtLkl0ZW1UeXBlEhEKCWV4cGlyZV9tcxgDIAEoAxIS",
-                  "CgphcHBsaWVkX21zGAQgASgDIlcKDUVnZ0luY3ViYXRvcnMSRgoNZWdnX2lu",
-                  "Y3ViYXRvchgBIAEoCzIvLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVk",
-                  "Q29kZS5FZ2dJbmN1YmF0b3Ii1wEKDEVnZ0luY3ViYXRvchIPCgdpdGVtX2lk",
-                  "GAEgASgJEiQKCWl0ZW1fdHlwZRgCIAEoDjIRLkFsbEVudW0uSXRlbVR5cGUS",
-                  "MQoOaW5jdWJhdG9yX3R5cGUYAyABKA4yGS5BbGxFbnVtLkVnZ0luY3ViYXRv",
-                  "clR5cGUSFgoOdXNlc19yZW1haW5pbmcYBCABKAUSEgoKcG9rZW1vbl9pZBgF",
-                  "IAEoAxIXCg9zdGFydF9rbV93YWxrZWQYBiABKAESGAoQdGFyZ2V0X2ttX3dh",
-                  "bGtlZBgHIAEoASJLCg1Qb2tlbW9uRmFtaWx5EisKCWZhbWlseV9pZBgBIAEo",
-                  "DjIYLkFsbEVudW0uUG9rZW1vbkZhbWlseUlkEg0KBWNhbmR5GAIgASgFImgK",
-                  "FEdldE1hcE9iamVjdHNSZXF1ZXN0Eg8KB2NlbGxfaWQYASABKAwSGgoSc2lu",
-                  "Y2VfdGltZXN0YW1wX21zGAIgASgMEhAKCGxhdGl0dWRlGAMgASgBEhEKCWxv",
-                  "bmdpdHVkZRgEIAEoASKBAQoVR2V0TWFwT2JqZWN0c1Jlc3BvbnNlEj0KCW1h",
-                  "cF9jZWxscxgBIAMoCzIqLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVk",
-                  "Q29kZS5NYXBDZWxsEikKBnN0YXR1cxgCIAEoDjIZLkFsbEVudW0uTWFwT2Jq",
-                  "ZWN0c1N0YXR1cyLkBAoHTWFwQ2VsbBISCgpzMl9jZWxsX2lkGAEgASgEEhwK",
-                  "FGN1cnJlbnRfdGltZXN0YW1wX21zGAIgASgDEjoKBWZvcnRzGAMgAygLMisu",
-                  "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkZvcnREYXRhEkMK",
-                  "DHNwYXduX3BvaW50cxgEIAMoCzItLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2Vu",
-                  "ZXJhdGVkQ29kZS5TcGF3blBvaW50EhcKD2RlbGV0ZWRfb2JqZWN0cxgGIAMo",
-                  "CRIZChFpc190cnVuY2F0ZWRfbGlzdBgHIAEoCBJGCg5mb3J0X3N1bW1hcmll",
-                  "cxgIIAMoCzIuLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5G",
-                  "b3J0U3VtbWFyeRJNChZkZWNpbWF0ZWRfc3Bhd25fcG9pbnRzGAkgAygLMi0u",
-                  "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlNwYXduUG9pbnQS",
-                  "RQoNd2lsZF9wb2tlbW9ucxgFIAMoCzIuLlBva2Vtb25Hby5Sb2NrZXRBUEku",
-                  "R2VuZXJhdGVkQ29kZS5XaWxkUG9rZW1vbhJJChJjYXRjaGFibGVfcG9rZW1v",
-                  "bnMYCiADKAsyLS5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUu",
-                  "TWFwUG9rZW1vbhJJCg9uZWFyYnlfcG9rZW1vbnMYCyADKAsyMC5Qb2tlbW9u",
-                  "R28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuTmVhcmJ5UG9rZW1vbiKTBAoI",
-                  "Rm9ydERhdGESCgoCaWQYASABKAkSIgoabGFzdF9tb2RpZmllZF90aW1lc3Rh",
-                  "bXBfbXMYAiABKAMSEAoIbGF0aXR1ZGUYAyABKAESEQoJbG9uZ2l0dWRlGAQg",
-                  "ASgBEg8KB2VuYWJsZWQYCCABKAgSHwoEdHlwZRgJIAEoDjIRLkFsbEVudW0u",
-                  "Rm9ydFR5cGUSKQoNb3duZWRfYnlfdGVhbRgFIAEoDjISLkFsbEVudW0uVGVh",
-                  "bUNvbG9yEiwKEGd1YXJkX3Bva2Vtb25faWQYBiABKA4yEi5BbGxFbnVtLlBv",
-                  "a2Vtb25JZBIYChBndWFyZF9wb2tlbW9uX2NwGAcgASgFEhIKCmd5bV9wb2lu",
-                  "dHMYCiABKAMSFAoMaXNfaW5fYmF0dGxlGAsgASgIEiYKHmNvb2xkb3duX2Nv",
-                  "bXBsZXRlX3RpbWVzdGFtcF9tcxgOIAEoAxIlCgdzcG9uc29yGA8gASgOMhQu",
-                  "QWxsRW51bS5Gb3J0U3BvbnNvchIyCg5yZW5kZXJpbmdfdHlwZRgQIAEoDjIa",
-                  "LkFsbEVudW0uRm9ydFJlbmRlcmluZ1R5cGUSHAoUYWN0aXZlX2ZvcnRfbW9k",
-                  "aWZpZXIYDCABKAwSQgoJbHVyZV9pbmZvGA0gASgLMi8uUG9rZW1vbkdvLlJv",
-                  "Y2tldEFQSS5HZW5lcmF0ZWRDb2RlLkZvcnRMdXJlSW5mbyKDAQoMRm9ydEx1",
-                  "cmVJbmZvEg8KB2ZvcnRfaWQYASABKAkSEAoIdW5rbm93bjIYAiABKAESLQoR",
-                  "YWN0aXZlX3Bva2Vtb25faWQYAyABKA4yEi5BbGxFbnVtLlBva2Vtb25JZBIh",
-                  "ChlsdXJlX2V4cGlyZXNfdGltZXN0YW1wX21zGAQgASgDIjEKClNwYXduUG9p",
-                  "bnQSEAoIbGF0aXR1ZGUYAiABKAESEQoJbG9uZ2l0dWRlGAMgASgBIm8KC0Zv",
-                  "cnRTdW1tYXJ5EhcKD2ZvcnRfc3VtbWFyeV9pZBgBIAEoBRIiChpsYXN0X21v",
-                  "ZGlmaWVkX3RpbWVzdGFtcF9tcxgCIAEoBRIQCghsYXRpdHVkZRgDIAEoBRIR",
-                  "Cglsb25naXR1ZGUYBCABKAUi5gEKC1dpbGRQb2tlbW9uEhQKDGVuY291bnRl",
-                  "cl9pZBgBIAEoBhIiChpsYXN0X21vZGlmaWVkX3RpbWVzdGFtcF9tcxgCIAEo",
-                  "AxIQCghsYXRpdHVkZRgDIAEoARIRCglsb25naXR1ZGUYBCABKAESFQoNc3Bh",
-                  "d25wb2ludF9pZBgFIAEoCRJECgxwb2tlbW9uX2RhdGEYByABKAsyLi5Qb2tl",
-                  "bW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG9rZW1vbkRhdGESGwoT",
-                  "dGltZV90aWxsX2hpZGRlbl9tcxgLIAEoBSLaBQoLUG9rZW1vbkRhdGESCgoC",
-                  "aWQYASABKAYSJgoKcG9rZW1vbl9pZBgCIAEoDjISLkFsbEVudW0uUG9rZW1v",
-                  "bklkEgoKAmNwGAMgASgFEg8KB3N0YW1pbmEYBCABKAUSEwoLc3RhbWluYV9t",
-                  "YXgYBSABKAUSJAoGbW92ZV8xGAYgASgOMhQuQWxsRW51bS5Qb2tlbW9uTW92",
-                  "ZRIkCgZtb3ZlXzIYByABKA4yFC5BbGxFbnVtLlBva2Vtb25Nb3ZlEhgKEGRl",
-                  "cGxveWVkX2ZvcnRfaWQYCCABKAUSEgoKb3duZXJfbmFtZRgJIAEoCRIOCgZp",
-                  "c19lZ2cYCiABKAgSHAoUZWdnX2ttX3dhbGtlZF90YXJnZXQYCyABKAUSGwoT",
-                  "ZWdnX2ttX3dhbGtlZF9zdGFydBgMIAEoBRIOCgZvcmlnaW4YDiABKAUSEAoI",
-                  "aGVpZ2h0X20YDyABKAISEQoJd2VpZ2h0X2tnGBAgASgCEhkKEWluZGl2aWR1",
-                  "YWxfYXR0YWNrGBEgASgFEhoKEmluZGl2aWR1YWxfZGVmZW5zZRgSIAEoBRIa",
-                  "ChJpbmRpdmlkdWFsX3N0YW1pbmEYEyABKAUSFQoNY3BfbXVsdGlwbGllchgU",
-                  "IAEoBRIQCghwb2tlYmFsbBgVIAEoBRIYChBjYXB0dXJlZF9jZWxsX2lkGBYg",
-                  "ASgEEhgKEGJhdHRsZXNfYXR0YWNrZWQYFyABKAUSGAoQYmF0dGxlc19kZWZl",
-                  "bmRlZBgYIAEoBRIYChBlZ2dfaW5jdWJhdG9yX2lkGBkgASgFEhgKEGNyZWF0",
-                  "aW9uX3RpbWVfbXMYGiABKAQSFAoMbnVtX3VwZ3JhZGVzGBsgASgFEiAKGGFk",
-                  "ZGl0aW9uYWxfY3BfbXVsdGlwbGllchgcIAEoBRIQCghmYXZvcml0ZRgdIAEo",
-                  "BRIQCghuaWNrbmFtZRgeIAEoCRIRCglmcm9tX2ZvcnQYHyABKAUipwEKCk1h",
-                  "cFBva2Vtb24SFQoNc3Bhd25wb2ludF9pZBgBIAEoCRIUCgxlbmNvdW50ZXJf",
-                  "aWQYAiABKAYSJgoKcG9rZW1vbl9pZBgDIAEoDjISLkFsbEVudW0uUG9rZW1v",
-                  "bklkEh8KF2V4cGlyYXRpb25fdGltZXN0YW1wX21zGAQgASgDEhAKCGxhdGl0",
-                  "dWRlGAUgASgBEhEKCWxvbmdpdHVkZRgGIAEoASJpCg1OZWFyYnlQb2tlbW9u",
-                  "EiYKCnBva2Vtb25faWQYASABKA4yEi5BbGxFbnVtLlBva2Vtb25JZBIaChJk",
-                  "aXN0YW5jZV9pbl9tZXRlcnMYAiABKAISFAoMZW5jb3VudGVyX2lkGAMgASgG",
-                  "InwKGERvd25sb2FkU2V0dGluZ3NSZXNwb25zZRINCgVlcnJvchgBIAEoCRIM",
-                  "CgRoYXNoGAIgASgJEkMKCHNldHRpbmdzGAMgASgLMjEuUG9rZW1vbkdvLlJv",
-                  "Y2tldEFQSS5HZW5lcmF0ZWRDb2RlLkdsb2JhbFNldHRpbmdzItoCCg5HbG9i",
-                  "YWxTZXR0aW5ncxJGCg1mb3J0X3NldHRpbmdzGAIgASgLMi8uUG9rZW1vbkdv",
-                  "LlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkZvcnRTZXR0aW5ncxJECgxtYXBf",
-                  "c2V0dGluZ3MYAyABKAsyLi5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRl",
-                  "ZENvZGUuTWFwU2V0dGluZ3MSSAoObGV2ZWxfc2V0dGluZ3MYBCABKAsyMC5Q",
-                  "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuTGV2ZWxTZXR0aW5n",
-                  "cxJQChJpbnZlbnRvcnlfc2V0dGluZ3MYBSABKAsyNC5Qb2tlbW9uR28uUm9j",
-                  "a2V0QVBJLkdlbmVyYXRlZENvZGUuSW52ZW50b3J5U2V0dGluZ3MSHgoWbWlu",
-                  "aW11bV9jbGllbnRfdmVyc2lvbhgGIAEoCSLkAQoMRm9ydFNldHRpbmdzEiAK",
-                  "GGludGVyYWN0aW9uX3JhbmdlX21ldGVycxgBIAEoARIiChptYXhfdG90YWxf",
-                  "ZGVwbG95ZWRfcG9rZW1vbhgCIAEoBRIjChttYXhfcGxheWVyX2RlcGxveWVk",
-                  "X3Bva2Vtb24YAyABKAUSIQoZZGVwbG95X3N0YW1pbmFfbXVsdGlwbGllchgE",
-                  "IAEoARIgChhkZXBsb3lfYXR0YWNrX211bHRpcGxpZXIYBSABKAESJAocZmFy",
-                  "X2ludGVyYWN0aW9uX3JhbmdlX21ldGVycxgGIAEoASKPAgoLTWFwU2V0dGlu",
-                  "Z3MSHQoVcG9rZW1vbl92aXNpYmxlX3JhbmdlGAEgASgBEh0KFXBva2VfbmF2",
-                  "X3JhbmdlX21ldGVycxgCIAEoARIeChZlbmNvdW50ZXJfcmFuZ2VfbWV0ZXJz",
-                  "GAMgASgBEisKI2dldF9tYXBfb2JqZWN0c19taW5fcmVmcmVzaF9zZWNvbmRz",
-                  "GAQgASgCEisKI2dldF9tYXBfb2JqZWN0c19tYXhfcmVmcmVzaF9zZWNvbmRz",
-                  "GAUgASgCEisKI2dldF9tYXBfb2JqZWN0c19taW5fZGlzdGFuY2VfbWV0ZXJz",
-                  "GAYgASgCEhsKE2dvb2dsZV9tYXBzX2FwaV9rZXkYByABKAkiUQoNTGV2ZWxT",
-                  "ZXR0aW5ncxIbChN0cmFpbmVyX2NwX21vZGlmaWVyGAIgASgBEiMKG3RyYWlu",
-                  "ZXJfZGlmZmljdWx0eV9tb2RpZmllchgDIAEoASKAAQoRSW52ZW50b3J5U2V0",
-                  "dGluZ3MSEwoLbWF4X3Bva2Vtb24YASABKAUSFQoNbWF4X2JhZ19pdGVtcxgC",
-                  "IAEoBRIUCgxiYXNlX3Bva2Vtb24YAyABKAUSFgoOYmFzZV9iYWdfaXRlbXMY",
-                  "BCABKAUSEQoJYmFzZV9lZ2dzGAUgASgFIjoKE1BsYXllclVwZGF0ZVJlcXVl",
-                  "c3QSEAoIbGF0aXR1ZGUYASABKAESEQoJbG9uZ2l0dWRlGAIgASgBIq8BChRQ",
-                  "bGF5ZXJVcGRhdGVSZXNwb25zZRJFCg13aWxkX3Bva2Vtb25zGAEgAygLMi4u",
-                  "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLldpbGRQb2tlbW9u",
-                  "EjoKBWZvcnRzGAIgAygLMisuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0",
-                  "ZWRDb2RlLkZvcnREYXRhEhQKDGZvcnRzX25lYXJieRgDIAEoBSIeChxEb3du",
-                  "bG9hZEl0ZW1UZW1wbGF0ZXNSZXF1ZXN0ItsKCh1Eb3dubG9hZEl0ZW1UZW1w",
-                  "bGF0ZXNSZXNwb25zZRIPCgdzdWNjZXNzGAEgASgIEmUKDml0ZW1fdGVtcGxh",
-                  "dGVzGAIgAygLMk0uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2Rl",
-                  "LkRvd25sb2FkSXRlbVRlbXBsYXRlc1Jlc3BvbnNlLkl0ZW1UZW1wbGF0ZRIU",
-                  "Cgx0aW1lc3RhbXBfbXMYAyABKAQaqwkKDEl0ZW1UZW1wbGF0ZRITCgt0ZW1w",
-                  "bGF0ZV9pZBgBIAEoCRJMChBwb2tlbW9uX3NldHRpbmdzGAIgASgLMjIuUG9r",
-                  "ZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlBva2Vtb25TZXR0aW5n",
-                  "cxJGCg1pdGVtX3NldHRpbmdzGAMgASgLMi8uUG9rZW1vbkdvLlJvY2tldEFQ",
-                  "SS5HZW5lcmF0ZWRDb2RlLkl0ZW1TZXR0aW5ncxJGCg1tb3ZlX3NldHRpbmdz",
-                  "GAQgASgLMi8uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLk1v",
-                  "dmVTZXR0aW5ncxJXChZtb3ZlX3NlcXVlbmNlX3NldHRpbmdzGAUgASgLMjcu",
-                  "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLk1vdmVTZXF1ZW5j",
-                  "ZVNldHRpbmdzElAKDnR5cGVfZWZmZWN0aXZlGAggASgLMjguUG9rZW1vbkdv",
-                  "LlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlR5cGVFZmZlY3RpdmVTZXR0aW5n",
-                  "cxJICg5iYWRnZV9zZXR0aW5ncxgKIAEoCzIwLlBva2Vtb25Hby5Sb2NrZXRB",
-                  "UEkuR2VuZXJhdGVkQ29kZS5CYWRnZVNldHRpbmdzEkEKBmNhbWVyYRgLIAEo",
-                  "CzIxLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5DYW1lcmFT",
-                  "ZXR0aW5ncxJMCgxwbGF5ZXJfbGV2ZWwYDCABKAsyNi5Qb2tlbW9uR28uUm9j",
-                  "a2V0QVBJLkdlbmVyYXRlZENvZGUuUGxheWVyTGV2ZWxTZXR0aW5ncxJGCgln",
-                  "eW1fbGV2ZWwYDSABKAsyMy5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRl",
-                  "ZENvZGUuR3ltTGV2ZWxTZXR0aW5ncxJNCg9iYXR0bGVfc2V0dGluZ3MYDiAB",
-                  "KAsyNC5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuR3ltQmF0",
-                  "dGxlU2V0dGluZ3MSUAoSZW5jb3VudGVyX3NldHRpbmdzGA8gASgLMjQuUG9r",
-                  "ZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkVuY291bnRlclNldHRp",
-                  "bmdzEksKEGlhcF9pdGVtX2Rpc3BsYXkYECABKAsyMS5Qb2tlbW9uR28uUm9j",
-                  "a2V0QVBJLkdlbmVyYXRlZENvZGUuSWFwSXRlbURpc3BsYXkSRAoMaWFwX3Nl",
-                  "dHRpbmdzGBEgASgLMi4uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRD",
-                  "b2RlLklhcFNldHRpbmdzElMKEHBva2Vtb25fdXBncmFkZXMYEiABKAsyOS5Q",
-                  "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG9rZW1vblVwZ3Jh",
-                  "ZGVTZXR0aW5ncxJRCg9lcXVpcHBlZF9iYWRnZXMYEyABKAsyOC5Qb2tlbW9u",
-                  "R28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuRXF1aXBwZWRCYWRnZVNldHRp",
-                  "bmdzImkKFVVzZUl0ZW1DYXB0dXJlUmVxdWVzdBIgCgdpdGVtX2lkGAEgASgO",
-                  "Mg8uQWxsRW51bS5JdGVtSWQSFAoMZW5jb3VudGVyX2lkGAIgASgGEhgKEHNw",
-                  "YXduX3BvaW50X2d1aWQYAyABKAkisQEKFlVzZUl0ZW1DYXB0dXJlUmVzcG9u",
-                  "c2USDwoHc3VjY2VzcxgBIAEoCBIZChFpdGVtX2NhcHR1cmVfbXVsdBgCIAEo",
-                  "ARIWCg5pdGVtX2ZsZWVfbXVsdBgDIAEoARIVCg1zdG9wX21vdmVtZW50GAQg",
-                  "ASgIEhMKC3N0b3BfYXR0YWNrGAUgASgIEhIKCnRhcmdldF9tYXgYBiABKAgS",
-                  "EwoLdGFyZ2V0X3Nsb3cYByABKAgiKwoVUmVsZWFzZVBva2Vtb25SZXF1ZXN0",
-                  "EhIKCnBva2Vtb25faWQYASABKAYi3wEKFlJlbGVhc2VQb2tlbW9uUmVzcG9u",
-                  "c2USUAoGcmVzdWx0GAEgASgOMkAuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5l",
-                  "cmF0ZWRDb2RlLlJlbGVhc2VQb2tlbW9uUmVzcG9uc2UuUmVzdWx0EhUKDWNh",
-                  "bmR5X2F3YXJkZWQYAiABKAUiXAoGUmVzdWx0EgkKBVVOU0VUEAASCwoHU1VD",
-                  "Q0VTUxABEhQKEFBPS0VNT05fREVQTE9ZRUQQAhIKCgZGQUlMRUQQAxIYChRF",
-                  "UlJPUl9QT0tFTU9OX0lTX0VHRxAEIhcKFUdldEhhdGNoZWRFZ2dzUmVxdWVz",
-                  "dCKOAQoWR2V0SGF0Y2hlZEVnZ3NSZXNwb25zZRIPCgdzdWNjZXNzGAEgASgI",
-                  "EhYKCnBva2Vtb25faWQYAiADKARCAhABEhoKEmV4cGVyaWVuY2VfYXdhcmRl",
-                  "ZBgDIAMoBRIVCg1jYW5keV9hd2FyZGVkGAQgAygFEhgKEHN0YXJkdXN0X2F3",
-                  "YXJkZWQYBSADKAUihgEKEUZvcnRTZWFyY2hSZXF1ZXN0Eg8KB2ZvcnRfaWQY",
-                  "ASABKAkSFwoPcGxheWVyX2xhdGl0dWRlGAIgASgBEhgKEHBsYXllcl9sb25n",
-                  "aXR1ZGUYAyABKAESFQoNZm9ydF9sYXRpdHVkZRgEIAEoARIWCg5mb3J0X2xv",
-                  "bmdpdHVkZRgFIAEoASKtBAoSRm9ydFNlYXJjaFJlc3BvbnNlEkwKBnJlc3Vs",
-                  "dBgBIAEoDjI8LlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5G",
-                  "b3J0U2VhcmNoUmVzcG9uc2UuUmVzdWx0ElYKDWl0ZW1zX2F3YXJkZWQYAiAD",
-                  "KAsyPy5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuRm9ydFNl",
-                  "YXJjaFJlc3BvbnNlLkl0ZW1Bd2FyZBIUCgxnZW1zX2F3YXJkZWQYAyABKAUS",
-                  "SAoQcG9rZW1vbl9kYXRhX2VnZxgEIAEoCzIuLlBva2Vtb25Hby5Sb2NrZXRB",
-                  "UEkuR2VuZXJhdGVkQ29kZS5Qb2tlbW9uRGF0YRIaChJleHBlcmllbmNlX2F3",
-                  "YXJkZWQYBSABKAUSJgoeY29vbGRvd25fY29tcGxldGVfdGltZXN0YW1wX21z",
-                  "GAYgASgDEiIKGmNoYWluX2hhY2tfc2VxdWVuY2VfbnVtYmVyGAcgASgFGkEK",
-                  "CUl0ZW1Bd2FyZBIgCgdpdGVtX2lkGAEgASgOMg8uQWxsRW51bS5JdGVtSWQS",
-                  "EgoKaXRlbV9jb3VudBgCIAEoBSJmCgZSZXN1bHQSEQoNTk9fUkVTVUxUX1NF",
-                  "VBAAEgsKB1NVQ0NFU1MQARIQCgxPVVRfT0ZfUkFOR0UQAhIWChJJTl9DT09M",
-                  "RE9XTl9QRVJJT0QQAxISCg5JTlZFTlRPUllfRlVMTBAEIkoKEkZvcnREZXRh",
-                  "aWxzUmVxdWVzdBIPCgdmb3J0X2lkGAEgASgJEhAKCGxhdGl0dWRlGAIgASgB",
-                  "EhEKCWxvbmdpdHVkZRgDIAEoASKHAwoTRm9ydERldGFpbHNSZXNwb25zZRIP",
-                  "Cgdmb3J0X2lkGAEgASgJEiYKCnRlYW1fY29sb3IYAiABKA4yEi5BbGxFbnVt",
-                  "LlRlYW1Db2xvchJECgxwb2tlbW9uX2RhdGEYAyABKAsyLi5Qb2tlbW9uR28u",
-                  "Um9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG9rZW1vbkRhdGESDAoEbmFtZRgE",
-                  "IAEoCRISCgppbWFnZV91cmxzGAUgAygJEgoKAmZwGAYgASgFEg8KB3N0YW1p",
-                  "bmEYByABKAUSEwoLbWF4X3N0YW1pbmEYCCABKAUSHwoEdHlwZRgJIAEoDjIR",
-                  "LkFsbEVudW0uRm9ydFR5cGUSEAoIbGF0aXR1ZGUYCiABKAESEQoJbG9uZ2l0",
-                  "dWRlGAsgASgBEhMKC2Rlc2NyaXB0aW9uGAwgASgJEkIKCW1vZGlmaWVycxgN",
-                  "IAMoCzIvLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5Gb3J0",
-                  "TW9kaWZpZXIicwoMRm9ydE1vZGlmaWVyEiAKB2l0ZW1faWQYASABKA4yDy5B",
-                  "bGxFbnVtLkl0ZW1JZBIfChdleHBpcmF0aW9uX3RpbWVzdGFtcF9tcxgCIAEo",
-                  "AxIgChhkZXBsb3llcl9wbGF5ZXJfY29kZW5hbWUYAyABKAkicgoQRW5jb3Vu",
-                  "dGVyUmVxdWVzdBIUCgxlbmNvdW50ZXJfaWQYASABKAYSFQoNc3Bhd25wb2lu",
-                  "dF9pZBgCIAEoCRIXCg9wbGF5ZXJfbGF0aXR1ZGUYAyABKAESGAoQcGxheWVy",
-                  "X2xvbmdpdHVkZRgEIAEoASLNBAoRRW5jb3VudGVyUmVzcG9uc2USRAoMd2ls",
-                  "ZF9wb2tlbW9uGAEgASgLMi4uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0",
-                  "ZWRDb2RlLldpbGRQb2tlbW9uElMKCmJhY2tncm91bmQYAiABKA4yPy5Qb2tl",
-                  "bW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuRW5jb3VudGVyUmVzcG9u",
-                  "c2UuQmFja2dyb3VuZBJLCgZzdGF0dXMYAyABKA4yOy5Qb2tlbW9uR28uUm9j",
-                  "a2V0QVBJLkdlbmVyYXRlZENvZGUuRW5jb3VudGVyUmVzcG9uc2UuU3RhdHVz",
-                  "ElIKE2NhcHR1cmVfcHJvYmFiaWxpdHkYBCABKAsyNS5Qb2tlbW9uR28uUm9j",
-                  "a2V0QVBJLkdlbmVyYXRlZENvZGUuQ2FwdHVyZVByb2JhYmlsaXR5IiIKCkJh",
-                  "Y2tncm91bmQSCAoEUEFSSxAAEgoKBkRFU0VSVBABItcBCgZTdGF0dXMSEwoP",
-                  "RU5DT1VOVEVSX0VSUk9SEAASFQoRRU5DT1VOVEVSX1NVQ0NFU1MQARIXChNF",
-                  "TkNPVU5URVJfTk9UX0ZPVU5EEAISFAoQRU5DT1VOVEVSX0NMT1NFRBADEhoK",
-                  "FkVOQ09VTlRFUl9QT0tFTU9OX0ZMRUQQBBIaChZFTkNPVU5URVJfTk9UX0lO",
-                  "X1JBTkdFEAUSHgoaRU5DT1VOVEVSX0FMUkVBRFlfSEFQUEVORUQQBhIaChZQ",
-                  "T0tFTU9OX0lOVkVOVE9SWV9GVUxMEAciewoSQ2FwdHVyZVByb2JhYmlsaXR5",
-                  "EiYKDXBva2ViYWxsX3R5cGUYASADKA4yDy5BbGxFbnVtLkl0ZW1JZBIbChNj",
-                  "YXB0dXJlX3Byb2JhYmlsaXR5GAIgAygCEiAKGHJldGljbGVfZGlmZmljdWx0",
-                  "eV9zY2FsZRgMIAEoASJwChREaXNrRW5jb3VudGVyUmVxdWVzdBIUCgxlbmNv",
-                  "dW50ZXJfaWQYASABKAYSDwoHZm9ydF9pZBgCIAEoCRIXCg9wbGF5ZXJfbGF0",
-                  "aXR1ZGUYAyABKAESGAoQcGxheWVyX2xvbmdpdHVkZRgEIAEoASKIAwoVRGlz",
-                  "a0VuY291bnRlclJlc3BvbnNlEk8KBnJlc3VsdBgBIAEoDjI/LlBva2Vtb25H",
-                  "by5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5EaXNrRW5jb3VudGVyUmVzcG9u",
-                  "c2UuUmVzdWx0EkQKDHBva2Vtb25fZGF0YRgCIAEoCzIuLlBva2Vtb25Hby5S",
-                  "b2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5Qb2tlbW9uRGF0YRJSChNjYXB0dXJl",
-                  "X3Byb2JhYmlsaXR5GAMgASgLMjUuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5l",
-                  "cmF0ZWRDb2RlLkNhcHR1cmVQcm9iYWJpbGl0eSKDAQoGUmVzdWx0EgsKB1VO",
-                  "S05PV04QABILCgdTVUNDRVNTEAESEQoNTk9UX0FWQUlMQUJMRRACEhAKDE5P",
-                  "VF9JTl9SQU5HRRADEh4KGkVOQ09VTlRFUl9BTFJFQURZX0ZJTklTSEVEEAQS",
-                  "GgoWUE9LRU1PTl9JTlZFTlRPUllfRlVMTBAFIsMBChNDYXRjaFBva2Vtb25S",
-                  "ZXF1ZXN0EhQKDGVuY291bnRlcl9pZBgBIAEoBhIQCghwb2tlYmFsbBgCIAEo",
-                  "BRIfChdub3JtYWxpemVkX3JldGljbGVfc2l6ZRgDIAEoARIYChBzcGF3bl9w",
-                  "b2ludF9ndWlkGAQgASgJEhMKC2hpdF9wb2tlbW9uGAUgASgIEhUKDXNwaW5f",
-                  "bW9kaWZpZXIYBiABKAESHQoVTm9ybWFsaXplZEhpdFBvc2l0aW9uGAcgASgB",
-                  "IsYCChRDYXRjaFBva2Vtb25SZXNwb25zZRJTCgZzdGF0dXMYASABKA4yQy5Q",
-                  "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuQ2F0Y2hQb2tlbW9u",
-                  "UmVzcG9uc2UuQ2F0Y2hTdGF0dXMSFAoMbWlzc19wZXJjZW50GAIgASgBEhsK",
-                  "E2NhcHR1cmVkX3Bva2Vtb25faWQYAyABKAQSPwoGc2NvcmVzGAQgASgLMi8u",
-                  "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkNhcHR1cmVTY29y",
-                  "ZSJlCgtDYXRjaFN0YXR1cxIPCgtDQVRDSF9FUlJPUhAAEhEKDUNBVENIX1NV",
-                  "Q0NFU1MQARIQCgxDQVRDSF9FU0NBUEUQAhIOCgpDQVRDSF9GTEVFEAMSEAoM",
-                  "Q0FUQ0hfTUlTU0VEEAQiaQoMQ2FwdHVyZVNjb3JlEiwKDWFjdGl2aXR5X3R5",
-                  "cGUYASADKA4yFS5BbGxFbnVtLkFjdGl2aXR5VHlwZRIKCgJ4cBgCIAMoBRIN",
-                  "CgVjYW5keRgDIAMoBRIQCghzdGFyZHVzdBgEIAMoBSIbChlDaGVja0F3YXJk",
-                  "ZWRCYWRnZXNSZXF1ZXN0IncKGkNoZWNrQXdhcmRlZEJhZGdlc1Jlc3BvbnNl",
-                  "Eg8KB3N1Y2Nlc3MYASABKAgSKgoOYXdhcmRlZF9iYWRnZXMYAiADKA4yEi5B",
-                  "bGxFbnVtLkJhZGdlVHlwZRIcChRhd2FyZGVkX2JhZGdlX2xldmVscxgDIAMo",
-                  "BSJ5ChVFcXVpcHBlZEJhZGdlU2V0dGluZ3MSHwoXZXF1aXBfYmFkZ2VfY29v",
-                  "bGRvd25fbXMYASABKAMSHwoXY2F0Y2hfcHJvYmFiaWxpdHlfYm9udXMYAiAD",
-                  "KAISHgoWZmxlZV9wcm9iYWJpbGl0eV9ib251cxgDIAMoAiKEAQoWUG9rZW1v",
-                  "blVwZ3JhZGVTZXR0aW5ncxIaChJ1cGdyYWRlc19wZXJfbGV2ZWwYASABKAUS",
-                  "IwobYWxsb3dlZF9sZXZlbHNfYWJvdmVfcGxheWVyGAIgASgFEhIKCmNhbmR5",
-                  "X2Nvc3QYAyADKAUSFQoNc3RhcmR1c3RfY29zdBgEIAMoBSKMAgoLSWFwU2V0",
-                  "dGluZ3MSGQoRZGFpbHlfYm9udXNfY29pbnMYASABKAUSKAogZGFpbHlfZGVm",
-                  "ZW5kZXJfYm9udXNfcGVyX3Bva2Vtb24YAiADKAUSKgoiZGFpbHlfZGVmZW5k",
-                  "ZXJfYm9udXNfbWF4X2RlZmVuZGVycxgDIAEoBRIlCh1kYWlseV9kZWZlbmRl",
-                  "cl9ib251c19jdXJyZW5jeRgEIAMoCRIiChptaW5fdGltZV9iZXR3ZWVuX2Ns",
-                  "YWltc19tcxgFIAEoAxIbChNkYWlseV9ib251c19lbmFibGVkGAYgASgIEiQK",
-                  "HGRhaWx5X2RlZmVuZGVyX2JvbnVzX2VuYWJsZWQYByABKAgilAEKDklhcEl0",
-                  "ZW1EaXNwbGF5EgsKA3NrdRgBIAEoCRIuCghjYXRlZ29yeRgCIAEoDjIcLkFs",
-                  "bEVudW0uSG9sb0lhcEl0ZW1DYXRlZ29yeRISCgpzb3J0X29yZGVyGAMgASgF",
-                  "EiEKCGl0ZW1faWRzGAQgAygOMg8uQWxsRW51bS5JdGVtSWQSDgoGY291bnRz",
-                  "GAUgAygFIq4BChFFbmNvdW50ZXJTZXR0aW5ncxIcChRzcGluX2JvbnVzX3Ro",
-                  "cmVzaG9sZBgBIAEoAhIhChlleGNlbGxlbnRfdGhyb3dfdGhyZXNob2xkGAIg",
-                  "ASgCEh0KFWdyZWF0X3Rocm93X3RocmVzaG9sZBgDIAEoAhIcChRuaWNlX3Ro",
-                  "cm93X3RocmVzaG9sZBgEIAEoAhIbChNtaWxlc3RvbmVfdGhyZXNob2xkGAUg",
-                  "ASgFIsYDChFHeW1CYXR0bGVTZXR0aW5ncxIWCg5lbmVyZ3lfcGVyX3NlYxgB",
-                  "IAEoAhIZChFkb2RnZV9lbmVyZ3lfY29zdBgCIAEoAhIYChByZXRhcmdldF9z",
-                  "ZWNvbmRzGAMgASgCEh0KFWVuZW15X2F0dGFja19pbnRlcnZhbBgEIAEoAhIe",
-                  "ChZhdHRhY2tfc2VydmVyX2ludGVydmFsGAUgASgCEh4KFnJvdW5kX2R1cmF0",
-                  "aW9uX3NlY29uZHMYBiABKAISIwobYm9udXNfdGltZV9wZXJfYWxseV9zZWNv",
-                  "bmRzGAcgASgCEiQKHG1heGltdW1fYXR0YWNrZXJzX3Blcl9iYXR0bGUYCCAB",
-                  "KAUSKQohc2FtZV90eXBlX2F0dGFja19ib251c19tdWx0aXBsaWVyGAkgASgC",
-                  "EhYKDm1heGltdW1fZW5lcmd5GAogASgFEiQKHGVuZXJneV9kZWx0YV9wZXJf",
-                  "aGVhbHRoX2xvc3QYCyABKAISGQoRZG9kZ2VfZHVyYXRpb25fbXMYDCABKAUS",
-                  "HAoUbWluaW11bV9wbGF5ZXJfbGV2ZWwYDSABKAUSGAoQc3dhcF9kdXJhdGlv",
-                  "bl9tcxgOIAEoBSJ3ChBHeW1MZXZlbFNldHRpbmdzEhsKE3JlcXVpcmVkX2V4",
-                  "cGVyaWVuY2UYASADKAUSFAoMbGVhZGVyX3Nsb3RzGAIgAygFEhUKDXRyYWlu",
-                  "ZXJfc2xvdHMYAyADKAUSGQoRc2VhcmNoX3JvbGxfYm9udXMYBCADKAUinQEK",
-                  "E1BsYXllckxldmVsU2V0dGluZ3MSEAoIcmFua19udW0YASADKAUSGwoTcmVx",
-                  "dWlyZWRfZXhwZXJpZW5jZRgCIAMoBRIVCg1jcF9tdWx0aXBsaWVyGAMgAygC",
-                  "EhwKFG1heF9lZ2dfcGxheWVyX2xldmVsGAQgASgFEiIKGm1heF9lbmNvdW50",
-                  "ZXJfcGxheWVyX2xldmVsGAUgASgFIsUDCg5DYW1lcmFTZXR0aW5ncxITCgtu",
-                  "ZXh0X2NhbWVyYRgBIAEoCRIzCg1pbnRlcnBvbGF0aW9uGAIgAygOMhwuQWxs",
-                  "RW51bS5DYW1lcmFJbnRlcnBvbGF0aW9uEioKC3RhcmdldF90eXBlGAMgAygO",
-                  "MhUuQWxsRW51bS5DYW1lcmFUYXJnZXQSFQoNZWFzZV9pbl9zcGVlZBgEIAMo",
-                  "AhIWCg5lYXN0X291dF9zcGVlZBgFIAMoAhIYChBkdXJhdGlvbl9zZWNvbmRz",
-                  "GAYgAygCEhQKDHdhaXRfc2Vjb25kcxgHIAMoAhIaChJ0cmFuc2l0aW9uX3Nl",
-                  "Y29uZHMYCCADKAISFAoMYW5nbGVfZGVncmVlGAkgAygCEhsKE2FuZ2xlX29m",
-                  "ZnNldF9kZWdyZWUYCiADKAISFAoMcGl0Y2hfZGVncmVlGAsgAygCEhsKE3Bp",
-                  "dGNoX29mZnNldF9kZWdyZWUYDCADKAISEwoLcm9sbF9kZWdyZWUYDSADKAIS",
-                  "FwoPZGlzdGFuY2VfbWV0ZXJzGA4gAygCEhYKDmhlaWdodF9wZXJjZW50GA8g",
-                  "AygCEhYKDnZlcnRfY3RyX3JhdGlvGBAgAygCIlwKDUJhZGdlU2V0dGluZ3MS",
-                  "JgoKYmFkZ2VfdHlwZRgBIAEoDjISLkFsbEVudW0uQmFkZ2VUeXBlEhIKCmJh",
-                  "ZGdlX3JhbmsYAiABKAUSDwoHdGFyZ2V0cxgDIAMoBSJZChVUeXBlRWZmZWN0",
-                  "aXZlU2V0dGluZ3MSFQoNYXR0YWNrX3NjYWxhchgBIAMoAhIpCgthdHRhY2tf",
-                  "dHlwZRgCIAEoDjIULkFsbEVudW0uUG9rZW1vblR5cGUiKAoUTW92ZVNlcXVl",
-                  "bmNlU2V0dGluZ3MSEAoIc2VxdWVuY2UYASADKAkipwMKDE1vdmVTZXR0aW5n",
-                  "cxIxCgttb3ZlbWVudF9pZBgBIAEoDjIcLkFsbEVudW0uUG9rZW1vbk1vdmVt",
-                  "ZW50VHlwZRIUCgxhbmltYXRpb25faWQYAiABKAUSKgoMcG9rZW1vbl90eXBl",
-                  "GAMgASgOMhQuQWxsRW51bS5Qb2tlbW9uVHlwZRINCgVwb3dlchgEIAEoAhIX",
-                  "Cg9hY2N1cmFjeV9jaGFuY2UYBSABKAISFwoPY3JpdGljYWxfY2hhbmNlGAYg",
-                  "ASgCEhMKC2hlYWxfc2NhbGFyGAcgASgCEhsKE3N0YW1pbmFfbG9zc19zY2Fs",
-                  "YXIYCCABKAISGQoRdHJhaW5lcl9sZXZlbF9taW4YCSABKAUSGQoRdHJhaW5l",
-                  "cl9sZXZlbF9tYXgYCiABKAUSEAoIdmZ4X25hbWUYCyABKAkSEwoLZHVyYXRp",
-                  "b25fbXMYDCABKAUSHgoWZGFtYWdlX3dpbmRvd19zdGFydF9tcxgNIAEoBRIc",
-                  "ChRkYW1hZ2Vfd2luZG93X2VuZF9tcxgOIAEoBRIUCgxlbmVyZ3lfZGVsdGEY",
-                  "DyABKAUivgYKD1Bva2Vtb25TZXR0aW5ncxImCgpwb2tlbW9uX2lkGAEgASgO",
-                  "MhIuQWxsRW51bS5Qb2tlbW9uSWQSEwoLbW9kZWxfc2NhbGUYAyABKAISIgoE",
-                  "dHlwZRgEIAEoDjIULkFsbEVudW0uUG9rZW1vblR5cGUSJAoGdHlwZV8yGAUg",
-                  "ASgOMhQuQWxsRW51bS5Qb2tlbW9uVHlwZRJDCgZjYW1lcmEYBiABKAsyMy5Q",
-                  "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuQ2FtZXJhQXR0cmli",
-                  "dXRlcxJJCgllbmNvdW50ZXIYByABKAsyNi5Qb2tlbW9uR28uUm9ja2V0QVBJ",
-                  "LkdlbmVyYXRlZENvZGUuRW5jb3VudGVyQXR0cmlidXRlcxJBCgVzdGF0cxgI",
-                  "IAEoCzIyLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5TdGF0",
-                  "c0F0dHJpYnV0ZXMSKQoLcXVpY2tfbW92ZXMYCSADKA4yFC5BbGxFbnVtLlBv",
-                  "a2Vtb25Nb3ZlEi0KD2NpbmVtYXRpY19tb3ZlcxgKIAMoDjIULkFsbEVudW0u",
-                  "UG9rZW1vbk1vdmUSFgoOYW5pbWF0aW9uX3RpbWUYCyADKAISKQoNZXZvbHV0",
-                  "aW9uX2lkcxgMIAMoDjISLkFsbEVudW0uUG9rZW1vbklkEhYKDmV2b2x1dGlv",
-                  "bl9waXBzGA0gASgFEiQKBWNsYXNzGA4gASgOMhUuQWxsRW51bS5Qb2tlbW9u",
-                  "Q2xhc3MSGAoQcG9rZWRleF9oZWlnaHRfbRgPIAEoAhIZChFwb2tlZGV4X3dl",
-                  "aWdodF9rZxgQIAEoAhItChFwYXJlbnRfcG9rZW1vbl9pZBgRIAEoDjISLkFs",
-                  "bEVudW0uUG9rZW1vbklkEhYKDmhlaWdodF9zdGRfZGV2GBIgASgCEhYKDndl",
-                  "aWdodF9zdGRfZGV2GBMgASgCEhwKFGttX2Rpc3RhbmNlX3RvX2hhdGNoGBQg",
-                  "ASgCEisKCWZhbWlseV9pZBgVIAEoDjIYLkFsbEVudW0uUG9rZW1vbkZhbWls",
-                  "eUlkEhcKD2NhbmR5X3RvX2V2b2x2ZRgWIAEoBSKXAQoQQ2FtZXJhQXR0cmli",
-                  "dXRlcxIVCg1kaXNrX3JhZGl1c19tGAEgASgCEhkKEWN5bGluZGVyX3JhZGl1",
-                  "c19tGAIgASgCEhkKEWN5bGluZGVyX2hlaWdodF9tGAMgASgCEhkKEWN5bGlu",
-                  "ZGVyX2dyb3VuZF9tGAQgASgCEhsKE3Nob3VsZGVyX21vZGVfc2NhbGUYBSAB",
-                  "KAIinQIKE0VuY291bnRlckF0dHJpYnV0ZXMSGQoRYmFzZV9jYXB0dXJlX3Jh",
-                  "dGUYASABKAISFgoOYmFzZV9mbGVlX3JhdGUYAiABKAISGgoSY29sbGlzaW9u",
-                  "X3JhZGl1c19tGAMgASgCEhoKEmNvbGxpc2lvbl9oZWlnaHRfbRgEIAEoAhIf",
-                  "Chdjb2xsaXNpb25faGVhZF9yYWRpdXNfbRgFIAEoAhIzCg1tb3ZlbWVudF90",
-                  "eXBlGAYgASgOMhwuQWxsRW51bS5Qb2tlbW9uTW92ZW1lbnRUeXBlEhgKEG1v",
-                  "dmVtZW50X3RpbWVyX3MYByABKAISEwoLanVtcF90aW1lX3MYCCABKAISFgoO",
-                  "YXR0YWNrX3RpbWVyX3MYCSABKAIibgoPU3RhdHNBdHRyaWJ1dGVzEhQKDGJh",
-                  "c2Vfc3RhbWluYRgBIAEoBRITCgtiYXNlX2F0dGFjaxgCIAEoBRIUCgxiYXNl",
-                  "X2RlZmVuc2UYAyABKAUSGgoSZG9kZ2VfZW5lcmd5X2RlbHRhGAggASgFIpwH",
-                  "CgxJdGVtU2V0dGluZ3MSIAoHaXRlbV9pZBgBIAEoDjIPLkFsbEVudW0uSXRl",
-                  "bUlkEiQKCWl0ZW1fdHlwZRgCIAEoDjIRLkFsbEVudW0uSXRlbVR5cGUSJwoI",
-                  "Y2F0ZWdvcnkYAyABKA4yFS5BbGxFbnVtLkl0ZW1DYXRlZ29yeRIRCglkcm9w",
-                  "X2ZyZXEYBCABKAISGgoSZHJvcF90cmFpbmVyX2xldmVsGAUgASgFEkcKCHBv",
-                  "a2ViYWxsGAYgASgLMjUuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRD",
-                  "b2RlLlBva2ViYWxsQXR0cmlidXRlcxJDCgZwb3Rpb24YByABKAsyMy5Qb2tl",
-                  "bW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG90aW9uQXR0cmlidXRl",
-                  "cxJDCgZyZXZpdmUYCCABKAsyMy5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVy",
-                  "YXRlZENvZGUuUmV2aXZlQXR0cmlidXRlcxJDCgZiYXR0bGUYCSABKAsyMy5Q",
-                  "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuQmF0dGxlQXR0cmli",
-                  "dXRlcxI/CgRmb29kGAogASgLMjEuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5l",
-                  "cmF0ZWRDb2RlLkZvb2RBdHRyaWJ1dGVzElgKEWludmVudG9yeV91cGdyYWRl",
-                  "GAsgASgLMj0uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLklu",
-                  "dmVudG9yeVVwZ3JhZGVBdHRyaWJ1dGVzEk4KCHhwX2Jvb3N0GAwgASgLMjwu",
-                  "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkV4cGVyaWVuY2VC",
-                  "b29zdEF0dHJpYnV0ZXMSRQoHaW5jZW5zZRgNIAEoCzI0LlBva2Vtb25Hby5S",
-                  "b2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5JbmNlbnNlQXR0cmlidXRlcxJQCg1l",
-                  "Z2dfaW5jdWJhdG9yGA4gASgLMjkuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5l",
-                  "cmF0ZWRDb2RlLkVnZ0luY3ViYXRvckF0dHJpYnV0ZXMSUAoNZm9ydF9tb2Rp",
-                  "ZmllchgPIAEoCzI5LlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29k",
-                  "ZS5Gb3J0TW9kaWZpZXJBdHRyaWJ1dGVzIicKEEJhdHRsZUF0dHJpYnV0ZXMS",
-                  "EwoLc3RhX3BlcmNlbnQYASABKAIidgoWRWdnSW5jdWJhdG9yQXR0cmlidXRl",
-                  "cxIxCg5pbmN1YmF0b3JfdHlwZRgBIAEoDjIZLkFsbEVudW0uRWdnSW5jdWJh",
-                  "dG9yVHlwZRIMCgR1c2VzGAIgASgFEhsKE2Rpc3RhbmNlX211bHRpcGxpZXIY",
-                  "AyABKAIiTQoZRXhwZXJpZW5jZUJvb3N0QXR0cmlidXRlcxIVCg14cF9tdWx0",
-                  "aXBsaWVyGAEgASgCEhkKEWJvb3N0X2R1cmF0aW9uX21zGAIgASgFIm8KDkZv",
-                  "b2RBdHRyaWJ1dGVzEigKC2l0ZW1fZWZmZWN0GAEgAygOMhMuQWxsRW51bS5J",
-                  "dGVtRWZmZWN0EhsKE2l0ZW1fZWZmZWN0X3BlcmNlbnQYAiADKAISFgoOZ3Jv",
-                  "d3RoX3BlcmNlbnQYAyABKAIiYgoWRm9ydE1vZGlmaWVyQXR0cmlidXRlcxIh",
-                  "Chltb2RpZmllcl9saWZldGltZV9zZWNvbmRzGAEgASgFEiUKHXRyb3lfZGlz",
-                  "a19udW1fcG9rZW1vbl9zcGF3bmVkGAIgASgFIskCChFJbmNlbnNlQXR0cmli",
-                  "dXRlcxIgChhpbmNlbnNlX2xpZmV0aW1lX3NlY29uZHMYASABKAUSKgoMcG9r",
-                  "ZW1vbl90eXBlGAIgAygOMhQuQWxsRW51bS5Qb2tlbW9uVHlwZRIoCiBwb2tl",
-                  "bW9uX2luY2Vuc2VfdHlwZV9wcm9iYWJpbGl0eRgDIAEoAhIwCihzdGFuZGlu",
-                  "Z190aW1lX2JldHdlZW5fZW5jb3VudGVyc19zZWNvbmRzGAQgASgFEi0KJW1v",
-                  "dmluZ190aW1lX2JldHdlZW5fZW5jb3VudGVyX3NlY29uZHMYBSABKAUSNQot",
-                  "ZGlzdGFuY2VfcmVxdWlyZWRfZm9yX3Nob3J0ZXJfaW50ZXJ2YWxfbWV0ZXJz",
-                  "GAYgASgFEiQKHHBva2Vtb25fYXR0cmFjdGVkX2xlbmd0aF9zZWMYByABKAUi",
-                  "bQoaSW52ZW50b3J5VXBncmFkZUF0dHJpYnV0ZXMSGgoSYWRkaXRpb25hbF9z",
-                  "dG9yYWdlGAEgASgFEjMKDHVwZ3JhZGVfdHlwZRgCIAEoDjIdLkFsbEVudW0u",
-                  "SW52ZW50b3J5VXBncmFkZVR5cGUijAEKElBva2ViYWxsQXR0cmlidXRlcxIo",
-                  "CgtpdGVtX2VmZmVjdBgBIAEoDjITLkFsbEVudW0uSXRlbUVmZmVjdBIVCg1j",
-                  "YXB0dXJlX211bHRpGAIgASgCEhwKFGNhcHR1cmVfbXVsdGlfZWZmZWN0GAMg",
-                  "ASgCEhcKD2l0ZW1fZWZmZWN0X21vZBgEIAEoAiI7ChBQb3Rpb25BdHRyaWJ1",
-                  "dGVzEhMKC3N0YV9wZXJjZW50GAEgASgCEhIKCnN0YV9hbW91bnQYAiABKAUi",
-                  "JwoQUmV2aXZlQXR0cmlidXRlcxITCgtzdGFfcGVyY2VudBgBIAEoAiIkCg9U",
-                  "cmFuc2ZlclBva2Vtb24SEQoJUG9rZW1vbklkGAEgASgGIjoKElRyYW5zZmVy",
-                  "UG9rZW1vbk91dBIOCgZTdGF0dXMYASABKAUSFAoMQ2FuZHlBd2FyZGVkGAIg",
-                  "ASgFIiIKDUV2b2x2ZVBva2Vtb24SEQoJUG9rZW1vbklkGAEgASgGIqoDChBF",
-                  "dm9sdmVQb2tlbW9uT3V0ElcKBlJlc3VsdBgBIAEoDjJHLlBva2Vtb25Hby5S",
-                  "b2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5Fdm9sdmVQb2tlbW9uT3V0LkV2b2x2",
-                  "ZVBva2Vtb25TdGF0dXMSQgoORXZvbHZlZFBva2Vtb24YAiABKAsyKi5Qb2tl",
-                  "bW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG9rZW1vbhISCgpFeHBB",
-                  "d2FyZGVkGAMgASgFEhQKDENhbmR5QXdhcmRlZBgEIAEoBSLOAQoTRXZvbHZl",
-                  "UG9rZW1vblN0YXR1cxIZChVQT0tFTU9OX0VWT0xWRURfVU5TRVQQABIbChdQ",
-                  "T0tFTU9OX0VWT0xWRURfU1VDQ0VTUxABEhoKFkZBSUxFRF9QT0tFTU9OX01J",
-                  "U1NJTkcQAhIhCh1GQUlMRURfSU5TVUZGSUNJRU5UX1JFU09VUkNFUxADEiAK",
-                  "HEZBSUxFRF9QT0tFTU9OX0NBTk5PVF9FVk9MVkUQBBIeChpGQUlMRURfUE9L",
-                  "RU1PTl9JU19ERVBMT1lFRBAFYgZwcm90bzM="));
-            descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
-                new pbr::FileDescriptor[] { global::AllEnum.AllEnumReflection.Descriptor, },
-                new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetPlayerResponse), global::PokemonGo.RocketAPI.GeneratedCode.GetPlayerResponse.Parser, new[]{ "Unknown1", "Profile" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.Profile), global::PokemonGo.RocketAPI.GeneratedCode.Profile.Parser, new[]{ "CreationTime", "Username", "Team", "Tutorial", "Avatar", "PokeStorage", "ItemStorage", "DailyBonus", "Unknown12", "Unknown13", "Currency" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus), global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus.Parser, new[]{ "NextCollectTimestampMs", "NextDefenderBonusCollectTimestampMs" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.Currency), global::PokemonGo.RocketAPI.GeneratedCode.Currency.Parser, new[]{ "Type", "Amount" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails), global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails.Parser, new[]{ "Unknown2", "Unknown3", "Unknown9", "Unknown10" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadSettingsRequest), global::PokemonGo.RocketAPI.GeneratedCode.DownloadSettingsRequest.Parser, new[]{ "Hash" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetInventoryResponse), global::PokemonGo.RocketAPI.GeneratedCode.GetInventoryResponse.Parser, new[]{ "Success", "InventoryDelta" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta), global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta.Parser, new[]{ "OriginalTimestampMs", "NewTimestampMs", "InventoryItems" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem), global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem.Parser, new[]{ "ModifiedTimestampMs", "DeletedItemKey", "InventoryItemData" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData), global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData.Parser, new[]{ "Pokemon", "Item", "PokedexEntry", "PlayerStats", "PlayerCurrency", "PlayerCamera", "InventoryUpgrades", "AppliedItems", "EggIncubators", "PokemonFamily" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.RecycleInventoryItem), global::PokemonGo.RocketAPI.GeneratedCode.RecycleInventoryItem.Parser, new[]{ "ItemId", "Count" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.Pokemon), global::PokemonGo.RocketAPI.GeneratedCode.Pokemon.Parser, new[]{ "Id", "PokemonType", "Cp", "Stamina", "StaminaMax", "Move1", "Move2", "DeployedFortId", "OwnerName", "IsEgg", "EggKmWalkedTarget", "EggKmWalkedStart", "Origin", "HeightM", "WeightKg", "IndividualAttack", "IndividualDefense", "IndividualStamina", "CpMultiplier", "Pokeball", "CapturedCellId", "BattlesAttacked", "BattlesDefended", "EggIncubatorId", "CreationTimeMs", "NumUpgrades", "AdditionalCpMultiplier", "Favorite", "Nickname", "FromFort" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.Item), global::PokemonGo.RocketAPI.GeneratedCode.Item.Parser, new[]{ "Item_", "Count", "Unseen" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry), global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry.Parser, new[]{ "PokedexEntryNumber", "TimesEncountered", "TimesCaptured", "EvolutionStonePieces", "EvolutionStones" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats), global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats.Parser, new[]{ "Level", "Experience", "PrevLevelXp", "NextLevelXp", "KmWalked", "PokemonsEncountered", "UniquePokedexEntries", "PokemonsCaptured", "Evolutions", "PokeStopVisits", "PokeballsThrown", "EggsHatched", "BigMagikarpCaught", "BattleAttackWon", "BattleAttackTotal", "BattleDefendedWon", "BattleTrainingWon", "BattleTrainingTotal", "PrestigeRaisedTotal", "PrestigeDroppedTotal", "PokemonDeployed", "PokemonCaughtByType", "SmallRattataCaught" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency), global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency.Parser, new[]{ "Gems" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera), global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera.Parser, new[]{ "IsDefaultCamera" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades), global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades.Parser, new[]{ "InventoryUpgrades_" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade), global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade.Parser, new[]{ "Item", "UpgradeType", "AdditionalStorage" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems), global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems.Parser, new[]{ "Item" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem), global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem.Parser, new[]{ "ItemType", "ItemTypeCategory", "ExpireMs", "AppliedMs" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators), global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators.Parser, new[]{ "EggIncubator" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator), global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator.Parser, new[]{ "ItemId", "ItemType", "IncubatorType", "UsesRemaining", "PokemonId", "StartKmWalked", "TargetKmWalked" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily), global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily.Parser, new[]{ "FamilyId", "Candy" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetMapObjectsRequest), global::PokemonGo.RocketAPI.GeneratedCode.GetMapObjectsRequest.Parser, new[]{ "CellId", "SinceTimestampMs", "Latitude", "Longitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetMapObjectsResponse), global::PokemonGo.RocketAPI.GeneratedCode.GetMapObjectsResponse.Parser, new[]{ "MapCells", "Status" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MapCell), global::PokemonGo.RocketAPI.GeneratedCode.MapCell.Parser, new[]{ "S2CellId", "CurrentTimestampMs", "Forts", "SpawnPoints", "DeletedObjects", "IsTruncatedList", "FortSummaries", "DecimatedSpawnPoints", "WildPokemons", "CatchablePokemons", "NearbyPokemons" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortData), global::PokemonGo.RocketAPI.GeneratedCode.FortData.Parser, new[]{ "Id", "LastModifiedTimestampMs", "Latitude", "Longitude", "Enabled", "Type", "OwnedByTeam", "GuardPokemonId", "GuardPokemonCp", "GymPoints", "IsInBattle", "CooldownCompleteTimestampMs", "Sponsor", "RenderingType", "ActiveFortModifier", "LureInfo" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo), global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo.Parser, new[]{ "FortId", "Unknown2", "ActivePokemonId", "LureExpiresTimestampMs" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint), global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint.Parser, new[]{ "Latitude", "Longitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSummary), global::PokemonGo.RocketAPI.GeneratedCode.FortSummary.Parser, new[]{ "FortSummaryId", "LastModifiedTimestampMs", "Latitude", "Longitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon), global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon.Parser, new[]{ "EncounterId", "LastModifiedTimestampMs", "Latitude", "Longitude", "SpawnpointId", "PokemonData", "TimeTillHiddenMs" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonData), global::PokemonGo.RocketAPI.GeneratedCode.PokemonData.Parser, new[]{ "Id", "PokemonId", "Cp", "Stamina", "StaminaMax", "Move1", "Move2", "DeployedFortId", "OwnerName", "IsEgg", "EggKmWalkedTarget", "EggKmWalkedStart", "Origin", "HeightM", "WeightKg", "IndividualAttack", "IndividualDefense", "IndividualStamina", "CpMultiplier", "Pokeball", "CapturedCellId", "BattlesAttacked", "BattlesDefended", "EggIncubatorId", "CreationTimeMs", "NumUpgrades", "AdditionalCpMultiplier", "Favorite", "Nickname", "FromFort" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon), global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon.Parser, new[]{ "SpawnpointId", "EncounterId", "PokemonId", "ExpirationTimestampMs", "Latitude", "Longitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon), global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon.Parser, new[]{ "PokemonId", "DistanceInMeters", "EncounterId" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadSettingsResponse), global::PokemonGo.RocketAPI.GeneratedCode.DownloadSettingsResponse.Parser, new[]{ "Error", "Hash", "Settings" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings), global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings.Parser, new[]{ "FortSettings", "MapSettings", "LevelSettings", "InventorySettings", "MinimumClientVersion" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSettings), global::PokemonGo.RocketAPI.GeneratedCode.FortSettings.Parser, new[]{ "InteractionRangeMeters", "MaxTotalDeployedPokemon", "MaxPlayerDeployedPokemon", "DeployStaminaMultiplier", "DeployAttackMultiplier", "FarInteractionRangeMeters" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MapSettings), global::PokemonGo.RocketAPI.GeneratedCode.MapSettings.Parser, new[]{ "PokemonVisibleRange", "PokeNavRangeMeters", "EncounterRangeMeters", "GetMapObjectsMinRefreshSeconds", "GetMapObjectsMaxRefreshSeconds", "GetMapObjectsMinDistanceMeters", "GoogleMapsApiKey" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings), global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings.Parser, new[]{ "TrainerCpModifier", "TrainerDifficultyModifier" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings), global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings.Parser, new[]{ "MaxPokemon", "MaxBagItems", "BasePokemon", "BaseBagItems", "BaseEggs" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerUpdateRequest), global::PokemonGo.RocketAPI.GeneratedCode.PlayerUpdateRequest.Parser, new[]{ "Latitude", "Longitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerUpdateResponse), global::PokemonGo.RocketAPI.GeneratedCode.PlayerUpdateResponse.Parser, new[]{ "WildPokemons", "Forts", "FortsNearby" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesRequest), global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesRequest.Parser, null, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse), global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Parser, new[]{ "Success", "ItemTemplates", "TimestampMs" }, null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate), global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate.Parser, new[]{ "TemplateId", "PokemonSettings", "ItemSettings", "MoveSettings", "MoveSequenceSettings", "TypeEffective", "BadgeSettings", "Camera", "PlayerLevel", "GymLevel", "BattleSettings", "EncounterSettings", "IapItemDisplay", "IapSettings", "PokemonUpgrades", "EquippedBadges" }, null, null, null)}),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.UseItemCaptureRequest), global::PokemonGo.RocketAPI.GeneratedCode.UseItemCaptureRequest.Parser, new[]{ "ItemId", "EncounterId", "SpawnPointGuid" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.UseItemCaptureResponse), global::PokemonGo.RocketAPI.GeneratedCode.UseItemCaptureResponse.Parser, new[]{ "Success", "ItemCaptureMult", "ItemFleeMult", "StopMovement", "StopAttack", "TargetMax", "TargetSlow" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonRequest), global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonRequest.Parser, new[]{ "PokemonId" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse), global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Parser, new[]{ "Result", "CandyAwarded" }, null, new[]{ typeof(global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Types.Result) }, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetHatchedEggsRequest), global::PokemonGo.RocketAPI.GeneratedCode.GetHatchedEggsRequest.Parser, null, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetHatchedEggsResponse), global::PokemonGo.RocketAPI.GeneratedCode.GetHatchedEggsResponse.Parser, new[]{ "Success", "PokemonId", "ExperienceAwarded", "CandyAwarded", "StardustAwarded" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSearchRequest), global::PokemonGo.RocketAPI.GeneratedCode.FortSearchRequest.Parser, new[]{ "FortId", "PlayerLatitude", "PlayerLongitude", "FortLatitude", "FortLongitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse), global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Parser, new[]{ "Result", "ItemsAwarded", "GemsAwarded", "PokemonDataEgg", "ExperienceAwarded", "CooldownCompleteTimestampMs", "ChainHackSequenceNumber" }, null, new[]{ typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.Result) }, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward), global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward.Parser, new[]{ "ItemId", "ItemCount" }, null, null, null)}),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortDetailsRequest), global::PokemonGo.RocketAPI.GeneratedCode.FortDetailsRequest.Parser, new[]{ "FortId", "Latitude", "Longitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortDetailsResponse), global::PokemonGo.RocketAPI.GeneratedCode.FortDetailsResponse.Parser, new[]{ "FortId", "TeamColor", "PokemonData", "Name", "ImageUrls", "Fp", "Stamina", "MaxStamina", "Type", "Latitude", "Longitude", "Description", "Modifiers" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortModifier), global::PokemonGo.RocketAPI.GeneratedCode.FortModifier.Parser, new[]{ "ItemId", "ExpirationTimestampMs", "DeployerPlayerCodename" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterRequest), global::PokemonGo.RocketAPI.GeneratedCode.EncounterRequest.Parser, new[]{ "EncounterId", "SpawnpointId", "PlayerLatitude", "PlayerLongitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse), global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Parser, new[]{ "WildPokemon", "Background", "Status", "CaptureProbability" }, null, new[]{ typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Background), typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Status) }, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability), global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability.Parser, new[]{ "PokeballType", "CaptureProbability_", "ReticleDifficultyScale" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterRequest), global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterRequest.Parser, new[]{ "EncounterId", "FortId", "PlayerLatitude", "PlayerLongitude" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse), global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Parser, new[]{ "Result", "PokemonData", "CaptureProbability" }, null, new[]{ typeof(global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Types.Result) }, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonRequest), global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonRequest.Parser, new[]{ "EncounterId", "Pokeball", "NormalizedReticleSize", "SpawnPointGuid", "HitPokemon", "SpinModifier", "NormalizedHitPosition" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse), global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Parser, new[]{ "Status", "MissPercent", "CapturedPokemonId", "Scores" }, null, new[]{ typeof(global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Types.CatchStatus) }, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore), global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore.Parser, new[]{ "ActivityType", "Xp", "Candy", "Stardust" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CheckAwardedBadgesRequest), global::PokemonGo.RocketAPI.GeneratedCode.CheckAwardedBadgesRequest.Parser, null, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CheckAwardedBadgesResponse), global::PokemonGo.RocketAPI.GeneratedCode.CheckAwardedBadgesResponse.Parser, new[]{ "Success", "AwardedBadges", "AwardedBadgeLevels" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings), global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings.Parser, new[]{ "EquipBadgeCooldownMs", "CatchProbabilityBonus", "FleeProbabilityBonus" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings), global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings.Parser, new[]{ "UpgradesPerLevel", "AllowedLevelsAbovePlayer", "CandyCost", "StardustCost" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.IapSettings), global::PokemonGo.RocketAPI.GeneratedCode.IapSettings.Parser, new[]{ "DailyBonusCoins", "DailyDefenderBonusPerPokemon", "DailyDefenderBonusMaxDefenders", "DailyDefenderBonusCurrency", "MinTimeBetweenClaimsMs", "DailyBonusEnabled", "DailyDefenderBonusEnabled" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay), global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay.Parser, new[]{ "Sku", "Category", "SortOrder", "ItemIds", "Counts" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings), global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings.Parser, new[]{ "SpinBonusThreshold", "ExcellentThrowThreshold", "GreatThrowThreshold", "NiceThrowThreshold", "MilestoneThreshold" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings), global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings.Parser, new[]{ "EnergyPerSec", "DodgeEnergyCost", "RetargetSeconds", "EnemyAttackInterval", "AttackServerInterval", "RoundDurationSeconds", "BonusTimePerAllySeconds", "MaximumAttackersPerBattle", "SameTypeAttackBonusMultiplier", "MaximumEnergy", "EnergyDeltaPerHealthLost", "DodgeDurationMs", "MinimumPlayerLevel", "SwapDurationMs" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings), global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings.Parser, new[]{ "RequiredExperience", "LeaderSlots", "TrainerSlots", "SearchRollBonus" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings), global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings.Parser, new[]{ "RankNum", "RequiredExperience", "CpMultiplier", "MaxEggPlayerLevel", "MaxEncounterPlayerLevel" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings), global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings.Parser, new[]{ "NextCamera", "Interpolation", "TargetType", "EaseInSpeed", "EastOutSpeed", "DurationSeconds", "WaitSeconds", "TransitionSeconds", "AngleDegree", "AngleOffsetDegree", "PitchDegree", "PitchOffsetDegree", "RollDegree", "DistanceMeters", "HeightPercent", "VertCtrRatio" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings), global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings.Parser, new[]{ "BadgeType", "BadgeRank", "Targets" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings), global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings.Parser, new[]{ "AttackScalar", "AttackType" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings), global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings.Parser, new[]{ "Sequence" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings), global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings.Parser, new[]{ "MovementId", "AnimationId", "PokemonType", "Power", "AccuracyChance", "CriticalChance", "HealScalar", "StaminaLossScalar", "TrainerLevelMin", "TrainerLevelMax", "VfxName", "DurationMs", "DamageWindowStartMs", "DamageWindowEndMs", "EnergyDelta" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings), global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings.Parser, new[]{ "PokemonId", "ModelScale", "Type", "Type2", "Camera", "Encounter", "Stats", "QuickMoves", "CinematicMoves", "AnimationTime", "EvolutionIds", "EvolutionPips", "Class", "PokedexHeightM", "PokedexWeightKg", "ParentPokemonId", "HeightStdDev", "WeightStdDev", "KmDistanceToHatch", "FamilyId", "CandyToEvolve" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes), global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes.Parser, new[]{ "DiskRadiusM", "CylinderRadiusM", "CylinderHeightM", "CylinderGroundM", "ShoulderModeScale" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes), global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes.Parser, new[]{ "BaseCaptureRate", "BaseFleeRate", "CollisionRadiusM", "CollisionHeightM", "CollisionHeadRadiusM", "MovementType", "MovementTimerS", "JumpTimeS", "AttackTimerS" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes), global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes.Parser, new[]{ "BaseStamina", "BaseAttack", "BaseDefense", "DodgeEnergyDelta" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings), global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings.Parser, new[]{ "ItemId", "ItemType", "Category", "DropFreq", "DropTrainerLevel", "Pokeball", "Potion", "Revive", "Battle", "Food", "InventoryUpgrade", "XpBoost", "Incense", "EggIncubator", "FortModifier" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes), global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes.Parser, new[]{ "StaPercent" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes), global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes.Parser, new[]{ "IncubatorType", "Uses", "DistanceMultiplier" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes), global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes.Parser, new[]{ "XpMultiplier", "BoostDurationMs" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes), global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes.Parser, new[]{ "ItemEffect", "ItemEffectPercent", "GrowthPercent" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes), global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes.Parser, new[]{ "ModifierLifetimeSeconds", "TroyDiskNumPokemonSpawned" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes), global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes.Parser, new[]{ "IncenseLifetimeSeconds", "PokemonType", "PokemonIncenseTypeProbability", "StandingTimeBetweenEncountersSeconds", "MovingTimeBetweenEncounterSeconds", "DistanceRequiredForShorterIntervalMeters", "PokemonAttractedLengthSec" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes), global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes.Parser, new[]{ "AdditionalStorage", "UpgradeType" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes), global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes.Parser, new[]{ "ItemEffect", "CaptureMulti", "CaptureMultiEffect", "ItemEffectMod" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes), global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes.Parser, new[]{ "StaPercent", "StaAmount" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes), global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes.Parser, new[]{ "StaPercent" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.TransferPokemon), global::PokemonGo.RocketAPI.GeneratedCode.TransferPokemon.Parser, new[]{ "PokemonId" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.TransferPokemonOut), global::PokemonGo.RocketAPI.GeneratedCode.TransferPokemonOut.Parser, new[]{ "Status", "CandyAwarded" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemon), global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemon.Parser, new[]{ "PokemonId" }, null, null, null),
-            new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut), global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Parser, new[]{ "Result", "EvolvedPokemon", "ExpAwarded", "CandyAwarded" }, null, new[]{ typeof(global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Types.EvolvePokemonStatus) }, null)
-                }));
-        }
-        #endregion
-
-    }
-    #region Messages
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GetPlayerResponse : pb::IMessage<GetPlayerResponse>
-    {
-        private static readonly pb::MessageParser<GetPlayerResponse> _parser = new pb::MessageParser<GetPlayerResponse>(() => new GetPlayerResponse());
-        public static pb::MessageParser<GetPlayerResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[0]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GetPlayerResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GetPlayerResponse(GetPlayerResponse other) : this()
-        {
-            unknown1_ = other.unknown1_;
-            Profile = other.profile_ != null ? other.Profile.Clone() : null;
-        }
-
-        public GetPlayerResponse Clone()
-        {
-            return new GetPlayerResponse(this);
-        }
-
-        /// <summary>Field number for the "unknown1" field.</summary>
-        public const int Unknown1FieldNumber = 1;
-        private int unknown1_;
-        public int Unknown1
-        {
-            get { return unknown1_; }
-            set
-            {
-                unknown1_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "profile" field.</summary>
-        public const int ProfileFieldNumber = 2;
-        private global::PokemonGo.RocketAPI.GeneratedCode.Profile profile_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.Profile Profile
-        {
-            get { return profile_; }
-            set
-            {
-                profile_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GetPlayerResponse);
-        }
-
-        public bool Equals(GetPlayerResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Unknown1 != other.Unknown1) return false;
-            if (!object.Equals(Profile, other.Profile)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Unknown1 != 0) hash ^= Unknown1.GetHashCode();
-            if (profile_ != null) hash ^= Profile.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Unknown1 != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(Unknown1);
-            }
-            if (profile_ != null)
-            {
-                output.WriteRawTag(18);
-                output.WriteMessage(Profile);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Unknown1 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown1);
-            }
-            if (profile_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Profile);
-            }
-            return size;
-        }
-
-        public void MergeFrom(GetPlayerResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Unknown1 != 0)
-            {
-                Unknown1 = other.Unknown1;
-            }
-            if (other.profile_ != null)
-            {
-                if (profile_ == null)
-                {
-                    profile_ = new global::PokemonGo.RocketAPI.GeneratedCode.Profile();
-                }
-                Profile.MergeFrom(other.Profile);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Unknown1 = input.ReadInt32();
-                            break;
-                        }
-                    case 18:
-                        {
-                            if (profile_ == null)
-                            {
-                                profile_ = new global::PokemonGo.RocketAPI.GeneratedCode.Profile();
-                            }
-                            input.ReadMessage(profile_);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class Profile : pb::IMessage<Profile>
-    {
-        private static readonly pb::MessageParser<Profile> _parser = new pb::MessageParser<Profile>(() => new Profile());
-        public static pb::MessageParser<Profile> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[1]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public Profile()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public Profile(Profile other) : this()
-        {
-            creationTime_ = other.creationTime_;
-            username_ = other.username_;
-            team_ = other.team_;
-            tutorial_ = other.tutorial_;
-            Avatar = other.avatar_ != null ? other.Avatar.Clone() : null;
-            pokeStorage_ = other.pokeStorage_;
-            itemStorage_ = other.itemStorage_;
-            DailyBonus = other.dailyBonus_ != null ? other.DailyBonus.Clone() : null;
-            unknown12_ = other.unknown12_;
-            unknown13_ = other.unknown13_;
-            currency_ = other.currency_.Clone();
-        }
-
-        public Profile Clone()
-        {
-            return new Profile(this);
-        }
-
-        /// <summary>Field number for the "creation_time" field.</summary>
-        public const int CreationTimeFieldNumber = 1;
-        private long creationTime_;
-        public long CreationTime
-        {
-            get { return creationTime_; }
-            set
-            {
-                creationTime_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "username" field.</summary>
-        public const int UsernameFieldNumber = 2;
-        private string username_ = "";
-        public string Username
-        {
-            get { return username_; }
-            set
-            {
-                username_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "team" field.</summary>
-        public const int TeamFieldNumber = 5;
-        private global::AllEnum.TeamColor team_ = 0;
-        public global::AllEnum.TeamColor Team
-        {
-            get { return team_; }
-            set
-            {
-                team_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "tutorial" field.</summary>
-        public const int TutorialFieldNumber = 7;
-        private pb::ByteString tutorial_ = pb::ByteString.Empty;
-        public pb::ByteString Tutorial
-        {
-            get { return tutorial_; }
-            set
-            {
-                tutorial_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "avatar" field.</summary>
-        public const int AvatarFieldNumber = 8;
-        private global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails avatar_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails Avatar
-        {
-            get { return avatar_; }
-            set
-            {
-                avatar_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "poke_storage" field.</summary>
-        public const int PokeStorageFieldNumber = 9;
-        private int pokeStorage_;
-        public int PokeStorage
-        {
-            get { return pokeStorage_; }
-            set
-            {
-                pokeStorage_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item_storage" field.</summary>
-        public const int ItemStorageFieldNumber = 10;
-        private int itemStorage_;
-        public int ItemStorage
-        {
-            get { return itemStorage_; }
-            set
-            {
-                itemStorage_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "daily_bonus" field.</summary>
-        public const int DailyBonusFieldNumber = 11;
-        private global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus dailyBonus_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus DailyBonus
-        {
-            get { return dailyBonus_; }
-            set
-            {
-                dailyBonus_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "unknown12" field.</summary>
-        public const int Unknown12FieldNumber = 12;
-        private pb::ByteString unknown12_ = pb::ByteString.Empty;
-        public pb::ByteString Unknown12
-        {
-            get { return unknown12_; }
-            set
-            {
-                unknown12_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "unknown13" field.</summary>
-        public const int Unknown13FieldNumber = 13;
-        private pb::ByteString unknown13_ = pb::ByteString.Empty;
-        public pb::ByteString Unknown13
-        {
-            get { return unknown13_; }
-            set
-            {
-                unknown13_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "currency" field.</summary>
-        public const int CurrencyFieldNumber = 14;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.Currency> _repeated_currency_codec
-            = pb::FieldCodec.ForMessage(114, global::PokemonGo.RocketAPI.GeneratedCode.Currency.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.Currency> currency_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.Currency>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.Currency> Currency
-        {
-            get { return currency_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as Profile);
-        }
-
-        public bool Equals(Profile other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (CreationTime != other.CreationTime) return false;
-            if (Username != other.Username) return false;
-            if (Team != other.Team) return false;
-            if (Tutorial != other.Tutorial) return false;
-            if (!object.Equals(Avatar, other.Avatar)) return false;
-            if (PokeStorage != other.PokeStorage) return false;
-            if (ItemStorage != other.ItemStorage) return false;
-            if (!object.Equals(DailyBonus, other.DailyBonus)) return false;
-            if (Unknown12 != other.Unknown12) return false;
-            if (Unknown13 != other.Unknown13) return false;
-            if (!currency_.Equals(other.currency_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (CreationTime != 0L) hash ^= CreationTime.GetHashCode();
-            if (Username.Length != 0) hash ^= Username.GetHashCode();
-            if (Team != 0) hash ^= Team.GetHashCode();
-            if (Tutorial.Length != 0) hash ^= Tutorial.GetHashCode();
-            if (avatar_ != null) hash ^= Avatar.GetHashCode();
-            if (PokeStorage != 0) hash ^= PokeStorage.GetHashCode();
-            if (ItemStorage != 0) hash ^= ItemStorage.GetHashCode();
-            if (dailyBonus_ != null) hash ^= DailyBonus.GetHashCode();
-            if (Unknown12.Length != 0) hash ^= Unknown12.GetHashCode();
-            if (Unknown13.Length != 0) hash ^= Unknown13.GetHashCode();
-            hash ^= currency_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (CreationTime != 0L)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt64(CreationTime);
-            }
-            if (Username.Length != 0)
-            {
-                output.WriteRawTag(18);
-                output.WriteString(Username);
-            }
-            if (Team != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteEnum((int)Team);
-            }
-            if (Tutorial.Length != 0)
-            {
-                output.WriteRawTag(58);
-                output.WriteBytes(Tutorial);
-            }
-            if (avatar_ != null)
-            {
-                output.WriteRawTag(66);
-                output.WriteMessage(Avatar);
-            }
-            if (PokeStorage != 0)
-            {
-                output.WriteRawTag(72);
-                output.WriteInt32(PokeStorage);
-            }
-            if (ItemStorage != 0)
-            {
-                output.WriteRawTag(80);
-                output.WriteInt32(ItemStorage);
-            }
-            if (dailyBonus_ != null)
-            {
-                output.WriteRawTag(90);
-                output.WriteMessage(DailyBonus);
-            }
-            if (Unknown12.Length != 0)
-            {
-                output.WriteRawTag(98);
-                output.WriteBytes(Unknown12);
-            }
-            if (Unknown13.Length != 0)
-            {
-                output.WriteRawTag(106);
-                output.WriteBytes(Unknown13);
-            }
-            currency_.WriteTo(output, _repeated_currency_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (CreationTime != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(CreationTime);
-            }
-            if (Username.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Username);
-            }
-            if (Team != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Team);
-            }
-            if (Tutorial.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeBytesSize(Tutorial);
-            }
-            if (avatar_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Avatar);
-            }
-            if (PokeStorage != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokeStorage);
-            }
-            if (ItemStorage != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ItemStorage);
-            }
-            if (dailyBonus_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(DailyBonus);
-            }
-            if (Unknown12.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeBytesSize(Unknown12);
-            }
-            if (Unknown13.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeBytesSize(Unknown13);
-            }
-            size += currency_.CalculateSize(_repeated_currency_codec);
-            return size;
-        }
-
-        public void MergeFrom(Profile other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.CreationTime != 0L)
-            {
-                CreationTime = other.CreationTime;
-            }
-            if (other.Username.Length != 0)
-            {
-                Username = other.Username;
-            }
-            if (other.Team != 0)
-            {
-                Team = other.Team;
-            }
-            if (other.Tutorial.Length != 0)
-            {
-                Tutorial = other.Tutorial;
-            }
-            if (other.avatar_ != null)
-            {
-                if (avatar_ == null)
-                {
-                    avatar_ = new global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails();
-                }
-                Avatar.MergeFrom(other.Avatar);
-            }
-            if (other.PokeStorage != 0)
-            {
-                PokeStorage = other.PokeStorage;
-            }
-            if (other.ItemStorage != 0)
-            {
-                ItemStorage = other.ItemStorage;
-            }
-            if (other.dailyBonus_ != null)
-            {
-                if (dailyBonus_ == null)
-                {
-                    dailyBonus_ = new global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus();
-                }
-                DailyBonus.MergeFrom(other.DailyBonus);
-            }
-            if (other.Unknown12.Length != 0)
-            {
-                Unknown12 = other.Unknown12;
-            }
-            if (other.Unknown13.Length != 0)
-            {
-                Unknown13 = other.Unknown13;
-            }
-            currency_.Add(other.currency_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            CreationTime = input.ReadInt64();
-                            break;
-                        }
-                    case 18:
-                        {
-                            Username = input.ReadString();
-                            break;
-                        }
-                    case 40:
-                        {
-                            team_ = (global::AllEnum.TeamColor)input.ReadEnum();
-                            break;
-                        }
-                    case 58:
-                        {
-                            Tutorial = input.ReadBytes();
-                            break;
-                        }
-                    case 66:
-                        {
-                            if (avatar_ == null)
-                            {
-                                avatar_ = new global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails();
-                            }
-                            input.ReadMessage(avatar_);
-                            break;
-                        }
-                    case 72:
-                        {
-                            PokeStorage = input.ReadInt32();
-                            break;
-                        }
-                    case 80:
-                        {
-                            ItemStorage = input.ReadInt32();
-                            break;
-                        }
-                    case 90:
-                        {
-                            if (dailyBonus_ == null)
-                            {
-                                dailyBonus_ = new global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus();
-                            }
-                            input.ReadMessage(dailyBonus_);
-                            break;
-                        }
-                    case 98:
-                        {
-                            Unknown12 = input.ReadBytes();
-                            break;
-                        }
-                    case 106:
-                        {
-                            Unknown13 = input.ReadBytes();
-                            break;
-                        }
-                    case 114:
-                        {
-                            currency_.AddEntriesFrom(input, _repeated_currency_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class DailyBonus : pb::IMessage<DailyBonus>
-    {
-        private static readonly pb::MessageParser<DailyBonus> _parser = new pb::MessageParser<DailyBonus>(() => new DailyBonus());
-        public static pb::MessageParser<DailyBonus> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[2]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public DailyBonus()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public DailyBonus(DailyBonus other) : this()
-        {
-            nextCollectTimestampMs_ = other.nextCollectTimestampMs_;
-            nextDefenderBonusCollectTimestampMs_ = other.nextDefenderBonusCollectTimestampMs_;
-        }
-
-        public DailyBonus Clone()
-        {
-            return new DailyBonus(this);
-        }
-
-        /// <summary>Field number for the "NextCollectTimestampMs" field.</summary>
-        public const int NextCollectTimestampMsFieldNumber = 1;
-        private long nextCollectTimestampMs_;
-        public long NextCollectTimestampMs
-        {
-            get { return nextCollectTimestampMs_; }
-            set
-            {
-                nextCollectTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "NextDefenderBonusCollectTimestampMs" field.</summary>
-        public const int NextDefenderBonusCollectTimestampMsFieldNumber = 2;
-        private long nextDefenderBonusCollectTimestampMs_;
-        public long NextDefenderBonusCollectTimestampMs
-        {
-            get { return nextDefenderBonusCollectTimestampMs_; }
-            set
-            {
-                nextDefenderBonusCollectTimestampMs_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as DailyBonus);
-        }
-
-        public bool Equals(DailyBonus other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (NextCollectTimestampMs != other.NextCollectTimestampMs) return false;
-            if (NextDefenderBonusCollectTimestampMs != other.NextDefenderBonusCollectTimestampMs) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (NextCollectTimestampMs != 0L) hash ^= NextCollectTimestampMs.GetHashCode();
-            if (NextDefenderBonusCollectTimestampMs != 0L) hash ^= NextDefenderBonusCollectTimestampMs.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (NextCollectTimestampMs != 0L)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt64(NextCollectTimestampMs);
-            }
-            if (NextDefenderBonusCollectTimestampMs != 0L)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt64(NextDefenderBonusCollectTimestampMs);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (NextCollectTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(NextCollectTimestampMs);
-            }
-            if (NextDefenderBonusCollectTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(NextDefenderBonusCollectTimestampMs);
-            }
-            return size;
-        }
-
-        public void MergeFrom(DailyBonus other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.NextCollectTimestampMs != 0L)
-            {
-                NextCollectTimestampMs = other.NextCollectTimestampMs;
-            }
-            if (other.NextDefenderBonusCollectTimestampMs != 0L)
-            {
-                NextDefenderBonusCollectTimestampMs = other.NextDefenderBonusCollectTimestampMs;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            NextCollectTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 16:
-                        {
-                            NextDefenderBonusCollectTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class Currency : pb::IMessage<Currency>
-    {
-        private static readonly pb::MessageParser<Currency> _parser = new pb::MessageParser<Currency>(() => new Currency());
-        public static pb::MessageParser<Currency> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[3]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public Currency()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public Currency(Currency other) : this()
-        {
-            type_ = other.type_;
-            amount_ = other.amount_;
-        }
-
-        public Currency Clone()
-        {
-            return new Currency(this);
-        }
-
-        /// <summary>Field number for the "type" field.</summary>
-        public const int TypeFieldNumber = 1;
-        private string type_ = "";
-        public string Type
-        {
-            get { return type_; }
-            set
-            {
-                type_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "amount" field.</summary>
-        public const int AmountFieldNumber = 2;
-        private int amount_;
-        public int Amount
-        {
-            get { return amount_; }
-            set
-            {
-                amount_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as Currency);
-        }
-
-        public bool Equals(Currency other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Type != other.Type) return false;
-            if (Amount != other.Amount) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Type.Length != 0) hash ^= Type.GetHashCode();
-            if (Amount != 0) hash ^= Amount.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Type.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(Type);
-            }
-            if (Amount != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(Amount);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Type.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Type);
-            }
-            if (Amount != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Amount);
-            }
-            return size;
-        }
-
-        public void MergeFrom(Currency other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Type.Length != 0)
-            {
-                Type = other.Type;
-            }
-            if (other.Amount != 0)
-            {
-                Amount = other.Amount;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            Type = input.ReadString();
-                            break;
-                        }
-                    case 16:
-                        {
-                            Amount = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class AvatarDetails : pb::IMessage<AvatarDetails>
-    {
-        private static readonly pb::MessageParser<AvatarDetails> _parser = new pb::MessageParser<AvatarDetails>(() => new AvatarDetails());
-        public static pb::MessageParser<AvatarDetails> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[4]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public AvatarDetails()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public AvatarDetails(AvatarDetails other) : this()
-        {
-            unknown2_ = other.unknown2_;
-            unknown3_ = other.unknown3_;
-            unknown9_ = other.unknown9_;
-            unknown10_ = other.unknown10_;
-        }
-
-        public AvatarDetails Clone()
-        {
-            return new AvatarDetails(this);
-        }
-
-        /// <summary>Field number for the "unknown2" field.</summary>
-        public const int Unknown2FieldNumber = 2;
-        private int unknown2_;
-        public int Unknown2
-        {
-            get { return unknown2_; }
-            set
-            {
-                unknown2_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "unknown3" field.</summary>
-        public const int Unknown3FieldNumber = 3;
-        private int unknown3_;
-        public int Unknown3
-        {
-            get { return unknown3_; }
-            set
-            {
-                unknown3_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "unknown9" field.</summary>
-        public const int Unknown9FieldNumber = 9;
-        private int unknown9_;
-        public int Unknown9
-        {
-            get { return unknown9_; }
-            set
-            {
-                unknown9_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "unknown10" field.</summary>
-        public const int Unknown10FieldNumber = 10;
-        private int unknown10_;
-        public int Unknown10
-        {
-            get { return unknown10_; }
-            set
-            {
-                unknown10_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as AvatarDetails);
-        }
-
-        public bool Equals(AvatarDetails other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Unknown2 != other.Unknown2) return false;
-            if (Unknown3 != other.Unknown3) return false;
-            if (Unknown9 != other.Unknown9) return false;
-            if (Unknown10 != other.Unknown10) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Unknown2 != 0) hash ^= Unknown2.GetHashCode();
-            if (Unknown3 != 0) hash ^= Unknown3.GetHashCode();
-            if (Unknown9 != 0) hash ^= Unknown9.GetHashCode();
-            if (Unknown10 != 0) hash ^= Unknown10.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Unknown2 != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(Unknown2);
-            }
-            if (Unknown3 != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(Unknown3);
-            }
-            if (Unknown9 != 0)
-            {
-                output.WriteRawTag(72);
-                output.WriteInt32(Unknown9);
-            }
-            if (Unknown10 != 0)
-            {
-                output.WriteRawTag(80);
-                output.WriteInt32(Unknown10);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Unknown2 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown2);
-            }
-            if (Unknown3 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown3);
-            }
-            if (Unknown9 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown9);
-            }
-            if (Unknown10 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown10);
-            }
-            return size;
-        }
-
-        public void MergeFrom(AvatarDetails other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Unknown2 != 0)
-            {
-                Unknown2 = other.Unknown2;
-            }
-            if (other.Unknown3 != 0)
-            {
-                Unknown3 = other.Unknown3;
-            }
-            if (other.Unknown9 != 0)
-            {
-                Unknown9 = other.Unknown9;
-            }
-            if (other.Unknown10 != 0)
-            {
-                Unknown10 = other.Unknown10;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 16:
-                        {
-                            Unknown2 = input.ReadInt32();
-                            break;
-                        }
-                    case 24:
-                        {
-                            Unknown3 = input.ReadInt32();
-                            break;
-                        }
-                    case 72:
-                        {
-                            Unknown9 = input.ReadInt32();
-                            break;
-                        }
-                    case 80:
-                        {
-                            Unknown10 = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class DownloadSettingsRequest : pb::IMessage<DownloadSettingsRequest>
-    {
-        private static readonly pb::MessageParser<DownloadSettingsRequest> _parser = new pb::MessageParser<DownloadSettingsRequest>(() => new DownloadSettingsRequest());
-        public static pb::MessageParser<DownloadSettingsRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[5]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public DownloadSettingsRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public DownloadSettingsRequest(DownloadSettingsRequest other) : this()
-        {
-            hash_ = other.hash_;
-        }
-
-        public DownloadSettingsRequest Clone()
-        {
-            return new DownloadSettingsRequest(this);
-        }
-
-        /// <summary>Field number for the "hash" field.</summary>
-        public const int HashFieldNumber = 1;
-        private string hash_ = "";
-        public string Hash
-        {
-            get { return hash_; }
-            set
-            {
-                hash_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as DownloadSettingsRequest);
-        }
-
-        public bool Equals(DownloadSettingsRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Hash != other.Hash) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Hash.Length != 0) hash ^= Hash.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Hash.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(Hash);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Hash.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Hash);
-            }
-            return size;
-        }
-
-        public void MergeFrom(DownloadSettingsRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Hash.Length != 0)
-            {
-                Hash = other.Hash;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            Hash = input.ReadString();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GetInventoryResponse : pb::IMessage<GetInventoryResponse>
-    {
-        private static readonly pb::MessageParser<GetInventoryResponse> _parser = new pb::MessageParser<GetInventoryResponse>(() => new GetInventoryResponse());
-        public static pb::MessageParser<GetInventoryResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[6]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GetInventoryResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GetInventoryResponse(GetInventoryResponse other) : this()
-        {
-            success_ = other.success_;
-            InventoryDelta = other.inventoryDelta_ != null ? other.InventoryDelta.Clone() : null;
-        }
-
-        public GetInventoryResponse Clone()
-        {
-            return new GetInventoryResponse(this);
-        }
-
-        /// <summary>Field number for the "success" field.</summary>
-        public const int SuccessFieldNumber = 1;
-        private bool success_;
-        public bool Success
-        {
-            get { return success_; }
-            set
-            {
-                success_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "inventory_delta" field.</summary>
-        public const int InventoryDeltaFieldNumber = 2;
-        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta inventoryDelta_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta InventoryDelta
-        {
-            get { return inventoryDelta_; }
-            set
-            {
-                inventoryDelta_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GetInventoryResponse);
-        }
-
-        public bool Equals(GetInventoryResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Success != other.Success) return false;
-            if (!object.Equals(InventoryDelta, other.InventoryDelta)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Success != false) hash ^= Success.GetHashCode();
-            if (inventoryDelta_ != null) hash ^= InventoryDelta.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Success != false)
-            {
-                output.WriteRawTag(8);
-                output.WriteBool(Success);
-            }
-            if (inventoryDelta_ != null)
-            {
-                output.WriteRawTag(18);
-                output.WriteMessage(InventoryDelta);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Success != false)
-            {
-                size += 1 + 1;
-            }
-            if (inventoryDelta_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventoryDelta);
-            }
-            return size;
-        }
-
-        public void MergeFrom(GetInventoryResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Success != false)
-            {
-                Success = other.Success;
-            }
-            if (other.inventoryDelta_ != null)
-            {
-                if (inventoryDelta_ == null)
-                {
-                    inventoryDelta_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta();
-                }
-                InventoryDelta.MergeFrom(other.InventoryDelta);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Success = input.ReadBool();
-                            break;
-                        }
-                    case 18:
-                        {
-                            if (inventoryDelta_ == null)
-                            {
-                                inventoryDelta_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta();
-                            }
-                            input.ReadMessage(inventoryDelta_);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class InventoryDelta : pb::IMessage<InventoryDelta>
-    {
-        private static readonly pb::MessageParser<InventoryDelta> _parser = new pb::MessageParser<InventoryDelta>(() => new InventoryDelta());
-        public static pb::MessageParser<InventoryDelta> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[7]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public InventoryDelta()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public InventoryDelta(InventoryDelta other) : this()
-        {
-            originalTimestampMs_ = other.originalTimestampMs_;
-            newTimestampMs_ = other.newTimestampMs_;
-            inventoryItems_ = other.inventoryItems_.Clone();
-        }
-
-        public InventoryDelta Clone()
-        {
-            return new InventoryDelta(this);
-        }
-
-        /// <summary>Field number for the "original_timestamp_ms" field.</summary>
-        public const int OriginalTimestampMsFieldNumber = 1;
-        private long originalTimestampMs_;
-        public long OriginalTimestampMs
-        {
-            get { return originalTimestampMs_; }
-            set
-            {
-                originalTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "new_timestamp_ms" field.</summary>
-        public const int NewTimestampMsFieldNumber = 2;
-        private long newTimestampMs_;
-        public long NewTimestampMs
-        {
-            get { return newTimestampMs_; }
-            set
-            {
-                newTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "inventory_items" field.</summary>
-        public const int InventoryItemsFieldNumber = 3;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem> _repeated_inventoryItems_codec
-            = pb::FieldCodec.ForMessage(26, global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem> inventoryItems_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem> InventoryItems
-        {
-            get { return inventoryItems_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as InventoryDelta);
-        }
-
-        public bool Equals(InventoryDelta other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (OriginalTimestampMs != other.OriginalTimestampMs) return false;
-            if (NewTimestampMs != other.NewTimestampMs) return false;
-            if (!inventoryItems_.Equals(other.inventoryItems_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (OriginalTimestampMs != 0L) hash ^= OriginalTimestampMs.GetHashCode();
-            if (NewTimestampMs != 0L) hash ^= NewTimestampMs.GetHashCode();
-            hash ^= inventoryItems_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (OriginalTimestampMs != 0L)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt64(OriginalTimestampMs);
-            }
-            if (NewTimestampMs != 0L)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt64(NewTimestampMs);
-            }
-            inventoryItems_.WriteTo(output, _repeated_inventoryItems_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (OriginalTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(OriginalTimestampMs);
-            }
-            if (NewTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(NewTimestampMs);
-            }
-            size += inventoryItems_.CalculateSize(_repeated_inventoryItems_codec);
-            return size;
-        }
-
-        public void MergeFrom(InventoryDelta other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.OriginalTimestampMs != 0L)
-            {
-                OriginalTimestampMs = other.OriginalTimestampMs;
-            }
-            if (other.NewTimestampMs != 0L)
-            {
-                NewTimestampMs = other.NewTimestampMs;
-            }
-            inventoryItems_.Add(other.inventoryItems_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            OriginalTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 16:
-                        {
-                            NewTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 26:
-                        {
-                            inventoryItems_.AddEntriesFrom(input, _repeated_inventoryItems_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class InventoryItem : pb::IMessage<InventoryItem>
-    {
-        private static readonly pb::MessageParser<InventoryItem> _parser = new pb::MessageParser<InventoryItem>(() => new InventoryItem());
-        public static pb::MessageParser<InventoryItem> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[8]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public InventoryItem()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public InventoryItem(InventoryItem other) : this()
-        {
-            modifiedTimestampMs_ = other.modifiedTimestampMs_;
-            deletedItemKey_ = other.deletedItemKey_;
-            InventoryItemData = other.inventoryItemData_ != null ? other.InventoryItemData.Clone() : null;
-        }
-
-        public InventoryItem Clone()
-        {
-            return new InventoryItem(this);
-        }
-
-        /// <summary>Field number for the "modified_timestamp_ms" field.</summary>
-        public const int ModifiedTimestampMsFieldNumber = 1;
-        private long modifiedTimestampMs_;
-        public long ModifiedTimestampMs
-        {
-            get { return modifiedTimestampMs_; }
-            set
-            {
-                modifiedTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "deleted_item_key" field.</summary>
-        public const int DeletedItemKeyFieldNumber = 2;
-        private long deletedItemKey_;
-        public long DeletedItemKey
-        {
-            get { return deletedItemKey_; }
-            set
-            {
-                deletedItemKey_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "inventory_item_data" field.</summary>
-        public const int InventoryItemDataFieldNumber = 3;
-        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData inventoryItemData_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData InventoryItemData
-        {
-            get { return inventoryItemData_; }
-            set
-            {
-                inventoryItemData_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as InventoryItem);
-        }
-
-        public bool Equals(InventoryItem other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ModifiedTimestampMs != other.ModifiedTimestampMs) return false;
-            if (DeletedItemKey != other.DeletedItemKey) return false;
-            if (!object.Equals(InventoryItemData, other.InventoryItemData)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ModifiedTimestampMs != 0L) hash ^= ModifiedTimestampMs.GetHashCode();
-            if (DeletedItemKey != 0L) hash ^= DeletedItemKey.GetHashCode();
-            if (inventoryItemData_ != null) hash ^= InventoryItemData.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ModifiedTimestampMs != 0L)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt64(ModifiedTimestampMs);
-            }
-            if (DeletedItemKey != 0L)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt64(DeletedItemKey);
-            }
-            if (inventoryItemData_ != null)
-            {
-                output.WriteRawTag(26);
-                output.WriteMessage(InventoryItemData);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ModifiedTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(ModifiedTimestampMs);
-            }
-            if (DeletedItemKey != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(DeletedItemKey);
-            }
-            if (inventoryItemData_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventoryItemData);
-            }
-            return size;
-        }
-
-        public void MergeFrom(InventoryItem other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ModifiedTimestampMs != 0L)
-            {
-                ModifiedTimestampMs = other.ModifiedTimestampMs;
-            }
-            if (other.DeletedItemKey != 0L)
-            {
-                DeletedItemKey = other.DeletedItemKey;
-            }
-            if (other.inventoryItemData_ != null)
-            {
-                if (inventoryItemData_ == null)
-                {
-                    inventoryItemData_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData();
-                }
-                InventoryItemData.MergeFrom(other.InventoryItemData);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            ModifiedTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 16:
-                        {
-                            DeletedItemKey = input.ReadInt64();
-                            break;
-                        }
-                    case 26:
-                        {
-                            if (inventoryItemData_ == null)
-                            {
-                                inventoryItemData_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData();
-                            }
-                            input.ReadMessage(inventoryItemData_);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class InventoryItemData : pb::IMessage<InventoryItemData>
-    {
-        private static readonly pb::MessageParser<InventoryItemData> _parser = new pb::MessageParser<InventoryItemData>(() => new InventoryItemData());
-        public static pb::MessageParser<InventoryItemData> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[9]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public InventoryItemData()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public InventoryItemData(InventoryItemData other) : this()
-        {
-            Pokemon = other.pokemon_ != null ? other.Pokemon.Clone() : null;
-            Item = other.item_ != null ? other.Item.Clone() : null;
-            PokedexEntry = other.pokedexEntry_ != null ? other.PokedexEntry.Clone() : null;
-            PlayerStats = other.playerStats_ != null ? other.PlayerStats.Clone() : null;
-            PlayerCurrency = other.playerCurrency_ != null ? other.PlayerCurrency.Clone() : null;
-            PlayerCamera = other.playerCamera_ != null ? other.PlayerCamera.Clone() : null;
-            InventoryUpgrades = other.inventoryUpgrades_ != null ? other.InventoryUpgrades.Clone() : null;
-            AppliedItems = other.appliedItems_ != null ? other.AppliedItems.Clone() : null;
-            EggIncubators = other.eggIncubators_ != null ? other.EggIncubators.Clone() : null;
-            PokemonFamily = other.pokemonFamily_ != null ? other.PokemonFamily.Clone() : null;
-        }
-
-        public InventoryItemData Clone()
-        {
-            return new InventoryItemData(this);
-        }
-
-        /// <summary>Field number for the "pokemon" field.</summary>
-        public const int PokemonFieldNumber = 1;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemon_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData Pokemon
-        {
-            get { return pokemon_; }
-            set
-            {
-                pokemon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item" field.</summary>
-        public const int ItemFieldNumber = 2;
-        private global::PokemonGo.RocketAPI.GeneratedCode.Item item_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.Item Item
-        {
-            get { return item_; }
-            set
-            {
-                item_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokedex_entry" field.</summary>
-        public const int PokedexEntryFieldNumber = 3;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry pokedexEntry_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry PokedexEntry
-        {
-            get { return pokedexEntry_; }
-            set
-            {
-                pokedexEntry_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "player_stats" field.</summary>
-        public const int PlayerStatsFieldNumber = 4;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats playerStats_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats PlayerStats
-        {
-            get { return playerStats_; }
-            set
-            {
-                playerStats_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "player_currency" field.</summary>
-        public const int PlayerCurrencyFieldNumber = 5;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency playerCurrency_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency PlayerCurrency
-        {
-            get { return playerCurrency_; }
-            set
-            {
-                playerCurrency_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "player_camera" field.</summary>
-        public const int PlayerCameraFieldNumber = 6;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera playerCamera_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera PlayerCamera
-        {
-            get { return playerCamera_; }
-            set
-            {
-                playerCamera_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "inventory_upgrades" field.</summary>
-        public const int InventoryUpgradesFieldNumber = 7;
-        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades inventoryUpgrades_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades InventoryUpgrades
-        {
-            get { return inventoryUpgrades_; }
-            set
-            {
-                inventoryUpgrades_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "applied_items" field.</summary>
-        public const int AppliedItemsFieldNumber = 8;
-        private global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems appliedItems_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems AppliedItems
-        {
-            get { return appliedItems_; }
-            set
-            {
-                appliedItems_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "egg_incubators" field.</summary>
-        public const int EggIncubatorsFieldNumber = 9;
-        private global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators eggIncubators_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators EggIncubators
-        {
-            get { return eggIncubators_; }
-            set
-            {
-                eggIncubators_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_family" field.</summary>
-        public const int PokemonFamilyFieldNumber = 10;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily pokemonFamily_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily PokemonFamily
-        {
-            get { return pokemonFamily_; }
-            set
-            {
-                pokemonFamily_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as InventoryItemData);
-        }
-
-        public bool Equals(InventoryItemData other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!object.Equals(Pokemon, other.Pokemon)) return false;
-            if (!object.Equals(Item, other.Item)) return false;
-            if (!object.Equals(PokedexEntry, other.PokedexEntry)) return false;
-            if (!object.Equals(PlayerStats, other.PlayerStats)) return false;
-            if (!object.Equals(PlayerCurrency, other.PlayerCurrency)) return false;
-            if (!object.Equals(PlayerCamera, other.PlayerCamera)) return false;
-            if (!object.Equals(InventoryUpgrades, other.InventoryUpgrades)) return false;
-            if (!object.Equals(AppliedItems, other.AppliedItems)) return false;
-            if (!object.Equals(EggIncubators, other.EggIncubators)) return false;
-            if (!object.Equals(PokemonFamily, other.PokemonFamily)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (pokemon_ != null) hash ^= Pokemon.GetHashCode();
-            if (item_ != null) hash ^= Item.GetHashCode();
-            if (pokedexEntry_ != null) hash ^= PokedexEntry.GetHashCode();
-            if (playerStats_ != null) hash ^= PlayerStats.GetHashCode();
-            if (playerCurrency_ != null) hash ^= PlayerCurrency.GetHashCode();
-            if (playerCamera_ != null) hash ^= PlayerCamera.GetHashCode();
-            if (inventoryUpgrades_ != null) hash ^= InventoryUpgrades.GetHashCode();
-            if (appliedItems_ != null) hash ^= AppliedItems.GetHashCode();
-            if (eggIncubators_ != null) hash ^= EggIncubators.GetHashCode();
-            if (pokemonFamily_ != null) hash ^= PokemonFamily.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (pokemon_ != null)
-            {
-                output.WriteRawTag(10);
-                output.WriteMessage(Pokemon);
-            }
-            if (item_ != null)
-            {
-                output.WriteRawTag(18);
-                output.WriteMessage(Item);
-            }
-            if (pokedexEntry_ != null)
-            {
-                output.WriteRawTag(26);
-                output.WriteMessage(PokedexEntry);
-            }
-            if (playerStats_ != null)
-            {
-                output.WriteRawTag(34);
-                output.WriteMessage(PlayerStats);
-            }
-            if (playerCurrency_ != null)
-            {
-                output.WriteRawTag(42);
-                output.WriteMessage(PlayerCurrency);
-            }
-            if (playerCamera_ != null)
-            {
-                output.WriteRawTag(50);
-                output.WriteMessage(PlayerCamera);
-            }
-            if (inventoryUpgrades_ != null)
-            {
-                output.WriteRawTag(58);
-                output.WriteMessage(InventoryUpgrades);
-            }
-            if (appliedItems_ != null)
-            {
-                output.WriteRawTag(66);
-                output.WriteMessage(AppliedItems);
-            }
-            if (eggIncubators_ != null)
-            {
-                output.WriteRawTag(74);
-                output.WriteMessage(EggIncubators);
-            }
-            if (pokemonFamily_ != null)
-            {
-                output.WriteRawTag(82);
-                output.WriteMessage(PokemonFamily);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (pokemon_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Pokemon);
-            }
-            if (item_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Item);
-            }
-            if (pokedexEntry_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokedexEntry);
-            }
-            if (playerStats_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerStats);
-            }
-            if (playerCurrency_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerCurrency);
-            }
-            if (playerCamera_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerCamera);
-            }
-            if (inventoryUpgrades_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventoryUpgrades);
-            }
-            if (appliedItems_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(AppliedItems);
-            }
-            if (eggIncubators_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(EggIncubators);
-            }
-            if (pokemonFamily_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonFamily);
-            }
-            return size;
-        }
-
-        public void MergeFrom(InventoryItemData other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.pokemon_ != null)
-            {
-                if (pokemon_ == null)
-                {
-                    pokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                }
-                Pokemon.MergeFrom(other.Pokemon);
-            }
-            if (other.item_ != null)
-            {
-                if (item_ == null)
-                {
-                    item_ = new global::PokemonGo.RocketAPI.GeneratedCode.Item();
-                }
-                Item.MergeFrom(other.Item);
-            }
-            if (other.pokedexEntry_ != null)
-            {
-                if (pokedexEntry_ == null)
-                {
-                    pokedexEntry_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry();
-                }
-                PokedexEntry.MergeFrom(other.PokedexEntry);
-            }
-            if (other.playerStats_ != null)
-            {
-                if (playerStats_ == null)
-                {
-                    playerStats_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats();
-                }
-                PlayerStats.MergeFrom(other.PlayerStats);
-            }
-            if (other.playerCurrency_ != null)
-            {
-                if (playerCurrency_ == null)
-                {
-                    playerCurrency_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency();
-                }
-                PlayerCurrency.MergeFrom(other.PlayerCurrency);
-            }
-            if (other.playerCamera_ != null)
-            {
-                if (playerCamera_ == null)
-                {
-                    playerCamera_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera();
-                }
-                PlayerCamera.MergeFrom(other.PlayerCamera);
-            }
-            if (other.inventoryUpgrades_ != null)
-            {
-                if (inventoryUpgrades_ == null)
-                {
-                    inventoryUpgrades_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades();
-                }
-                InventoryUpgrades.MergeFrom(other.InventoryUpgrades);
-            }
-            if (other.appliedItems_ != null)
-            {
-                if (appliedItems_ == null)
-                {
-                    appliedItems_ = new global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems();
-                }
-                AppliedItems.MergeFrom(other.AppliedItems);
-            }
-            if (other.eggIncubators_ != null)
-            {
-                if (eggIncubators_ == null)
-                {
-                    eggIncubators_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators();
-                }
-                EggIncubators.MergeFrom(other.EggIncubators);
-            }
-            if (other.pokemonFamily_ != null)
-            {
-                if (pokemonFamily_ == null)
-                {
-                    pokemonFamily_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily();
-                }
-                PokemonFamily.MergeFrom(other.PokemonFamily);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            if (pokemon_ == null)
-                            {
-                                pokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                            }
-                            input.ReadMessage(pokemon_);
-                            break;
-                        }
-                    case 18:
-                        {
-                            if (item_ == null)
-                            {
-                                item_ = new global::PokemonGo.RocketAPI.GeneratedCode.Item();
-                            }
-                            input.ReadMessage(item_);
-                            break;
-                        }
-                    case 26:
-                        {
-                            if (pokedexEntry_ == null)
-                            {
-                                pokedexEntry_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry();
-                            }
-                            input.ReadMessage(pokedexEntry_);
-                            break;
-                        }
-                    case 34:
-                        {
-                            if (playerStats_ == null)
-                            {
-                                playerStats_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats();
-                            }
-                            input.ReadMessage(playerStats_);
-                            break;
-                        }
-                    case 42:
-                        {
-                            if (playerCurrency_ == null)
-                            {
-                                playerCurrency_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency();
-                            }
-                            input.ReadMessage(playerCurrency_);
-                            break;
-                        }
-                    case 50:
-                        {
-                            if (playerCamera_ == null)
-                            {
-                                playerCamera_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera();
-                            }
-                            input.ReadMessage(playerCamera_);
-                            break;
-                        }
-                    case 58:
-                        {
-                            if (inventoryUpgrades_ == null)
-                            {
-                                inventoryUpgrades_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades();
-                            }
-                            input.ReadMessage(inventoryUpgrades_);
-                            break;
-                        }
-                    case 66:
-                        {
-                            if (appliedItems_ == null)
-                            {
-                                appliedItems_ = new global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems();
-                            }
-                            input.ReadMessage(appliedItems_);
-                            break;
-                        }
-                    case 74:
-                        {
-                            if (eggIncubators_ == null)
-                            {
-                                eggIncubators_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators();
-                            }
-                            input.ReadMessage(eggIncubators_);
-                            break;
-                        }
-                    case 82:
-                        {
-                            if (pokemonFamily_ == null)
-                            {
-                                pokemonFamily_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily();
-                            }
-                            input.ReadMessage(pokemonFamily_);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class RecycleInventoryItem : pb::IMessage<RecycleInventoryItem>
-    {
-        private static readonly pb::MessageParser<RecycleInventoryItem> _parser = new pb::MessageParser<RecycleInventoryItem>(() => new RecycleInventoryItem());
-        public static pb::MessageParser<RecycleInventoryItem> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[10]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public RecycleInventoryItem()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public RecycleInventoryItem(RecycleInventoryItem other) : this()
-        {
-            itemId_ = other.itemId_;
-            count_ = other.count_;
-        }
-
-        public RecycleInventoryItem Clone()
-        {
-            return new RecycleInventoryItem(this);
-        }
-
-        /// <summary>Field number for the "item_id" field.</summary>
-        public const int ItemIdFieldNumber = 1;
-        private global::AllEnum.ItemId itemId_ = 0;
-        public global::AllEnum.ItemId ItemId
-        {
-            get { return itemId_; }
-            set
-            {
-                itemId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "count" field.</summary>
-        public const int CountFieldNumber = 2;
-        private int count_;
-        public int Count
-        {
-            get { return count_; }
-            set
-            {
-                count_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as RecycleInventoryItem);
-        }
-
-        public bool Equals(RecycleInventoryItem other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ItemId != other.ItemId) return false;
-            if (Count != other.Count) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ItemId != 0) hash ^= ItemId.GetHashCode();
-            if (Count != 0) hash ^= Count.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ItemId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)ItemId);
-            }
-            if (Count != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(Count);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ItemId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
-            }
-            if (Count != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Count);
-            }
-            return size;
-        }
-
-        public void MergeFrom(RecycleInventoryItem other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ItemId != 0)
-            {
-                ItemId = other.ItemId;
-            }
-            if (other.Count != 0)
-            {
-                Count = other.Count;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            itemId_ = (global::AllEnum.ItemId)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            Count = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class Pokemon : pb::IMessage<Pokemon>
-    {
-        private static readonly pb::MessageParser<Pokemon> _parser = new pb::MessageParser<Pokemon>(() => new Pokemon());
-        public static pb::MessageParser<Pokemon> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[11]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public Pokemon()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public Pokemon(Pokemon other) : this()
-        {
-            id_ = other.id_;
-            pokemonType_ = other.pokemonType_;
-            cp_ = other.cp_;
-            stamina_ = other.stamina_;
-            staminaMax_ = other.staminaMax_;
-            move1_ = other.move1_;
-            move2_ = other.move2_;
-            deployedFortId_ = other.deployedFortId_;
-            ownerName_ = other.ownerName_;
-            isEgg_ = other.isEgg_;
-            eggKmWalkedTarget_ = other.eggKmWalkedTarget_;
-            eggKmWalkedStart_ = other.eggKmWalkedStart_;
-            origin_ = other.origin_;
-            heightM_ = other.heightM_;
-            weightKg_ = other.weightKg_;
-            individualAttack_ = other.individualAttack_;
-            individualDefense_ = other.individualDefense_;
-            individualStamina_ = other.individualStamina_;
-            cpMultiplier_ = other.cpMultiplier_;
-            pokeball_ = other.pokeball_;
-            capturedCellId_ = other.capturedCellId_;
-            battlesAttacked_ = other.battlesAttacked_;
-            battlesDefended_ = other.battlesDefended_;
-            eggIncubatorId_ = other.eggIncubatorId_;
-            creationTimeMs_ = other.creationTimeMs_;
-            numUpgrades_ = other.numUpgrades_;
-            additionalCpMultiplier_ = other.additionalCpMultiplier_;
-            favorite_ = other.favorite_;
-            nickname_ = other.nickname_;
-            fromFort_ = other.fromFort_;
-        }
-
-        public Pokemon Clone()
-        {
-            return new Pokemon(this);
-        }
-
-        /// <summary>Field number for the "id" field.</summary>
-        public const int IdFieldNumber = 1;
-        private int id_;
-        public int Id
-        {
-            get { return id_; }
-            set
-            {
-                id_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_type" field.</summary>
-        public const int PokemonTypeFieldNumber = 2;
-        private global::AllEnum.PokemonId pokemonType_ = 0;
-        public global::AllEnum.PokemonId PokemonType
-        {
-            get { return pokemonType_; }
-            set
-            {
-                pokemonType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cp" field.</summary>
-        public const int CpFieldNumber = 3;
-        private int cp_;
-        public int Cp
-        {
-            get { return cp_; }
-            set
-            {
-                cp_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stamina" field.</summary>
-        public const int StaminaFieldNumber = 4;
-        private int stamina_;
-        public int Stamina
-        {
-            get { return stamina_; }
-            set
-            {
-                stamina_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stamina_max" field.</summary>
-        public const int StaminaMaxFieldNumber = 5;
-        private int staminaMax_;
-        public int StaminaMax
-        {
-            get { return staminaMax_; }
-            set
-            {
-                staminaMax_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "move_1" field.</summary>
-        public const int Move1FieldNumber = 6;
-        private global::AllEnum.PokemonMove move1_ = 0;
-        public global::AllEnum.PokemonMove Move1
-        {
-            get { return move1_; }
-            set
-            {
-                move1_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "move_2" field.</summary>
-        public const int Move2FieldNumber = 7;
-        private global::AllEnum.PokemonMove move2_ = 0;
-        public global::AllEnum.PokemonMove Move2
-        {
-            get { return move2_; }
-            set
-            {
-                move2_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "deployed_fort_id" field.</summary>
-        public const int DeployedFortIdFieldNumber = 8;
-        private int deployedFortId_;
-        public int DeployedFortId
-        {
-            get { return deployedFortId_; }
-            set
-            {
-                deployedFortId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "owner_name" field.</summary>
-        public const int OwnerNameFieldNumber = 9;
-        private string ownerName_ = "";
-        public string OwnerName
-        {
-            get { return ownerName_; }
-            set
-            {
-                ownerName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "is_egg" field.</summary>
-        public const int IsEggFieldNumber = 10;
-        private bool isEgg_;
-        public bool IsEgg
-        {
-            get { return isEgg_; }
-            set
-            {
-                isEgg_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "egg_km_walked_target" field.</summary>
-        public const int EggKmWalkedTargetFieldNumber = 11;
-        private int eggKmWalkedTarget_;
-        public int EggKmWalkedTarget
-        {
-            get { return eggKmWalkedTarget_; }
-            set
-            {
-                eggKmWalkedTarget_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "egg_km_walked_start" field.</summary>
-        public const int EggKmWalkedStartFieldNumber = 12;
-        private int eggKmWalkedStart_;
-        public int EggKmWalkedStart
-        {
-            get { return eggKmWalkedStart_; }
-            set
-            {
-                eggKmWalkedStart_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "origin" field.</summary>
-        public const int OriginFieldNumber = 14;
-        private int origin_;
-        public int Origin
-        {
-            get { return origin_; }
-            set
-            {
-                origin_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "height_m" field.</summary>
-        public const int HeightMFieldNumber = 15;
-        private float heightM_;
-        public float HeightM
-        {
-            get { return heightM_; }
-            set
-            {
-                heightM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "weight_kg" field.</summary>
-        public const int WeightKgFieldNumber = 16;
-        private float weightKg_;
-        public float WeightKg
-        {
-            get { return weightKg_; }
-            set
-            {
-                weightKg_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "individual_attack" field.</summary>
-        public const int IndividualAttackFieldNumber = 17;
-        private int individualAttack_;
-        public int IndividualAttack
-        {
-            get { return individualAttack_; }
-            set
-            {
-                individualAttack_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "individual_defense" field.</summary>
-        public const int IndividualDefenseFieldNumber = 18;
-        private int individualDefense_;
-        public int IndividualDefense
-        {
-            get { return individualDefense_; }
-            set
-            {
-                individualDefense_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "individual_stamina" field.</summary>
-        public const int IndividualStaminaFieldNumber = 19;
-        private int individualStamina_;
-        public int IndividualStamina
-        {
-            get { return individualStamina_; }
-            set
-            {
-                individualStamina_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cp_multiplier" field.</summary>
-        public const int CpMultiplierFieldNumber = 20;
-        private int cpMultiplier_;
-        public int CpMultiplier
-        {
-            get { return cpMultiplier_; }
-            set
-            {
-                cpMultiplier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokeball" field.</summary>
-        public const int PokeballFieldNumber = 21;
-        private int pokeball_;
-        public int Pokeball
-        {
-            get { return pokeball_; }
-            set
-            {
-                pokeball_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "captured_cell_id" field.</summary>
-        public const int CapturedCellIdFieldNumber = 22;
-        private ulong capturedCellId_;
-        public ulong CapturedCellId
-        {
-            get { return capturedCellId_; }
-            set
-            {
-                capturedCellId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battles_attacked" field.</summary>
-        public const int BattlesAttackedFieldNumber = 23;
-        private int battlesAttacked_;
-        public int BattlesAttacked
-        {
-            get { return battlesAttacked_; }
-            set
-            {
-                battlesAttacked_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battles_defended" field.</summary>
-        public const int BattlesDefendedFieldNumber = 24;
-        private int battlesDefended_;
-        public int BattlesDefended
-        {
-            get { return battlesDefended_; }
-            set
-            {
-                battlesDefended_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "egg_incubator_id" field.</summary>
-        public const int EggIncubatorIdFieldNumber = 25;
-        private int eggIncubatorId_;
-        public int EggIncubatorId
-        {
-            get { return eggIncubatorId_; }
-            set
-            {
-                eggIncubatorId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "creation_time_ms" field.</summary>
-        public const int CreationTimeMsFieldNumber = 26;
-        private ulong creationTimeMs_;
-        public ulong CreationTimeMs
-        {
-            get { return creationTimeMs_; }
-            set
-            {
-                creationTimeMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "num_upgrades" field.</summary>
-        public const int NumUpgradesFieldNumber = 27;
-        private int numUpgrades_;
-        public int NumUpgrades
-        {
-            get { return numUpgrades_; }
-            set
-            {
-                numUpgrades_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "additional_cp_multiplier" field.</summary>
-        public const int AdditionalCpMultiplierFieldNumber = 28;
-        private int additionalCpMultiplier_;
-        public int AdditionalCpMultiplier
-        {
-            get { return additionalCpMultiplier_; }
-            set
-            {
-                additionalCpMultiplier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "favorite" field.</summary>
-        public const int FavoriteFieldNumber = 29;
-        private int favorite_;
-        public int Favorite
-        {
-            get { return favorite_; }
-            set
-            {
-                favorite_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "nickname" field.</summary>
-        public const int NicknameFieldNumber = 30;
-        private string nickname_ = "";
-        public string Nickname
-        {
-            get { return nickname_; }
-            set
-            {
-                nickname_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "from_fort" field.</summary>
-        public const int FromFortFieldNumber = 31;
-        private int fromFort_;
-        public int FromFort
-        {
-            get { return fromFort_; }
-            set
-            {
-                fromFort_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as Pokemon);
-        }
-
-        public bool Equals(Pokemon other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Id != other.Id) return false;
-            if (PokemonType != other.PokemonType) return false;
-            if (Cp != other.Cp) return false;
-            if (Stamina != other.Stamina) return false;
-            if (StaminaMax != other.StaminaMax) return false;
-            if (Move1 != other.Move1) return false;
-            if (Move2 != other.Move2) return false;
-            if (DeployedFortId != other.DeployedFortId) return false;
-            if (OwnerName != other.OwnerName) return false;
-            if (IsEgg != other.IsEgg) return false;
-            if (EggKmWalkedTarget != other.EggKmWalkedTarget) return false;
-            if (EggKmWalkedStart != other.EggKmWalkedStart) return false;
-            if (Origin != other.Origin) return false;
-            if (HeightM != other.HeightM) return false;
-            if (WeightKg != other.WeightKg) return false;
-            if (IndividualAttack != other.IndividualAttack) return false;
-            if (IndividualDefense != other.IndividualDefense) return false;
-            if (IndividualStamina != other.IndividualStamina) return false;
-            if (CpMultiplier != other.CpMultiplier) return false;
-            if (Pokeball != other.Pokeball) return false;
-            if (CapturedCellId != other.CapturedCellId) return false;
-            if (BattlesAttacked != other.BattlesAttacked) return false;
-            if (BattlesDefended != other.BattlesDefended) return false;
-            if (EggIncubatorId != other.EggIncubatorId) return false;
-            if (CreationTimeMs != other.CreationTimeMs) return false;
-            if (NumUpgrades != other.NumUpgrades) return false;
-            if (AdditionalCpMultiplier != other.AdditionalCpMultiplier) return false;
-            if (Favorite != other.Favorite) return false;
-            if (Nickname != other.Nickname) return false;
-            if (FromFort != other.FromFort) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Id != 0) hash ^= Id.GetHashCode();
-            if (PokemonType != 0) hash ^= PokemonType.GetHashCode();
-            if (Cp != 0) hash ^= Cp.GetHashCode();
-            if (Stamina != 0) hash ^= Stamina.GetHashCode();
-            if (StaminaMax != 0) hash ^= StaminaMax.GetHashCode();
-            if (Move1 != 0) hash ^= Move1.GetHashCode();
-            if (Move2 != 0) hash ^= Move2.GetHashCode();
-            if (DeployedFortId != 0) hash ^= DeployedFortId.GetHashCode();
-            if (OwnerName.Length != 0) hash ^= OwnerName.GetHashCode();
-            if (IsEgg != false) hash ^= IsEgg.GetHashCode();
-            if (EggKmWalkedTarget != 0) hash ^= EggKmWalkedTarget.GetHashCode();
-            if (EggKmWalkedStart != 0) hash ^= EggKmWalkedStart.GetHashCode();
-            if (Origin != 0) hash ^= Origin.GetHashCode();
-            if (HeightM != 0F) hash ^= HeightM.GetHashCode();
-            if (WeightKg != 0F) hash ^= WeightKg.GetHashCode();
-            if (IndividualAttack != 0) hash ^= IndividualAttack.GetHashCode();
-            if (IndividualDefense != 0) hash ^= IndividualDefense.GetHashCode();
-            if (IndividualStamina != 0) hash ^= IndividualStamina.GetHashCode();
-            if (CpMultiplier != 0) hash ^= CpMultiplier.GetHashCode();
-            if (Pokeball != 0) hash ^= Pokeball.GetHashCode();
-            if (CapturedCellId != 0UL) hash ^= CapturedCellId.GetHashCode();
-            if (BattlesAttacked != 0) hash ^= BattlesAttacked.GetHashCode();
-            if (BattlesDefended != 0) hash ^= BattlesDefended.GetHashCode();
-            if (EggIncubatorId != 0) hash ^= EggIncubatorId.GetHashCode();
-            if (CreationTimeMs != 0UL) hash ^= CreationTimeMs.GetHashCode();
-            if (NumUpgrades != 0) hash ^= NumUpgrades.GetHashCode();
-            if (AdditionalCpMultiplier != 0) hash ^= AdditionalCpMultiplier.GetHashCode();
-            if (Favorite != 0) hash ^= Favorite.GetHashCode();
-            if (Nickname.Length != 0) hash ^= Nickname.GetHashCode();
-            if (FromFort != 0) hash ^= FromFort.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Id != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(Id);
-            }
-            if (PokemonType != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)PokemonType);
-            }
-            if (Cp != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(Cp);
-            }
-            if (Stamina != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(Stamina);
-            }
-            if (StaminaMax != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(StaminaMax);
-            }
-            if (Move1 != 0)
-            {
-                output.WriteRawTag(48);
-                output.WriteEnum((int)Move1);
-            }
-            if (Move2 != 0)
-            {
-                output.WriteRawTag(56);
-                output.WriteEnum((int)Move2);
-            }
-            if (DeployedFortId != 0)
-            {
-                output.WriteRawTag(64);
-                output.WriteInt32(DeployedFortId);
-            }
-            if (OwnerName.Length != 0)
-            {
-                output.WriteRawTag(74);
-                output.WriteString(OwnerName);
-            }
-            if (IsEgg != false)
-            {
-                output.WriteRawTag(80);
-                output.WriteBool(IsEgg);
-            }
-            if (EggKmWalkedTarget != 0)
-            {
-                output.WriteRawTag(88);
-                output.WriteInt32(EggKmWalkedTarget);
-            }
-            if (EggKmWalkedStart != 0)
-            {
-                output.WriteRawTag(96);
-                output.WriteInt32(EggKmWalkedStart);
-            }
-            if (Origin != 0)
-            {
-                output.WriteRawTag(112);
-                output.WriteInt32(Origin);
-            }
-            if (HeightM != 0F)
-            {
-                output.WriteRawTag(125);
-                output.WriteFloat(HeightM);
-            }
-            if (WeightKg != 0F)
-            {
-                output.WriteRawTag(133, 1);
-                output.WriteFloat(WeightKg);
-            }
-            if (IndividualAttack != 0)
-            {
-                output.WriteRawTag(136, 1);
-                output.WriteInt32(IndividualAttack);
-            }
-            if (IndividualDefense != 0)
-            {
-                output.WriteRawTag(144, 1);
-                output.WriteInt32(IndividualDefense);
-            }
-            if (IndividualStamina != 0)
-            {
-                output.WriteRawTag(152, 1);
-                output.WriteInt32(IndividualStamina);
-            }
-            if (CpMultiplier != 0)
-            {
-                output.WriteRawTag(160, 1);
-                output.WriteInt32(CpMultiplier);
-            }
-            if (Pokeball != 0)
-            {
-                output.WriteRawTag(168, 1);
-                output.WriteInt32(Pokeball);
-            }
-            if (CapturedCellId != 0UL)
-            {
-                output.WriteRawTag(176, 1);
-                output.WriteUInt64(CapturedCellId);
-            }
-            if (BattlesAttacked != 0)
-            {
-                output.WriteRawTag(184, 1);
-                output.WriteInt32(BattlesAttacked);
-            }
-            if (BattlesDefended != 0)
-            {
-                output.WriteRawTag(192, 1);
-                output.WriteInt32(BattlesDefended);
-            }
-            if (EggIncubatorId != 0)
-            {
-                output.WriteRawTag(200, 1);
-                output.WriteInt32(EggIncubatorId);
-            }
-            if (CreationTimeMs != 0UL)
-            {
-                output.WriteRawTag(208, 1);
-                output.WriteUInt64(CreationTimeMs);
-            }
-            if (NumUpgrades != 0)
-            {
-                output.WriteRawTag(216, 1);
-                output.WriteInt32(NumUpgrades);
-            }
-            if (AdditionalCpMultiplier != 0)
-            {
-                output.WriteRawTag(224, 1);
-                output.WriteInt32(AdditionalCpMultiplier);
-            }
-            if (Favorite != 0)
-            {
-                output.WriteRawTag(232, 1);
-                output.WriteInt32(Favorite);
-            }
-            if (Nickname.Length != 0)
-            {
-                output.WriteRawTag(242, 1);
-                output.WriteString(Nickname);
-            }
-            if (FromFort != 0)
-            {
-                output.WriteRawTag(248, 1);
-                output.WriteInt32(FromFort);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Id != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Id);
-            }
-            if (PokemonType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonType);
-            }
-            if (Cp != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Cp);
-            }
-            if (Stamina != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Stamina);
-            }
-            if (StaminaMax != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(StaminaMax);
-            }
-            if (Move1 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Move1);
-            }
-            if (Move2 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Move2);
-            }
-            if (DeployedFortId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DeployedFortId);
-            }
-            if (OwnerName.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(OwnerName);
-            }
-            if (IsEgg != false)
-            {
-                size += 1 + 1;
-            }
-            if (EggKmWalkedTarget != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggKmWalkedTarget);
-            }
-            if (EggKmWalkedStart != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggKmWalkedStart);
-            }
-            if (Origin != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Origin);
-            }
-            if (HeightM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (WeightKg != 0F)
-            {
-                size += 2 + 4;
-            }
-            if (IndividualAttack != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualAttack);
-            }
-            if (IndividualDefense != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualDefense);
-            }
-            if (IndividualStamina != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualStamina);
-            }
-            if (CpMultiplier != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(CpMultiplier);
-            }
-            if (Pokeball != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(Pokeball);
-            }
-            if (CapturedCellId != 0UL)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeUInt64Size(CapturedCellId);
-            }
-            if (BattlesAttacked != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattlesAttacked);
-            }
-            if (BattlesDefended != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattlesDefended);
-            }
-            if (EggIncubatorId != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(EggIncubatorId);
-            }
-            if (CreationTimeMs != 0UL)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeUInt64Size(CreationTimeMs);
-            }
-            if (NumUpgrades != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(NumUpgrades);
-            }
-            if (AdditionalCpMultiplier != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(AdditionalCpMultiplier);
-            }
-            if (Favorite != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(Favorite);
-            }
-            if (Nickname.Length != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeStringSize(Nickname);
-            }
-            if (FromFort != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(FromFort);
-            }
-            return size;
-        }
-
-        public void MergeFrom(Pokemon other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Id != 0)
-            {
-                Id = other.Id;
-            }
-            if (other.PokemonType != 0)
-            {
-                PokemonType = other.PokemonType;
-            }
-            if (other.Cp != 0)
-            {
-                Cp = other.Cp;
-            }
-            if (other.Stamina != 0)
-            {
-                Stamina = other.Stamina;
-            }
-            if (other.StaminaMax != 0)
-            {
-                StaminaMax = other.StaminaMax;
-            }
-            if (other.Move1 != 0)
-            {
-                Move1 = other.Move1;
-            }
-            if (other.Move2 != 0)
-            {
-                Move2 = other.Move2;
-            }
-            if (other.DeployedFortId != 0)
-            {
-                DeployedFortId = other.DeployedFortId;
-            }
-            if (other.OwnerName.Length != 0)
-            {
-                OwnerName = other.OwnerName;
-            }
-            if (other.IsEgg != false)
-            {
-                IsEgg = other.IsEgg;
-            }
-            if (other.EggKmWalkedTarget != 0)
-            {
-                EggKmWalkedTarget = other.EggKmWalkedTarget;
-            }
-            if (other.EggKmWalkedStart != 0)
-            {
-                EggKmWalkedStart = other.EggKmWalkedStart;
-            }
-            if (other.Origin != 0)
-            {
-                Origin = other.Origin;
-            }
-            if (other.HeightM != 0F)
-            {
-                HeightM = other.HeightM;
-            }
-            if (other.WeightKg != 0F)
-            {
-                WeightKg = other.WeightKg;
-            }
-            if (other.IndividualAttack != 0)
-            {
-                IndividualAttack = other.IndividualAttack;
-            }
-            if (other.IndividualDefense != 0)
-            {
-                IndividualDefense = other.IndividualDefense;
-            }
-            if (other.IndividualStamina != 0)
-            {
-                IndividualStamina = other.IndividualStamina;
-            }
-            if (other.CpMultiplier != 0)
-            {
-                CpMultiplier = other.CpMultiplier;
-            }
-            if (other.Pokeball != 0)
-            {
-                Pokeball = other.Pokeball;
-            }
-            if (other.CapturedCellId != 0UL)
-            {
-                CapturedCellId = other.CapturedCellId;
-            }
-            if (other.BattlesAttacked != 0)
-            {
-                BattlesAttacked = other.BattlesAttacked;
-            }
-            if (other.BattlesDefended != 0)
-            {
-                BattlesDefended = other.BattlesDefended;
-            }
-            if (other.EggIncubatorId != 0)
-            {
-                EggIncubatorId = other.EggIncubatorId;
-            }
-            if (other.CreationTimeMs != 0UL)
-            {
-                CreationTimeMs = other.CreationTimeMs;
-            }
-            if (other.NumUpgrades != 0)
-            {
-                NumUpgrades = other.NumUpgrades;
-            }
-            if (other.AdditionalCpMultiplier != 0)
-            {
-                AdditionalCpMultiplier = other.AdditionalCpMultiplier;
-            }
-            if (other.Favorite != 0)
-            {
-                Favorite = other.Favorite;
-            }
-            if (other.Nickname.Length != 0)
-            {
-                Nickname = other.Nickname;
-            }
-            if (other.FromFort != 0)
-            {
-                FromFort = other.FromFort;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Id = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            pokemonType_ = (global::AllEnum.PokemonId)input.ReadEnum();
-                            break;
-                        }
-                    case 24:
-                        {
-                            Cp = input.ReadInt32();
-                            break;
-                        }
-                    case 32:
-                        {
-                            Stamina = input.ReadInt32();
-                            break;
-                        }
-                    case 40:
-                        {
-                            StaminaMax = input.ReadInt32();
-                            break;
-                        }
-                    case 48:
-                        {
-                            move1_ = (global::AllEnum.PokemonMove)input.ReadEnum();
-                            break;
-                        }
-                    case 56:
-                        {
-                            move2_ = (global::AllEnum.PokemonMove)input.ReadEnum();
-                            break;
-                        }
-                    case 64:
-                        {
-                            DeployedFortId = input.ReadInt32();
-                            break;
-                        }
-                    case 74:
-                        {
-                            OwnerName = input.ReadString();
-                            break;
-                        }
-                    case 80:
-                        {
-                            IsEgg = input.ReadBool();
-                            break;
-                        }
-                    case 88:
-                        {
-                            EggKmWalkedTarget = input.ReadInt32();
-                            break;
-                        }
-                    case 96:
-                        {
-                            EggKmWalkedStart = input.ReadInt32();
-                            break;
-                        }
-                    case 112:
-                        {
-                            Origin = input.ReadInt32();
-                            break;
-                        }
-                    case 125:
-                        {
-                            HeightM = input.ReadFloat();
-                            break;
-                        }
-                    case 133:
-                        {
-                            WeightKg = input.ReadFloat();
-                            break;
-                        }
-                    case 136:
-                        {
-                            IndividualAttack = input.ReadInt32();
-                            break;
-                        }
-                    case 144:
-                        {
-                            IndividualDefense = input.ReadInt32();
-                            break;
-                        }
-                    case 152:
-                        {
-                            IndividualStamina = input.ReadInt32();
-                            break;
-                        }
-                    case 160:
-                        {
-                            CpMultiplier = input.ReadInt32();
-                            break;
-                        }
-                    case 168:
-                        {
-                            Pokeball = input.ReadInt32();
-                            break;
-                        }
-                    case 176:
-                        {
-                            CapturedCellId = input.ReadUInt64();
-                            break;
-                        }
-                    case 184:
-                        {
-                            BattlesAttacked = input.ReadInt32();
-                            break;
-                        }
-                    case 192:
-                        {
-                            BattlesDefended = input.ReadInt32();
-                            break;
-                        }
-                    case 200:
-                        {
-                            EggIncubatorId = input.ReadInt32();
-                            break;
-                        }
-                    case 208:
-                        {
-                            CreationTimeMs = input.ReadUInt64();
-                            break;
-                        }
-                    case 216:
-                        {
-                            NumUpgrades = input.ReadInt32();
-                            break;
-                        }
-                    case 224:
-                        {
-                            AdditionalCpMultiplier = input.ReadInt32();
-                            break;
-                        }
-                    case 232:
-                        {
-                            Favorite = input.ReadInt32();
-                            break;
-                        }
-                    case 242:
-                        {
-                            Nickname = input.ReadString();
-                            break;
-                        }
-                    case 248:
-                        {
-                            FromFort = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class Item : pb::IMessage<Item>
-    {
-        private static readonly pb::MessageParser<Item> _parser = new pb::MessageParser<Item>(() => new Item());
-        public static pb::MessageParser<Item> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[12]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public Item()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public Item(Item other) : this()
-        {
-            item_ = other.item_;
-            count_ = other.count_;
-            unseen_ = other.unseen_;
-        }
-
-        public Item Clone()
-        {
-            return new Item(this);
-        }
-
-        /// <summary>Field number for the "item" field.</summary>
-        public const int Item_FieldNumber = 1;
-        private global::AllEnum.ItemType item_ = 0;
-        public global::AllEnum.ItemType Item_
-        {
-            get { return item_; }
-            set
-            {
-                item_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "count" field.</summary>
-        public const int CountFieldNumber = 2;
-        private int count_;
-        public int Count
-        {
-            get { return count_; }
-            set
-            {
-                count_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "unseen" field.</summary>
-        public const int UnseenFieldNumber = 3;
-        private bool unseen_;
-        public bool Unseen
-        {
-            get { return unseen_; }
-            set
-            {
-                unseen_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as Item);
-        }
-
-        public bool Equals(Item other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Item_ != other.Item_) return false;
-            if (Count != other.Count) return false;
-            if (Unseen != other.Unseen) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Item_ != 0) hash ^= Item_.GetHashCode();
-            if (Count != 0) hash ^= Count.GetHashCode();
-            if (Unseen != false) hash ^= Unseen.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Item_ != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)Item_);
-            }
-            if (Count != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(Count);
-            }
-            if (Unseen != false)
-            {
-                output.WriteRawTag(24);
-                output.WriteBool(Unseen);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Item_ != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Item_);
-            }
-            if (Count != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Count);
-            }
-            if (Unseen != false)
-            {
-                size += 1 + 1;
-            }
-            return size;
-        }
-
-        public void MergeFrom(Item other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Item_ != 0)
-            {
-                Item_ = other.Item_;
-            }
-            if (other.Count != 0)
-            {
-                Count = other.Count;
-            }
-            if (other.Unseen != false)
-            {
-                Unseen = other.Unseen;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            item_ = (global::AllEnum.ItemType)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            Count = input.ReadInt32();
-                            break;
-                        }
-                    case 24:
-                        {
-                            Unseen = input.ReadBool();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PokedexEntry : pb::IMessage<PokedexEntry>
-    {
-        private static readonly pb::MessageParser<PokedexEntry> _parser = new pb::MessageParser<PokedexEntry>(() => new PokedexEntry());
-        public static pb::MessageParser<PokedexEntry> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[13]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PokedexEntry()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PokedexEntry(PokedexEntry other) : this()
-        {
-            pokedexEntryNumber_ = other.pokedexEntryNumber_;
-            timesEncountered_ = other.timesEncountered_;
-            timesCaptured_ = other.timesCaptured_;
-            evolutionStonePieces_ = other.evolutionStonePieces_;
-            evolutionStones_ = other.evolutionStones_;
-        }
-
-        public PokedexEntry Clone()
-        {
-            return new PokedexEntry(this);
-        }
-
-        /// <summary>Field number for the "pokedex_entry_number" field.</summary>
-        public const int PokedexEntryNumberFieldNumber = 1;
-        private int pokedexEntryNumber_;
-        public int PokedexEntryNumber
-        {
-            get { return pokedexEntryNumber_; }
-            set
-            {
-                pokedexEntryNumber_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "times_encountered" field.</summary>
-        public const int TimesEncounteredFieldNumber = 2;
-        private int timesEncountered_;
-        public int TimesEncountered
-        {
-            get { return timesEncountered_; }
-            set
-            {
-                timesEncountered_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "times_captured" field.</summary>
-        public const int TimesCapturedFieldNumber = 3;
-        private int timesCaptured_;
-        public int TimesCaptured
-        {
-            get { return timesCaptured_; }
-            set
-            {
-                timesCaptured_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "evolution_stone_pieces" field.</summary>
-        public const int EvolutionStonePiecesFieldNumber = 4;
-        private int evolutionStonePieces_;
-        public int EvolutionStonePieces
-        {
-            get { return evolutionStonePieces_; }
-            set
-            {
-                evolutionStonePieces_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "evolution_stones" field.</summary>
-        public const int EvolutionStonesFieldNumber = 5;
-        private int evolutionStones_;
-        public int EvolutionStones
-        {
-            get { return evolutionStones_; }
-            set
-            {
-                evolutionStones_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PokedexEntry);
-        }
-
-        public bool Equals(PokedexEntry other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (PokedexEntryNumber != other.PokedexEntryNumber) return false;
-            if (TimesEncountered != other.TimesEncountered) return false;
-            if (TimesCaptured != other.TimesCaptured) return false;
-            if (EvolutionStonePieces != other.EvolutionStonePieces) return false;
-            if (EvolutionStones != other.EvolutionStones) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (PokedexEntryNumber != 0) hash ^= PokedexEntryNumber.GetHashCode();
-            if (TimesEncountered != 0) hash ^= TimesEncountered.GetHashCode();
-            if (TimesCaptured != 0) hash ^= TimesCaptured.GetHashCode();
-            if (EvolutionStonePieces != 0) hash ^= EvolutionStonePieces.GetHashCode();
-            if (EvolutionStones != 0) hash ^= EvolutionStones.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (PokedexEntryNumber != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(PokedexEntryNumber);
-            }
-            if (TimesEncountered != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(TimesEncountered);
-            }
-            if (TimesCaptured != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(TimesCaptured);
-            }
-            if (EvolutionStonePieces != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(EvolutionStonePieces);
-            }
-            if (EvolutionStones != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(EvolutionStones);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (PokedexEntryNumber != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokedexEntryNumber);
-            }
-            if (TimesEncountered != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TimesEncountered);
-            }
-            if (TimesCaptured != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TimesCaptured);
-            }
-            if (EvolutionStonePieces != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EvolutionStonePieces);
-            }
-            if (EvolutionStones != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EvolutionStones);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PokedexEntry other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.PokedexEntryNumber != 0)
-            {
-                PokedexEntryNumber = other.PokedexEntryNumber;
-            }
-            if (other.TimesEncountered != 0)
-            {
-                TimesEncountered = other.TimesEncountered;
-            }
-            if (other.TimesCaptured != 0)
-            {
-                TimesCaptured = other.TimesCaptured;
-            }
-            if (other.EvolutionStonePieces != 0)
-            {
-                EvolutionStonePieces = other.EvolutionStonePieces;
-            }
-            if (other.EvolutionStones != 0)
-            {
-                EvolutionStones = other.EvolutionStones;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            PokedexEntryNumber = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            TimesEncountered = input.ReadInt32();
-                            break;
-                        }
-                    case 24:
-                        {
-                            TimesCaptured = input.ReadInt32();
-                            break;
-                        }
-                    case 32:
-                        {
-                            EvolutionStonePieces = input.ReadInt32();
-                            break;
-                        }
-                    case 40:
-                        {
-                            EvolutionStones = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PlayerStats : pb::IMessage<PlayerStats>
-    {
-        private static readonly pb::MessageParser<PlayerStats> _parser = new pb::MessageParser<PlayerStats>(() => new PlayerStats());
-        public static pb::MessageParser<PlayerStats> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[14]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PlayerStats()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PlayerStats(PlayerStats other) : this()
-        {
-            level_ = other.level_;
-            experience_ = other.experience_;
-            prevLevelXp_ = other.prevLevelXp_;
-            nextLevelXp_ = other.nextLevelXp_;
-            kmWalked_ = other.kmWalked_;
-            pokemonsEncountered_ = other.pokemonsEncountered_;
-            uniquePokedexEntries_ = other.uniquePokedexEntries_;
-            pokemonsCaptured_ = other.pokemonsCaptured_;
-            evolutions_ = other.evolutions_;
-            pokeStopVisits_ = other.pokeStopVisits_;
-            pokeballsThrown_ = other.pokeballsThrown_;
-            eggsHatched_ = other.eggsHatched_;
-            bigMagikarpCaught_ = other.bigMagikarpCaught_;
-            battleAttackWon_ = other.battleAttackWon_;
-            battleAttackTotal_ = other.battleAttackTotal_;
-            battleDefendedWon_ = other.battleDefendedWon_;
-            battleTrainingWon_ = other.battleTrainingWon_;
-            battleTrainingTotal_ = other.battleTrainingTotal_;
-            prestigeRaisedTotal_ = other.prestigeRaisedTotal_;
-            prestigeDroppedTotal_ = other.prestigeDroppedTotal_;
-            pokemonDeployed_ = other.pokemonDeployed_;
-            pokemonCaughtByType_ = other.pokemonCaughtByType_;
-            smallRattataCaught_ = other.smallRattataCaught_;
-        }
-
-        public PlayerStats Clone()
-        {
-            return new PlayerStats(this);
-        }
-
-        /// <summary>Field number for the "level" field.</summary>
-        public const int LevelFieldNumber = 1;
-        private int level_;
-        public int Level
-        {
-            get { return level_; }
-            set
-            {
-                level_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "experience" field.</summary>
-        public const int ExperienceFieldNumber = 2;
-        private long experience_;
-        public long Experience
-        {
-            get { return experience_; }
-            set
-            {
-                experience_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "prev_level_xp" field.</summary>
-        public const int PrevLevelXpFieldNumber = 3;
-        private long prevLevelXp_;
-        public long PrevLevelXp
-        {
-            get { return prevLevelXp_; }
-            set
-            {
-                prevLevelXp_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "next_level_xp" field.</summary>
-        public const int NextLevelXpFieldNumber = 4;
-        private long nextLevelXp_;
-        public long NextLevelXp
-        {
-            get { return nextLevelXp_; }
-            set
-            {
-                nextLevelXp_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "km_walked" field.</summary>
-        public const int KmWalkedFieldNumber = 5;
-        private float kmWalked_;
-        public float KmWalked
-        {
-            get { return kmWalked_; }
-            set
-            {
-                kmWalked_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemons_encountered" field.</summary>
-        public const int PokemonsEncounteredFieldNumber = 6;
-        private int pokemonsEncountered_;
-        public int PokemonsEncountered
-        {
-            get { return pokemonsEncountered_; }
-            set
-            {
-                pokemonsEncountered_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "unique_pokedex_entries" field.</summary>
-        public const int UniquePokedexEntriesFieldNumber = 7;
-        private int uniquePokedexEntries_;
-        public int UniquePokedexEntries
-        {
-            get { return uniquePokedexEntries_; }
-            set
-            {
-                uniquePokedexEntries_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemons_captured" field.</summary>
-        public const int PokemonsCapturedFieldNumber = 8;
-        private int pokemonsCaptured_;
-        public int PokemonsCaptured
-        {
-            get { return pokemonsCaptured_; }
-            set
-            {
-                pokemonsCaptured_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "evolutions" field.</summary>
-        public const int EvolutionsFieldNumber = 9;
-        private int evolutions_;
-        public int Evolutions
-        {
-            get { return evolutions_; }
-            set
-            {
-                evolutions_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "poke_stop_visits" field.</summary>
-        public const int PokeStopVisitsFieldNumber = 10;
-        private int pokeStopVisits_;
-        public int PokeStopVisits
-        {
-            get { return pokeStopVisits_; }
-            set
-            {
-                pokeStopVisits_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokeballs_thrown" field.</summary>
-        public const int PokeballsThrownFieldNumber = 11;
-        private int pokeballsThrown_;
-        public int PokeballsThrown
-        {
-            get { return pokeballsThrown_; }
-            set
-            {
-                pokeballsThrown_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "eggs_hatched" field.</summary>
-        public const int EggsHatchedFieldNumber = 12;
-        private int eggsHatched_;
-        public int EggsHatched
-        {
-            get { return eggsHatched_; }
-            set
-            {
-                eggsHatched_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "big_magikarp_caught" field.</summary>
-        public const int BigMagikarpCaughtFieldNumber = 13;
-        private int bigMagikarpCaught_;
-        public int BigMagikarpCaught
-        {
-            get { return bigMagikarpCaught_; }
-            set
-            {
-                bigMagikarpCaught_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battle_attack_won" field.</summary>
-        public const int BattleAttackWonFieldNumber = 14;
-        private int battleAttackWon_;
-        public int BattleAttackWon
-        {
-            get { return battleAttackWon_; }
-            set
-            {
-                battleAttackWon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battle_attack_total" field.</summary>
-        public const int BattleAttackTotalFieldNumber = 15;
-        private int battleAttackTotal_;
-        public int BattleAttackTotal
-        {
-            get { return battleAttackTotal_; }
-            set
-            {
-                battleAttackTotal_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battle_defended_won" field.</summary>
-        public const int BattleDefendedWonFieldNumber = 16;
-        private int battleDefendedWon_;
-        public int BattleDefendedWon
-        {
-            get { return battleDefendedWon_; }
-            set
-            {
-                battleDefendedWon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battle_training_won" field.</summary>
-        public const int BattleTrainingWonFieldNumber = 17;
-        private int battleTrainingWon_;
-        public int BattleTrainingWon
-        {
-            get { return battleTrainingWon_; }
-            set
-            {
-                battleTrainingWon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battle_training_total" field.</summary>
-        public const int BattleTrainingTotalFieldNumber = 18;
-        private int battleTrainingTotal_;
-        public int BattleTrainingTotal
-        {
-            get { return battleTrainingTotal_; }
-            set
-            {
-                battleTrainingTotal_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "prestige_raised_total" field.</summary>
-        public const int PrestigeRaisedTotalFieldNumber = 19;
-        private int prestigeRaisedTotal_;
-        public int PrestigeRaisedTotal
-        {
-            get { return prestigeRaisedTotal_; }
-            set
-            {
-                prestigeRaisedTotal_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "prestige_dropped_total" field.</summary>
-        public const int PrestigeDroppedTotalFieldNumber = 20;
-        private int prestigeDroppedTotal_;
-        public int PrestigeDroppedTotal
-        {
-            get { return prestigeDroppedTotal_; }
-            set
-            {
-                prestigeDroppedTotal_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_deployed" field.</summary>
-        public const int PokemonDeployedFieldNumber = 21;
-        private int pokemonDeployed_;
-        public int PokemonDeployed
-        {
-            get { return pokemonDeployed_; }
-            set
-            {
-                pokemonDeployed_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_caught_by_type" field.</summary>
-        public const int PokemonCaughtByTypeFieldNumber = 22;
-        private pb::ByteString pokemonCaughtByType_ = pb::ByteString.Empty;
-        /// <summary>
-        ///  TODO: repeated PokemonType ??
-        /// </summary>
-        public pb::ByteString PokemonCaughtByType
-        {
-            get { return pokemonCaughtByType_; }
-            set
-            {
-                pokemonCaughtByType_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "small_rattata_caught" field.</summary>
-        public const int SmallRattataCaughtFieldNumber = 23;
-        private int smallRattataCaught_;
-        public int SmallRattataCaught
-        {
-            get { return smallRattataCaught_; }
-            set
-            {
-                smallRattataCaught_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PlayerStats);
-        }
-
-        public bool Equals(PlayerStats other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Level != other.Level) return false;
-            if (Experience != other.Experience) return false;
-            if (PrevLevelXp != other.PrevLevelXp) return false;
-            if (NextLevelXp != other.NextLevelXp) return false;
-            if (KmWalked != other.KmWalked) return false;
-            if (PokemonsEncountered != other.PokemonsEncountered) return false;
-            if (UniquePokedexEntries != other.UniquePokedexEntries) return false;
-            if (PokemonsCaptured != other.PokemonsCaptured) return false;
-            if (Evolutions != other.Evolutions) return false;
-            if (PokeStopVisits != other.PokeStopVisits) return false;
-            if (PokeballsThrown != other.PokeballsThrown) return false;
-            if (EggsHatched != other.EggsHatched) return false;
-            if (BigMagikarpCaught != other.BigMagikarpCaught) return false;
-            if (BattleAttackWon != other.BattleAttackWon) return false;
-            if (BattleAttackTotal != other.BattleAttackTotal) return false;
-            if (BattleDefendedWon != other.BattleDefendedWon) return false;
-            if (BattleTrainingWon != other.BattleTrainingWon) return false;
-            if (BattleTrainingTotal != other.BattleTrainingTotal) return false;
-            if (PrestigeRaisedTotal != other.PrestigeRaisedTotal) return false;
-            if (PrestigeDroppedTotal != other.PrestigeDroppedTotal) return false;
-            if (PokemonDeployed != other.PokemonDeployed) return false;
-            if (PokemonCaughtByType != other.PokemonCaughtByType) return false;
-            if (SmallRattataCaught != other.SmallRattataCaught) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Level != 0) hash ^= Level.GetHashCode();
-            if (Experience != 0L) hash ^= Experience.GetHashCode();
-            if (PrevLevelXp != 0L) hash ^= PrevLevelXp.GetHashCode();
-            if (NextLevelXp != 0L) hash ^= NextLevelXp.GetHashCode();
-            if (KmWalked != 0F) hash ^= KmWalked.GetHashCode();
-            if (PokemonsEncountered != 0) hash ^= PokemonsEncountered.GetHashCode();
-            if (UniquePokedexEntries != 0) hash ^= UniquePokedexEntries.GetHashCode();
-            if (PokemonsCaptured != 0) hash ^= PokemonsCaptured.GetHashCode();
-            if (Evolutions != 0) hash ^= Evolutions.GetHashCode();
-            if (PokeStopVisits != 0) hash ^= PokeStopVisits.GetHashCode();
-            if (PokeballsThrown != 0) hash ^= PokeballsThrown.GetHashCode();
-            if (EggsHatched != 0) hash ^= EggsHatched.GetHashCode();
-            if (BigMagikarpCaught != 0) hash ^= BigMagikarpCaught.GetHashCode();
-            if (BattleAttackWon != 0) hash ^= BattleAttackWon.GetHashCode();
-            if (BattleAttackTotal != 0) hash ^= BattleAttackTotal.GetHashCode();
-            if (BattleDefendedWon != 0) hash ^= BattleDefendedWon.GetHashCode();
-            if (BattleTrainingWon != 0) hash ^= BattleTrainingWon.GetHashCode();
-            if (BattleTrainingTotal != 0) hash ^= BattleTrainingTotal.GetHashCode();
-            if (PrestigeRaisedTotal != 0) hash ^= PrestigeRaisedTotal.GetHashCode();
-            if (PrestigeDroppedTotal != 0) hash ^= PrestigeDroppedTotal.GetHashCode();
-            if (PokemonDeployed != 0) hash ^= PokemonDeployed.GetHashCode();
-            if (PokemonCaughtByType.Length != 0) hash ^= PokemonCaughtByType.GetHashCode();
-            if (SmallRattataCaught != 0) hash ^= SmallRattataCaught.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Level != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(Level);
-            }
-            if (Experience != 0L)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt64(Experience);
-            }
-            if (PrevLevelXp != 0L)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt64(PrevLevelXp);
-            }
-            if (NextLevelXp != 0L)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt64(NextLevelXp);
-            }
-            if (KmWalked != 0F)
-            {
-                output.WriteRawTag(45);
-                output.WriteFloat(KmWalked);
-            }
-            if (PokemonsEncountered != 0)
-            {
-                output.WriteRawTag(48);
-                output.WriteInt32(PokemonsEncountered);
-            }
-            if (UniquePokedexEntries != 0)
-            {
-                output.WriteRawTag(56);
-                output.WriteInt32(UniquePokedexEntries);
-            }
-            if (PokemonsCaptured != 0)
-            {
-                output.WriteRawTag(64);
-                output.WriteInt32(PokemonsCaptured);
-            }
-            if (Evolutions != 0)
-            {
-                output.WriteRawTag(72);
-                output.WriteInt32(Evolutions);
-            }
-            if (PokeStopVisits != 0)
-            {
-                output.WriteRawTag(80);
-                output.WriteInt32(PokeStopVisits);
-            }
-            if (PokeballsThrown != 0)
-            {
-                output.WriteRawTag(88);
-                output.WriteInt32(PokeballsThrown);
-            }
-            if (EggsHatched != 0)
-            {
-                output.WriteRawTag(96);
-                output.WriteInt32(EggsHatched);
-            }
-            if (BigMagikarpCaught != 0)
-            {
-                output.WriteRawTag(104);
-                output.WriteInt32(BigMagikarpCaught);
-            }
-            if (BattleAttackWon != 0)
-            {
-                output.WriteRawTag(112);
-                output.WriteInt32(BattleAttackWon);
-            }
-            if (BattleAttackTotal != 0)
-            {
-                output.WriteRawTag(120);
-                output.WriteInt32(BattleAttackTotal);
-            }
-            if (BattleDefendedWon != 0)
-            {
-                output.WriteRawTag(128, 1);
-                output.WriteInt32(BattleDefendedWon);
-            }
-            if (BattleTrainingWon != 0)
-            {
-                output.WriteRawTag(136, 1);
-                output.WriteInt32(BattleTrainingWon);
-            }
-            if (BattleTrainingTotal != 0)
-            {
-                output.WriteRawTag(144, 1);
-                output.WriteInt32(BattleTrainingTotal);
-            }
-            if (PrestigeRaisedTotal != 0)
-            {
-                output.WriteRawTag(152, 1);
-                output.WriteInt32(PrestigeRaisedTotal);
-            }
-            if (PrestigeDroppedTotal != 0)
-            {
-                output.WriteRawTag(160, 1);
-                output.WriteInt32(PrestigeDroppedTotal);
-            }
-            if (PokemonDeployed != 0)
-            {
-                output.WriteRawTag(168, 1);
-                output.WriteInt32(PokemonDeployed);
-            }
-            if (PokemonCaughtByType.Length != 0)
-            {
-                output.WriteRawTag(178, 1);
-                output.WriteBytes(PokemonCaughtByType);
-            }
-            if (SmallRattataCaught != 0)
-            {
-                output.WriteRawTag(184, 1);
-                output.WriteInt32(SmallRattataCaught);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Level != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Level);
-            }
-            if (Experience != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(Experience);
-            }
-            if (PrevLevelXp != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(PrevLevelXp);
-            }
-            if (NextLevelXp != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(NextLevelXp);
-            }
-            if (KmWalked != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (PokemonsEncountered != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokemonsEncountered);
-            }
-            if (UniquePokedexEntries != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(UniquePokedexEntries);
-            }
-            if (PokemonsCaptured != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokemonsCaptured);
-            }
-            if (Evolutions != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Evolutions);
-            }
-            if (PokeStopVisits != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokeStopVisits);
-            }
-            if (PokeballsThrown != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokeballsThrown);
-            }
-            if (EggsHatched != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggsHatched);
-            }
-            if (BigMagikarpCaught != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BigMagikarpCaught);
-            }
-            if (BattleAttackWon != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BattleAttackWon);
-            }
-            if (BattleAttackTotal != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BattleAttackTotal);
-            }
-            if (BattleDefendedWon != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattleDefendedWon);
-            }
-            if (BattleTrainingWon != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattleTrainingWon);
-            }
-            if (BattleTrainingTotal != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattleTrainingTotal);
-            }
-            if (PrestigeRaisedTotal != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(PrestigeRaisedTotal);
-            }
-            if (PrestigeDroppedTotal != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(PrestigeDroppedTotal);
-            }
-            if (PokemonDeployed != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(PokemonDeployed);
-            }
-            if (PokemonCaughtByType.Length != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeBytesSize(PokemonCaughtByType);
-            }
-            if (SmallRattataCaught != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(SmallRattataCaught);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PlayerStats other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Level != 0)
-            {
-                Level = other.Level;
-            }
-            if (other.Experience != 0L)
-            {
-                Experience = other.Experience;
-            }
-            if (other.PrevLevelXp != 0L)
-            {
-                PrevLevelXp = other.PrevLevelXp;
-            }
-            if (other.NextLevelXp != 0L)
-            {
-                NextLevelXp = other.NextLevelXp;
-            }
-            if (other.KmWalked != 0F)
-            {
-                KmWalked = other.KmWalked;
-            }
-            if (other.PokemonsEncountered != 0)
-            {
-                PokemonsEncountered = other.PokemonsEncountered;
-            }
-            if (other.UniquePokedexEntries != 0)
-            {
-                UniquePokedexEntries = other.UniquePokedexEntries;
-            }
-            if (other.PokemonsCaptured != 0)
-            {
-                PokemonsCaptured = other.PokemonsCaptured;
-            }
-            if (other.Evolutions != 0)
-            {
-                Evolutions = other.Evolutions;
-            }
-            if (other.PokeStopVisits != 0)
-            {
-                PokeStopVisits = other.PokeStopVisits;
-            }
-            if (other.PokeballsThrown != 0)
-            {
-                PokeballsThrown = other.PokeballsThrown;
-            }
-            if (other.EggsHatched != 0)
-            {
-                EggsHatched = other.EggsHatched;
-            }
-            if (other.BigMagikarpCaught != 0)
-            {
-                BigMagikarpCaught = other.BigMagikarpCaught;
-            }
-            if (other.BattleAttackWon != 0)
-            {
-                BattleAttackWon = other.BattleAttackWon;
-            }
-            if (other.BattleAttackTotal != 0)
-            {
-                BattleAttackTotal = other.BattleAttackTotal;
-            }
-            if (other.BattleDefendedWon != 0)
-            {
-                BattleDefendedWon = other.BattleDefendedWon;
-            }
-            if (other.BattleTrainingWon != 0)
-            {
-                BattleTrainingWon = other.BattleTrainingWon;
-            }
-            if (other.BattleTrainingTotal != 0)
-            {
-                BattleTrainingTotal = other.BattleTrainingTotal;
-            }
-            if (other.PrestigeRaisedTotal != 0)
-            {
-                PrestigeRaisedTotal = other.PrestigeRaisedTotal;
-            }
-            if (other.PrestigeDroppedTotal != 0)
-            {
-                PrestigeDroppedTotal = other.PrestigeDroppedTotal;
-            }
-            if (other.PokemonDeployed != 0)
-            {
-                PokemonDeployed = other.PokemonDeployed;
-            }
-            if (other.PokemonCaughtByType.Length != 0)
-            {
-                PokemonCaughtByType = other.PokemonCaughtByType;
-            }
-            if (other.SmallRattataCaught != 0)
-            {
-                SmallRattataCaught = other.SmallRattataCaught;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Level = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            Experience = input.ReadInt64();
-                            break;
-                        }
-                    case 24:
-                        {
-                            PrevLevelXp = input.ReadInt64();
-                            break;
-                        }
-                    case 32:
-                        {
-                            NextLevelXp = input.ReadInt64();
-                            break;
-                        }
-                    case 45:
-                        {
-                            KmWalked = input.ReadFloat();
-                            break;
-                        }
-                    case 48:
-                        {
-                            PokemonsEncountered = input.ReadInt32();
-                            break;
-                        }
-                    case 56:
-                        {
-                            UniquePokedexEntries = input.ReadInt32();
-                            break;
-                        }
-                    case 64:
-                        {
-                            PokemonsCaptured = input.ReadInt32();
-                            break;
-                        }
-                    case 72:
-                        {
-                            Evolutions = input.ReadInt32();
-                            break;
-                        }
-                    case 80:
-                        {
-                            PokeStopVisits = input.ReadInt32();
-                            break;
-                        }
-                    case 88:
-                        {
-                            PokeballsThrown = input.ReadInt32();
-                            break;
-                        }
-                    case 96:
-                        {
-                            EggsHatched = input.ReadInt32();
-                            break;
-                        }
-                    case 104:
-                        {
-                            BigMagikarpCaught = input.ReadInt32();
-                            break;
-                        }
-                    case 112:
-                        {
-                            BattleAttackWon = input.ReadInt32();
-                            break;
-                        }
-                    case 120:
-                        {
-                            BattleAttackTotal = input.ReadInt32();
-                            break;
-                        }
-                    case 128:
-                        {
-                            BattleDefendedWon = input.ReadInt32();
-                            break;
-                        }
-                    case 136:
-                        {
-                            BattleTrainingWon = input.ReadInt32();
-                            break;
-                        }
-                    case 144:
-                        {
-                            BattleTrainingTotal = input.ReadInt32();
-                            break;
-                        }
-                    case 152:
-                        {
-                            PrestigeRaisedTotal = input.ReadInt32();
-                            break;
-                        }
-                    case 160:
-                        {
-                            PrestigeDroppedTotal = input.ReadInt32();
-                            break;
-                        }
-                    case 168:
-                        {
-                            PokemonDeployed = input.ReadInt32();
-                            break;
-                        }
-                    case 178:
-                        {
-                            PokemonCaughtByType = input.ReadBytes();
-                            break;
-                        }
-                    case 184:
-                        {
-                            SmallRattataCaught = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PlayerCurrency : pb::IMessage<PlayerCurrency>
-    {
-        private static readonly pb::MessageParser<PlayerCurrency> _parser = new pb::MessageParser<PlayerCurrency>(() => new PlayerCurrency());
-        public static pb::MessageParser<PlayerCurrency> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[15]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PlayerCurrency()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PlayerCurrency(PlayerCurrency other) : this()
-        {
-            gems_ = other.gems_;
-        }
-
-        public PlayerCurrency Clone()
-        {
-            return new PlayerCurrency(this);
-        }
-
-        /// <summary>Field number for the "gems" field.</summary>
-        public const int GemsFieldNumber = 1;
-        private int gems_;
-        public int Gems
-        {
-            get { return gems_; }
-            set
-            {
-                gems_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PlayerCurrency);
-        }
-
-        public bool Equals(PlayerCurrency other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Gems != other.Gems) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Gems != 0) hash ^= Gems.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Gems != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(Gems);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Gems != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Gems);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PlayerCurrency other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Gems != 0)
-            {
-                Gems = other.Gems;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Gems = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PlayerCamera : pb::IMessage<PlayerCamera>
-    {
-        private static readonly pb::MessageParser<PlayerCamera> _parser = new pb::MessageParser<PlayerCamera>(() => new PlayerCamera());
-        public static pb::MessageParser<PlayerCamera> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[16]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PlayerCamera()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PlayerCamera(PlayerCamera other) : this()
-        {
-            isDefaultCamera_ = other.isDefaultCamera_;
-        }
-
-        public PlayerCamera Clone()
-        {
-            return new PlayerCamera(this);
-        }
-
-        /// <summary>Field number for the "is_default_camera" field.</summary>
-        public const int IsDefaultCameraFieldNumber = 1;
-        private bool isDefaultCamera_;
-        public bool IsDefaultCamera
-        {
-            get { return isDefaultCamera_; }
-            set
-            {
-                isDefaultCamera_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PlayerCamera);
-        }
-
-        public bool Equals(PlayerCamera other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (IsDefaultCamera != other.IsDefaultCamera) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (IsDefaultCamera != false) hash ^= IsDefaultCamera.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (IsDefaultCamera != false)
-            {
-                output.WriteRawTag(8);
-                output.WriteBool(IsDefaultCamera);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (IsDefaultCamera != false)
-            {
-                size += 1 + 1;
-            }
-            return size;
-        }
-
-        public void MergeFrom(PlayerCamera other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.IsDefaultCamera != false)
-            {
-                IsDefaultCamera = other.IsDefaultCamera;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            IsDefaultCamera = input.ReadBool();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class InventoryUpgrades : pb::IMessage<InventoryUpgrades>
-    {
-        private static readonly pb::MessageParser<InventoryUpgrades> _parser = new pb::MessageParser<InventoryUpgrades>(() => new InventoryUpgrades());
-        public static pb::MessageParser<InventoryUpgrades> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[17]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public InventoryUpgrades()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public InventoryUpgrades(InventoryUpgrades other) : this()
-        {
-            inventoryUpgrades_ = other.inventoryUpgrades_.Clone();
-        }
-
-        public InventoryUpgrades Clone()
-        {
-            return new InventoryUpgrades(this);
-        }
-
-        /// <summary>Field number for the "inventory_upgrades" field.</summary>
-        public const int InventoryUpgrades_FieldNumber = 1;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade> _repeated_inventoryUpgrades_codec
-            = pb::FieldCodec.ForMessage(10, global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade> inventoryUpgrades_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade> InventoryUpgrades_
-        {
-            get { return inventoryUpgrades_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as InventoryUpgrades);
-        }
-
-        public bool Equals(InventoryUpgrades other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!inventoryUpgrades_.Equals(other.inventoryUpgrades_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= inventoryUpgrades_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            inventoryUpgrades_.WriteTo(output, _repeated_inventoryUpgrades_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += inventoryUpgrades_.CalculateSize(_repeated_inventoryUpgrades_codec);
-            return size;
-        }
-
-        public void MergeFrom(InventoryUpgrades other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            inventoryUpgrades_.Add(other.inventoryUpgrades_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            inventoryUpgrades_.AddEntriesFrom(input, _repeated_inventoryUpgrades_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class InventoryUpgrade : pb::IMessage<InventoryUpgrade>
-    {
-        private static readonly pb::MessageParser<InventoryUpgrade> _parser = new pb::MessageParser<InventoryUpgrade>(() => new InventoryUpgrade());
-        public static pb::MessageParser<InventoryUpgrade> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[18]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public InventoryUpgrade()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public InventoryUpgrade(InventoryUpgrade other) : this()
-        {
-            item_ = other.item_;
-            upgradeType_ = other.upgradeType_;
-            additionalStorage_ = other.additionalStorage_;
-        }
-
-        public InventoryUpgrade Clone()
-        {
-            return new InventoryUpgrade(this);
-        }
-
-        /// <summary>Field number for the "item" field.</summary>
-        public const int ItemFieldNumber = 1;
-        private global::AllEnum.ItemType item_ = 0;
-        public global::AllEnum.ItemType Item
-        {
-            get { return item_; }
-            set
-            {
-                item_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "upgrade_type" field.</summary>
-        public const int UpgradeTypeFieldNumber = 2;
-        private global::AllEnum.InventoryUpgradeType upgradeType_ = 0;
-        public global::AllEnum.InventoryUpgradeType UpgradeType
-        {
-            get { return upgradeType_; }
-            set
-            {
-                upgradeType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "additional_storage" field.</summary>
-        public const int AdditionalStorageFieldNumber = 3;
-        private int additionalStorage_;
-        public int AdditionalStorage
-        {
-            get { return additionalStorage_; }
-            set
-            {
-                additionalStorage_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as InventoryUpgrade);
-        }
-
-        public bool Equals(InventoryUpgrade other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Item != other.Item) return false;
-            if (UpgradeType != other.UpgradeType) return false;
-            if (AdditionalStorage != other.AdditionalStorage) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Item != 0) hash ^= Item.GetHashCode();
-            if (UpgradeType != 0) hash ^= UpgradeType.GetHashCode();
-            if (AdditionalStorage != 0) hash ^= AdditionalStorage.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Item != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)Item);
-            }
-            if (UpgradeType != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)UpgradeType);
-            }
-            if (AdditionalStorage != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(AdditionalStorage);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Item != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Item);
-            }
-            if (UpgradeType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)UpgradeType);
-            }
-            if (AdditionalStorage != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(AdditionalStorage);
-            }
-            return size;
-        }
-
-        public void MergeFrom(InventoryUpgrade other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Item != 0)
-            {
-                Item = other.Item;
-            }
-            if (other.UpgradeType != 0)
-            {
-                UpgradeType = other.UpgradeType;
-            }
-            if (other.AdditionalStorage != 0)
-            {
-                AdditionalStorage = other.AdditionalStorage;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            item_ = (global::AllEnum.ItemType)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            upgradeType_ = (global::AllEnum.InventoryUpgradeType)input.ReadEnum();
-                            break;
-                        }
-                    case 24:
-                        {
-                            AdditionalStorage = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class AppliedItems : pb::IMessage<AppliedItems>
-    {
-        private static readonly pb::MessageParser<AppliedItems> _parser = new pb::MessageParser<AppliedItems>(() => new AppliedItems());
-        public static pb::MessageParser<AppliedItems> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[19]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public AppliedItems()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public AppliedItems(AppliedItems other) : this()
-        {
-            Item = other.item_ != null ? other.Item.Clone() : null;
-        }
-
-        public AppliedItems Clone()
-        {
-            return new AppliedItems(this);
-        }
-
-        /// <summary>Field number for the "item" field.</summary>
-        public const int ItemFieldNumber = 4;
-        private global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem item_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem Item
-        {
-            get { return item_; }
-            set
-            {
-                item_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as AppliedItems);
-        }
-
-        public bool Equals(AppliedItems other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!object.Equals(Item, other.Item)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (item_ != null) hash ^= Item.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (item_ != null)
-            {
-                output.WriteRawTag(34);
-                output.WriteMessage(Item);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (item_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Item);
-            }
-            return size;
-        }
-
-        public void MergeFrom(AppliedItems other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.item_ != null)
-            {
-                if (item_ == null)
-                {
-                    item_ = new global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem();
-                }
-                Item.MergeFrom(other.Item);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 34:
-                        {
-                            if (item_ == null)
-                            {
-                                item_ = new global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem();
-                            }
-                            input.ReadMessage(item_);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class AppliedItem : pb::IMessage<AppliedItem>
-    {
-        private static readonly pb::MessageParser<AppliedItem> _parser = new pb::MessageParser<AppliedItem>(() => new AppliedItem());
-        public static pb::MessageParser<AppliedItem> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[20]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public AppliedItem()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public AppliedItem(AppliedItem other) : this()
-        {
-            itemType_ = other.itemType_;
-            itemTypeCategory_ = other.itemTypeCategory_;
-            expireMs_ = other.expireMs_;
-            appliedMs_ = other.appliedMs_;
-        }
-
-        public AppliedItem Clone()
-        {
-            return new AppliedItem(this);
-        }
-
-        /// <summary>Field number for the "item_type" field.</summary>
-        public const int ItemTypeFieldNumber = 1;
-        private global::AllEnum.ItemId itemType_ = 0;
-        public global::AllEnum.ItemId ItemType
-        {
-            get { return itemType_; }
-            set
-            {
-                itemType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item_type_category" field.</summary>
-        public const int ItemTypeCategoryFieldNumber = 2;
-        private global::AllEnum.ItemType itemTypeCategory_ = 0;
-        public global::AllEnum.ItemType ItemTypeCategory
-        {
-            get { return itemTypeCategory_; }
-            set
-            {
-                itemTypeCategory_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "expire_ms" field.</summary>
-        public const int ExpireMsFieldNumber = 3;
-        private long expireMs_;
-        public long ExpireMs
-        {
-            get { return expireMs_; }
-            set
-            {
-                expireMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "applied_ms" field.</summary>
-        public const int AppliedMsFieldNumber = 4;
-        private long appliedMs_;
-        public long AppliedMs
-        {
-            get { return appliedMs_; }
-            set
-            {
-                appliedMs_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as AppliedItem);
-        }
-
-        public bool Equals(AppliedItem other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ItemType != other.ItemType) return false;
-            if (ItemTypeCategory != other.ItemTypeCategory) return false;
-            if (ExpireMs != other.ExpireMs) return false;
-            if (AppliedMs != other.AppliedMs) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ItemType != 0) hash ^= ItemType.GetHashCode();
-            if (ItemTypeCategory != 0) hash ^= ItemTypeCategory.GetHashCode();
-            if (ExpireMs != 0L) hash ^= ExpireMs.GetHashCode();
-            if (AppliedMs != 0L) hash ^= AppliedMs.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ItemType != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)ItemType);
-            }
-            if (ItemTypeCategory != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)ItemTypeCategory);
-            }
-            if (ExpireMs != 0L)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt64(ExpireMs);
-            }
-            if (AppliedMs != 0L)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt64(AppliedMs);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ItemType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemType);
-            }
-            if (ItemTypeCategory != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemTypeCategory);
-            }
-            if (ExpireMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(ExpireMs);
-            }
-            if (AppliedMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(AppliedMs);
-            }
-            return size;
-        }
-
-        public void MergeFrom(AppliedItem other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ItemType != 0)
-            {
-                ItemType = other.ItemType;
-            }
-            if (other.ItemTypeCategory != 0)
-            {
-                ItemTypeCategory = other.ItemTypeCategory;
-            }
-            if (other.ExpireMs != 0L)
-            {
-                ExpireMs = other.ExpireMs;
-            }
-            if (other.AppliedMs != 0L)
-            {
-                AppliedMs = other.AppliedMs;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            itemType_ = (global::AllEnum.ItemId)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            itemTypeCategory_ = (global::AllEnum.ItemType)input.ReadEnum();
-                            break;
-                        }
-                    case 24:
-                        {
-                            ExpireMs = input.ReadInt64();
-                            break;
-                        }
-                    case 32:
-                        {
-                            AppliedMs = input.ReadInt64();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EggIncubators : pb::IMessage<EggIncubators>
-    {
-        private static readonly pb::MessageParser<EggIncubators> _parser = new pb::MessageParser<EggIncubators>(() => new EggIncubators());
-        public static pb::MessageParser<EggIncubators> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[21]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EggIncubators()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EggIncubators(EggIncubators other) : this()
-        {
-            EggIncubator = other.eggIncubator_ != null ? other.EggIncubator.Clone() : null;
-        }
-
-        public EggIncubators Clone()
-        {
-            return new EggIncubators(this);
-        }
-
-        /// <summary>Field number for the "egg_incubator" field.</summary>
-        public const int EggIncubatorFieldNumber = 1;
-        private global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator eggIncubator_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator EggIncubator
-        {
-            get { return eggIncubator_; }
-            set
-            {
-                eggIncubator_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EggIncubators);
-        }
-
-        public bool Equals(EggIncubators other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!object.Equals(EggIncubator, other.EggIncubator)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (eggIncubator_ != null) hash ^= EggIncubator.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (eggIncubator_ != null)
-            {
-                output.WriteRawTag(10);
-                output.WriteMessage(EggIncubator);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (eggIncubator_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(EggIncubator);
-            }
-            return size;
-        }
-
-        public void MergeFrom(EggIncubators other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.eggIncubator_ != null)
-            {
-                if (eggIncubator_ == null)
-                {
-                    eggIncubator_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator();
-                }
-                EggIncubator.MergeFrom(other.EggIncubator);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            if (eggIncubator_ == null)
-                            {
-                                eggIncubator_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator();
-                            }
-                            input.ReadMessage(eggIncubator_);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EggIncubator : pb::IMessage<EggIncubator>
-    {
-        private static readonly pb::MessageParser<EggIncubator> _parser = new pb::MessageParser<EggIncubator>(() => new EggIncubator());
-        public static pb::MessageParser<EggIncubator> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[22]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EggIncubator()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EggIncubator(EggIncubator other) : this()
-        {
-            itemId_ = other.itemId_;
-            itemType_ = other.itemType_;
-            incubatorType_ = other.incubatorType_;
-            usesRemaining_ = other.usesRemaining_;
-            pokemonId_ = other.pokemonId_;
-            startKmWalked_ = other.startKmWalked_;
-            targetKmWalked_ = other.targetKmWalked_;
-        }
-
-        public EggIncubator Clone()
-        {
-            return new EggIncubator(this);
-        }
-
-        /// <summary>Field number for the "item_id" field.</summary>
-        public const int ItemIdFieldNumber = 1;
-        private string itemId_ = "";
-        public string ItemId
-        {
-            get { return itemId_; }
-            set
-            {
-                itemId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "item_type" field.</summary>
-        public const int ItemTypeFieldNumber = 2;
-        private global::AllEnum.ItemType itemType_ = 0;
-        public global::AllEnum.ItemType ItemType
-        {
-            get { return itemType_; }
-            set
-            {
-                itemType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "incubator_type" field.</summary>
-        public const int IncubatorTypeFieldNumber = 3;
-        private global::AllEnum.EggIncubatorType incubatorType_ = 0;
-        public global::AllEnum.EggIncubatorType IncubatorType
-        {
-            get { return incubatorType_; }
-            set
-            {
-                incubatorType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "uses_remaining" field.</summary>
-        public const int UsesRemainingFieldNumber = 4;
-        private int usesRemaining_;
-        public int UsesRemaining
-        {
-            get { return usesRemaining_; }
-            set
-            {
-                usesRemaining_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_id" field.</summary>
-        public const int PokemonIdFieldNumber = 5;
-        private long pokemonId_;
-        /// <summary>
-        ///  TODO: Check if is PokemonType
-        /// </summary>
-        public long PokemonId
-        {
-            get { return pokemonId_; }
-            set
-            {
-                pokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "start_km_walked" field.</summary>
-        public const int StartKmWalkedFieldNumber = 6;
-        private double startKmWalked_;
-        public double StartKmWalked
-        {
-            get { return startKmWalked_; }
-            set
-            {
-                startKmWalked_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "target_km_walked" field.</summary>
-        public const int TargetKmWalkedFieldNumber = 7;
-        private double targetKmWalked_;
-        public double TargetKmWalked
-        {
-            get { return targetKmWalked_; }
-            set
-            {
-                targetKmWalked_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EggIncubator);
-        }
-
-        public bool Equals(EggIncubator other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ItemId != other.ItemId) return false;
-            if (ItemType != other.ItemType) return false;
-            if (IncubatorType != other.IncubatorType) return false;
-            if (UsesRemaining != other.UsesRemaining) return false;
-            if (PokemonId != other.PokemonId) return false;
-            if (StartKmWalked != other.StartKmWalked) return false;
-            if (TargetKmWalked != other.TargetKmWalked) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ItemId.Length != 0) hash ^= ItemId.GetHashCode();
-            if (ItemType != 0) hash ^= ItemType.GetHashCode();
-            if (IncubatorType != 0) hash ^= IncubatorType.GetHashCode();
-            if (UsesRemaining != 0) hash ^= UsesRemaining.GetHashCode();
-            if (PokemonId != 0L) hash ^= PokemonId.GetHashCode();
-            if (StartKmWalked != 0D) hash ^= StartKmWalked.GetHashCode();
-            if (TargetKmWalked != 0D) hash ^= TargetKmWalked.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ItemId.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(ItemId);
-            }
-            if (ItemType != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)ItemType);
-            }
-            if (IncubatorType != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteEnum((int)IncubatorType);
-            }
-            if (UsesRemaining != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(UsesRemaining);
-            }
-            if (PokemonId != 0L)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt64(PokemonId);
-            }
-            if (StartKmWalked != 0D)
-            {
-                output.WriteRawTag(49);
-                output.WriteDouble(StartKmWalked);
-            }
-            if (TargetKmWalked != 0D)
-            {
-                output.WriteRawTag(57);
-                output.WriteDouble(TargetKmWalked);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ItemId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(ItemId);
-            }
-            if (ItemType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemType);
-            }
-            if (IncubatorType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)IncubatorType);
-            }
-            if (UsesRemaining != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(UsesRemaining);
-            }
-            if (PokemonId != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(PokemonId);
-            }
-            if (StartKmWalked != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (TargetKmWalked != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(EggIncubator other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ItemId.Length != 0)
-            {
-                ItemId = other.ItemId;
-            }
-            if (other.ItemType != 0)
-            {
-                ItemType = other.ItemType;
-            }
-            if (other.IncubatorType != 0)
-            {
-                IncubatorType = other.IncubatorType;
-            }
-            if (other.UsesRemaining != 0)
-            {
-                UsesRemaining = other.UsesRemaining;
-            }
-            if (other.PokemonId != 0L)
-            {
-                PokemonId = other.PokemonId;
-            }
-            if (other.StartKmWalked != 0D)
-            {
-                StartKmWalked = other.StartKmWalked;
-            }
-            if (other.TargetKmWalked != 0D)
-            {
-                TargetKmWalked = other.TargetKmWalked;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            ItemId = input.ReadString();
-                            break;
-                        }
-                    case 16:
-                        {
-                            itemType_ = (global::AllEnum.ItemType)input.ReadEnum();
-                            break;
-                        }
-                    case 24:
-                        {
-                            incubatorType_ = (global::AllEnum.EggIncubatorType)input.ReadEnum();
-                            break;
-                        }
-                    case 32:
-                        {
-                            UsesRemaining = input.ReadInt32();
-                            break;
-                        }
-                    case 40:
-                        {
-                            PokemonId = input.ReadInt64();
-                            break;
-                        }
-                    case 49:
-                        {
-                            StartKmWalked = input.ReadDouble();
-                            break;
-                        }
-                    case 57:
-                        {
-                            TargetKmWalked = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PokemonFamily : pb::IMessage<PokemonFamily>
-    {
-        private static readonly pb::MessageParser<PokemonFamily> _parser = new pb::MessageParser<PokemonFamily>(() => new PokemonFamily());
-        public static pb::MessageParser<PokemonFamily> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[23]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PokemonFamily()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PokemonFamily(PokemonFamily other) : this()
-        {
-            familyId_ = other.familyId_;
-            candy_ = other.candy_;
-        }
-
-        public PokemonFamily Clone()
-        {
-            return new PokemonFamily(this);
-        }
-
-        /// <summary>Field number for the "family_id" field.</summary>
-        public const int FamilyIdFieldNumber = 1;
-        private global::AllEnum.PokemonFamilyId familyId_ = 0;
-        public global::AllEnum.PokemonFamilyId FamilyId
-        {
-            get { return familyId_; }
-            set
-            {
-                familyId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "candy" field.</summary>
-        public const int CandyFieldNumber = 2;
-        private int candy_;
-        public int Candy
-        {
-            get { return candy_; }
-            set
-            {
-                candy_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PokemonFamily);
-        }
-
-        public bool Equals(PokemonFamily other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (FamilyId != other.FamilyId) return false;
-            if (Candy != other.Candy) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (FamilyId != 0) hash ^= FamilyId.GetHashCode();
-            if (Candy != 0) hash ^= Candy.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (FamilyId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)FamilyId);
-            }
-            if (Candy != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(Candy);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (FamilyId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)FamilyId);
-            }
-            if (Candy != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Candy);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PokemonFamily other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.FamilyId != 0)
-            {
-                FamilyId = other.FamilyId;
-            }
-            if (other.Candy != 0)
-            {
-                Candy = other.Candy;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            familyId_ = (global::AllEnum.PokemonFamilyId)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            Candy = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GetMapObjectsRequest : pb::IMessage<GetMapObjectsRequest>
-    {
-        private static readonly pb::MessageParser<GetMapObjectsRequest> _parser = new pb::MessageParser<GetMapObjectsRequest>(() => new GetMapObjectsRequest());
-        public static pb::MessageParser<GetMapObjectsRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[24]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GetMapObjectsRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GetMapObjectsRequest(GetMapObjectsRequest other) : this()
-        {
-            cellId_ = other.cellId_;
-            sinceTimestampMs_ = other.sinceTimestampMs_;
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-        }
-
-        public GetMapObjectsRequest Clone()
-        {
-            return new GetMapObjectsRequest(this);
-        }
-
-        /// <summary>Field number for the "cell_id" field.</summary>
-        public const int CellIdFieldNumber = 1;
-        private pb::ByteString cellId_ = pb::ByteString.Empty;
-        public pb::ByteString CellId
-        {
-            get { return cellId_; }
-            set
-            {
-                cellId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "since_timestamp_ms" field.</summary>
-        public const int SinceTimestampMsFieldNumber = 2;
-        private pb::ByteString sinceTimestampMs_ = pb::ByteString.Empty;
-        public pb::ByteString SinceTimestampMs
-        {
-            get { return sinceTimestampMs_; }
-            set
-            {
-                sinceTimestampMs_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 3;
-        private double latitude_;
-        public double Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 4;
-        private double longitude_;
-        public double Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GetMapObjectsRequest);
-        }
-
-        public bool Equals(GetMapObjectsRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (CellId != other.CellId) return false;
-            if (SinceTimestampMs != other.SinceTimestampMs) return false;
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (CellId.Length != 0) hash ^= CellId.GetHashCode();
-            if (SinceTimestampMs.Length != 0) hash ^= SinceTimestampMs.GetHashCode();
-            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (CellId.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteBytes(CellId);
-            }
-            if (SinceTimestampMs.Length != 0)
-            {
-                output.WriteRawTag(18);
-                output.WriteBytes(SinceTimestampMs);
-            }
-            if (Latitude != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(Latitude);
-            }
-            if (Longitude != 0D)
-            {
-                output.WriteRawTag(33);
-                output.WriteDouble(Longitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (CellId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeBytesSize(CellId);
-            }
-            if (SinceTimestampMs.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeBytesSize(SinceTimestampMs);
-            }
-            if (Latitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Longitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(GetMapObjectsRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.CellId.Length != 0)
-            {
-                CellId = other.CellId;
-            }
-            if (other.SinceTimestampMs.Length != 0)
-            {
-                SinceTimestampMs = other.SinceTimestampMs;
-            }
-            if (other.Latitude != 0D)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0D)
-            {
-                Longitude = other.Longitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            CellId = input.ReadBytes();
-                            break;
-                        }
-                    case 18:
-                        {
-                            SinceTimestampMs = input.ReadBytes();
-                            break;
-                        }
-                    case 25:
-                        {
-                            Latitude = input.ReadDouble();
-                            break;
-                        }
-                    case 33:
-                        {
-                            Longitude = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GetMapObjectsResponse : pb::IMessage<GetMapObjectsResponse>
-    {
-        private static readonly pb::MessageParser<GetMapObjectsResponse> _parser = new pb::MessageParser<GetMapObjectsResponse>(() => new GetMapObjectsResponse());
-        public static pb::MessageParser<GetMapObjectsResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[25]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GetMapObjectsResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GetMapObjectsResponse(GetMapObjectsResponse other) : this()
-        {
-            mapCells_ = other.mapCells_.Clone();
-            status_ = other.status_;
-        }
-
-        public GetMapObjectsResponse Clone()
-        {
-            return new GetMapObjectsResponse(this);
-        }
-
-        /// <summary>Field number for the "map_cells" field.</summary>
-        public const int MapCellsFieldNumber = 1;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.MapCell> _repeated_mapCells_codec
-            = pb::FieldCodec.ForMessage(10, global::PokemonGo.RocketAPI.GeneratedCode.MapCell.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapCell> mapCells_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapCell>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapCell> MapCells
-        {
-            get { return mapCells_; }
-        }
-
-        /// <summary>Field number for the "status" field.</summary>
-        public const int StatusFieldNumber = 2;
-        private global::AllEnum.MapObjectsStatus status_ = 0;
-        public global::AllEnum.MapObjectsStatus Status
-        {
-            get { return status_; }
-            set
-            {
-                status_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GetMapObjectsResponse);
-        }
-
-        public bool Equals(GetMapObjectsResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!mapCells_.Equals(other.mapCells_)) return false;
-            if (Status != other.Status) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= mapCells_.GetHashCode();
-            if (Status != 0) hash ^= Status.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            mapCells_.WriteTo(output, _repeated_mapCells_codec);
-            if (Status != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)Status);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += mapCells_.CalculateSize(_repeated_mapCells_codec);
-            if (Status != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Status);
-            }
-            return size;
-        }
-
-        public void MergeFrom(GetMapObjectsResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            mapCells_.Add(other.mapCells_);
-            if (other.Status != 0)
-            {
-                Status = other.Status;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            mapCells_.AddEntriesFrom(input, _repeated_mapCells_codec);
-                            break;
-                        }
-                    case 16:
-                        {
-                            status_ = (global::AllEnum.MapObjectsStatus)input.ReadEnum();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class MapCell : pb::IMessage<MapCell>
-    {
-        private static readonly pb::MessageParser<MapCell> _parser = new pb::MessageParser<MapCell>(() => new MapCell());
-        public static pb::MessageParser<MapCell> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[26]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public MapCell()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public MapCell(MapCell other) : this()
-        {
-            s2CellId_ = other.s2CellId_;
-            currentTimestampMs_ = other.currentTimestampMs_;
-            forts_ = other.forts_.Clone();
-            spawnPoints_ = other.spawnPoints_.Clone();
-            deletedObjects_ = other.deletedObjects_.Clone();
-            isTruncatedList_ = other.isTruncatedList_;
-            fortSummaries_ = other.fortSummaries_.Clone();
-            decimatedSpawnPoints_ = other.decimatedSpawnPoints_.Clone();
-            wildPokemons_ = other.wildPokemons_.Clone();
-            catchablePokemons_ = other.catchablePokemons_.Clone();
-            nearbyPokemons_ = other.nearbyPokemons_.Clone();
-        }
-
-        public MapCell Clone()
-        {
-            return new MapCell(this);
-        }
-
-        /// <summary>Field number for the "s2_cell_id" field.</summary>
-        public const int S2CellIdFieldNumber = 1;
-        private ulong s2CellId_;
-        /// <summary>
-        ///  S2 geographic area that the cell covers (http://s2map.com/) (https://code.google.com/archive/p/s2-geometry-library/)
-        /// </summary>
-        public ulong S2CellId
-        {
-            get { return s2CellId_; }
-            set
-            {
-                s2CellId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "current_timestamp_ms" field.</summary>
-        public const int CurrentTimestampMsFieldNumber = 2;
-        private long currentTimestampMs_;
-        public long CurrentTimestampMs
-        {
-            get { return currentTimestampMs_; }
-            set
-            {
-                currentTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "forts" field.</summary>
-        public const int FortsFieldNumber = 3;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortData> _repeated_forts_codec
-            = pb::FieldCodec.ForMessage(26, global::PokemonGo.RocketAPI.GeneratedCode.FortData.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData> forts_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData> Forts
-        {
-            get { return forts_; }
-        }
-
-        /// <summary>Field number for the "spawn_points" field.</summary>
-        public const int SpawnPointsFieldNumber = 4;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> _repeated_spawnPoints_codec
-            = pb::FieldCodec.ForMessage(34, global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> spawnPoints_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> SpawnPoints
-        {
-            get { return spawnPoints_; }
-        }
-
-        /// <summary>Field number for the "deleted_objects" field.</summary>
-        public const int DeletedObjectsFieldNumber = 6;
-        private static readonly pb::FieldCodec<string> _repeated_deletedObjects_codec
-            = pb::FieldCodec.ForString(50);
-        private readonly pbc::RepeatedField<string> deletedObjects_ = new pbc::RepeatedField<string>();
-        public pbc::RepeatedField<string> DeletedObjects
-        {
-            get { return deletedObjects_; }
-        }
-
-        /// <summary>Field number for the "is_truncated_list" field.</summary>
-        public const int IsTruncatedListFieldNumber = 7;
-        private bool isTruncatedList_;
-        public bool IsTruncatedList
-        {
-            get { return isTruncatedList_; }
-            set
-            {
-                isTruncatedList_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "fort_summaries" field.</summary>
-        public const int FortSummariesFieldNumber = 8;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortSummary> _repeated_fortSummaries_codec
-            = pb::FieldCodec.ForMessage(66, global::PokemonGo.RocketAPI.GeneratedCode.FortSummary.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSummary> fortSummaries_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSummary>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSummary> FortSummaries
-        {
-            get { return fortSummaries_; }
-        }
-
-        /// <summary>Field number for the "decimated_spawn_points" field.</summary>
-        public const int DecimatedSpawnPointsFieldNumber = 9;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> _repeated_decimatedSpawnPoints_codec
-            = pb::FieldCodec.ForMessage(74, global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> decimatedSpawnPoints_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> DecimatedSpawnPoints
-        {
-            get { return decimatedSpawnPoints_; }
-        }
-
-        /// <summary>Field number for the "wild_pokemons" field.</summary>
-        public const int WildPokemonsFieldNumber = 5;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> _repeated_wildPokemons_codec
-            = pb::FieldCodec.ForMessage(42, global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> wildPokemons_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon>();
-        /// <summary>
-        ///  Pokemon within 2 steps or less.
-        /// </summary>
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> WildPokemons
-        {
-            get { return wildPokemons_; }
-        }
-
-        /// <summary>Field number for the "catchable_pokemons" field.</summary>
-        public const int CatchablePokemonsFieldNumber = 10;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon> _repeated_catchablePokemons_codec
-            = pb::FieldCodec.ForMessage(82, global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon> catchablePokemons_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon>();
-        /// <summary>
-        ///  Pokemon within 1 step or none.
-        /// </summary>
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon> CatchablePokemons
-        {
-            get { return catchablePokemons_; }
-        }
-
-        /// <summary>Field number for the "nearby_pokemons" field.</summary>
-        public const int NearbyPokemonsFieldNumber = 11;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon> _repeated_nearbyPokemons_codec
-            = pb::FieldCodec.ForMessage(90, global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon> nearbyPokemons_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon>();
-        /// <summary>
-        ///  Pokemon farther away than 2 steps, but still in the area.
-        /// </summary>
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon> NearbyPokemons
-        {
-            get { return nearbyPokemons_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as MapCell);
-        }
-
-        public bool Equals(MapCell other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (S2CellId != other.S2CellId) return false;
-            if (CurrentTimestampMs != other.CurrentTimestampMs) return false;
-            if (!forts_.Equals(other.forts_)) return false;
-            if (!spawnPoints_.Equals(other.spawnPoints_)) return false;
-            if (!deletedObjects_.Equals(other.deletedObjects_)) return false;
-            if (IsTruncatedList != other.IsTruncatedList) return false;
-            if (!fortSummaries_.Equals(other.fortSummaries_)) return false;
-            if (!decimatedSpawnPoints_.Equals(other.decimatedSpawnPoints_)) return false;
-            if (!wildPokemons_.Equals(other.wildPokemons_)) return false;
-            if (!catchablePokemons_.Equals(other.catchablePokemons_)) return false;
-            if (!nearbyPokemons_.Equals(other.nearbyPokemons_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (S2CellId != 0UL) hash ^= S2CellId.GetHashCode();
-            if (CurrentTimestampMs != 0L) hash ^= CurrentTimestampMs.GetHashCode();
-            hash ^= forts_.GetHashCode();
-            hash ^= spawnPoints_.GetHashCode();
-            hash ^= deletedObjects_.GetHashCode();
-            if (IsTruncatedList != false) hash ^= IsTruncatedList.GetHashCode();
-            hash ^= fortSummaries_.GetHashCode();
-            hash ^= decimatedSpawnPoints_.GetHashCode();
-            hash ^= wildPokemons_.GetHashCode();
-            hash ^= catchablePokemons_.GetHashCode();
-            hash ^= nearbyPokemons_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (S2CellId != 0UL)
-            {
-                output.WriteRawTag(8);
-                output.WriteUInt64(S2CellId);
-            }
-            if (CurrentTimestampMs != 0L)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt64(CurrentTimestampMs);
-            }
-            forts_.WriteTo(output, _repeated_forts_codec);
-            spawnPoints_.WriteTo(output, _repeated_spawnPoints_codec);
-            wildPokemons_.WriteTo(output, _repeated_wildPokemons_codec);
-            deletedObjects_.WriteTo(output, _repeated_deletedObjects_codec);
-            if (IsTruncatedList != false)
-            {
-                output.WriteRawTag(56);
-                output.WriteBool(IsTruncatedList);
-            }
-            fortSummaries_.WriteTo(output, _repeated_fortSummaries_codec);
-            decimatedSpawnPoints_.WriteTo(output, _repeated_decimatedSpawnPoints_codec);
-            catchablePokemons_.WriteTo(output, _repeated_catchablePokemons_codec);
-            nearbyPokemons_.WriteTo(output, _repeated_nearbyPokemons_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (S2CellId != 0UL)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeUInt64Size(S2CellId);
-            }
-            if (CurrentTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(CurrentTimestampMs);
-            }
-            size += forts_.CalculateSize(_repeated_forts_codec);
-            size += spawnPoints_.CalculateSize(_repeated_spawnPoints_codec);
-            size += deletedObjects_.CalculateSize(_repeated_deletedObjects_codec);
-            if (IsTruncatedList != false)
-            {
-                size += 1 + 1;
-            }
-            size += fortSummaries_.CalculateSize(_repeated_fortSummaries_codec);
-            size += decimatedSpawnPoints_.CalculateSize(_repeated_decimatedSpawnPoints_codec);
-            size += wildPokemons_.CalculateSize(_repeated_wildPokemons_codec);
-            size += catchablePokemons_.CalculateSize(_repeated_catchablePokemons_codec);
-            size += nearbyPokemons_.CalculateSize(_repeated_nearbyPokemons_codec);
-            return size;
-        }
-
-        public void MergeFrom(MapCell other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.S2CellId != 0UL)
-            {
-                S2CellId = other.S2CellId;
-            }
-            if (other.CurrentTimestampMs != 0L)
-            {
-                CurrentTimestampMs = other.CurrentTimestampMs;
-            }
-            forts_.Add(other.forts_);
-            spawnPoints_.Add(other.spawnPoints_);
-            deletedObjects_.Add(other.deletedObjects_);
-            if (other.IsTruncatedList != false)
-            {
-                IsTruncatedList = other.IsTruncatedList;
-            }
-            fortSummaries_.Add(other.fortSummaries_);
-            decimatedSpawnPoints_.Add(other.decimatedSpawnPoints_);
-            wildPokemons_.Add(other.wildPokemons_);
-            catchablePokemons_.Add(other.catchablePokemons_);
-            nearbyPokemons_.Add(other.nearbyPokemons_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            S2CellId = input.ReadUInt64();
-                            break;
-                        }
-                    case 16:
-                        {
-                            CurrentTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 26:
-                        {
-                            forts_.AddEntriesFrom(input, _repeated_forts_codec);
-                            break;
-                        }
-                    case 34:
-                        {
-                            spawnPoints_.AddEntriesFrom(input, _repeated_spawnPoints_codec);
-                            break;
-                        }
-                    case 42:
-                        {
-                            wildPokemons_.AddEntriesFrom(input, _repeated_wildPokemons_codec);
-                            break;
-                        }
-                    case 50:
-                        {
-                            deletedObjects_.AddEntriesFrom(input, _repeated_deletedObjects_codec);
-                            break;
-                        }
-                    case 56:
-                        {
-                            IsTruncatedList = input.ReadBool();
-                            break;
-                        }
-                    case 66:
-                        {
-                            fortSummaries_.AddEntriesFrom(input, _repeated_fortSummaries_codec);
-                            break;
-                        }
-                    case 74:
-                        {
-                            decimatedSpawnPoints_.AddEntriesFrom(input, _repeated_decimatedSpawnPoints_codec);
-                            break;
-                        }
-                    case 82:
-                        {
-                            catchablePokemons_.AddEntriesFrom(input, _repeated_catchablePokemons_codec);
-                            break;
-                        }
-                    case 90:
-                        {
-                            nearbyPokemons_.AddEntriesFrom(input, _repeated_nearbyPokemons_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortData : pb::IMessage<FortData>
-    {
-        private static readonly pb::MessageParser<FortData> _parser = new pb::MessageParser<FortData>(() => new FortData());
-        public static pb::MessageParser<FortData> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[27]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortData()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortData(FortData other) : this()
-        {
-            id_ = other.id_;
-            lastModifiedTimestampMs_ = other.lastModifiedTimestampMs_;
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-            enabled_ = other.enabled_;
-            type_ = other.type_;
-            ownedByTeam_ = other.ownedByTeam_;
-            guardPokemonId_ = other.guardPokemonId_;
-            guardPokemonCp_ = other.guardPokemonCp_;
-            gymPoints_ = other.gymPoints_;
-            isInBattle_ = other.isInBattle_;
-            cooldownCompleteTimestampMs_ = other.cooldownCompleteTimestampMs_;
-            sponsor_ = other.sponsor_;
-            renderingType_ = other.renderingType_;
-            activeFortModifier_ = other.activeFortModifier_;
-            LureInfo = other.lureInfo_ != null ? other.LureInfo.Clone() : null;
-        }
-
-        public FortData Clone()
-        {
-            return new FortData(this);
-        }
-
-        /// <summary>Field number for the "id" field.</summary>
-        public const int IdFieldNumber = 1;
-        private string id_ = "";
-        public string Id
-        {
-            get { return id_; }
-            set
-            {
-                id_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "last_modified_timestamp_ms" field.</summary>
-        public const int LastModifiedTimestampMsFieldNumber = 2;
-        private long lastModifiedTimestampMs_;
-        public long LastModifiedTimestampMs
-        {
-            get { return lastModifiedTimestampMs_; }
-            set
-            {
-                lastModifiedTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 3;
-        private double latitude_;
-        public double Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 4;
-        private double longitude_;
-        public double Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "enabled" field.</summary>
-        public const int EnabledFieldNumber = 8;
-        private bool enabled_;
-        public bool Enabled
-        {
-            get { return enabled_; }
-            set
-            {
-                enabled_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "type" field.</summary>
-        public const int TypeFieldNumber = 9;
-        private global::AllEnum.FortType type_ = 0;
-        public global::AllEnum.FortType Type
-        {
-            get { return type_; }
-            set
-            {
-                type_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "owned_by_team" field.</summary>
-        public const int OwnedByTeamFieldNumber = 5;
-        private global::AllEnum.TeamColor ownedByTeam_ = 0;
-        /// <summary>
-        ///  Team that owns the gym
-        /// </summary>
-        public global::AllEnum.TeamColor OwnedByTeam
-        {
-            get { return ownedByTeam_; }
-            set
-            {
-                ownedByTeam_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "guard_pokemon_id" field.</summary>
-        public const int GuardPokemonIdFieldNumber = 6;
-        private global::AllEnum.PokemonId guardPokemonId_ = 0;
-        /// <summary>
-        ///  Highest CP Pokemon at the gym
-        /// </summary>
-        public global::AllEnum.PokemonId GuardPokemonId
-        {
-            get { return guardPokemonId_; }
-            set
-            {
-                guardPokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "guard_pokemon_cp" field.</summary>
-        public const int GuardPokemonCpFieldNumber = 7;
-        private int guardPokemonCp_;
-        public int GuardPokemonCp
-        {
-            get { return guardPokemonCp_; }
-            set
-            {
-                guardPokemonCp_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "gym_points" field.</summary>
-        public const int GymPointsFieldNumber = 10;
-        private long gymPoints_;
-        /// <summary>
-        ///  Prestigate / experience of the gym
-        /// </summary>
-        public long GymPoints
-        {
-            get { return gymPoints_; }
-            set
-            {
-                gymPoints_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "is_in_battle" field.</summary>
-        public const int IsInBattleFieldNumber = 11;
-        private bool isInBattle_;
-        /// <summary>
-        ///  Whether someone is battling at the gym currently
-        /// </summary>
-        public bool IsInBattle
-        {
-            get { return isInBattle_; }
-            set
-            {
-                isInBattle_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cooldown_complete_timestamp_ms" field.</summary>
-        public const int CooldownCompleteTimestampMsFieldNumber = 14;
-        private long cooldownCompleteTimestampMs_;
-        /// <summary>
-        ///  Timestamp when the pokestop can be activated again to get items / xp
-        /// </summary>
-        public long CooldownCompleteTimestampMs
-        {
-            get { return cooldownCompleteTimestampMs_; }
-            set
-            {
-                cooldownCompleteTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "sponsor" field.</summary>
-        public const int SponsorFieldNumber = 15;
-        private global::AllEnum.FortSponsor sponsor_ = 0;
-        public global::AllEnum.FortSponsor Sponsor
-        {
-            get { return sponsor_; }
-            set
-            {
-                sponsor_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "rendering_type" field.</summary>
-        public const int RenderingTypeFieldNumber = 16;
-        private global::AllEnum.FortRenderingType renderingType_ = 0;
-        public global::AllEnum.FortRenderingType RenderingType
-        {
-            get { return renderingType_; }
-            set
-            {
-                renderingType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "active_fort_modifier" field.</summary>
-        public const int ActiveFortModifierFieldNumber = 12;
-        private pb::ByteString activeFortModifier_ = pb::ByteString.Empty;
-        /// <summary>
-        ///  Might represent the type of item applied to the pokestop, right now only lures can be applied
-        /// </summary>
-        public pb::ByteString ActiveFortModifier
-        {
-            get { return activeFortModifier_; }
-            set
-            {
-                activeFortModifier_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "lure_info" field.</summary>
-        public const int LureInfoFieldNumber = 13;
-        private global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo lureInfo_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo LureInfo
-        {
-            get { return lureInfo_; }
-            set
-            {
-                lureInfo_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortData);
-        }
-
-        public bool Equals(FortData other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Id != other.Id) return false;
-            if (LastModifiedTimestampMs != other.LastModifiedTimestampMs) return false;
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            if (Enabled != other.Enabled) return false;
-            if (Type != other.Type) return false;
-            if (OwnedByTeam != other.OwnedByTeam) return false;
-            if (GuardPokemonId != other.GuardPokemonId) return false;
-            if (GuardPokemonCp != other.GuardPokemonCp) return false;
-            if (GymPoints != other.GymPoints) return false;
-            if (IsInBattle != other.IsInBattle) return false;
-            if (CooldownCompleteTimestampMs != other.CooldownCompleteTimestampMs) return false;
-            if (Sponsor != other.Sponsor) return false;
-            if (RenderingType != other.RenderingType) return false;
-            if (ActiveFortModifier != other.ActiveFortModifier) return false;
-            if (!object.Equals(LureInfo, other.LureInfo)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Id.Length != 0) hash ^= Id.GetHashCode();
-            if (LastModifiedTimestampMs != 0L) hash ^= LastModifiedTimestampMs.GetHashCode();
-            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
-            if (Enabled != false) hash ^= Enabled.GetHashCode();
-            if (Type != 0) hash ^= Type.GetHashCode();
-            if (OwnedByTeam != 0) hash ^= OwnedByTeam.GetHashCode();
-            if (GuardPokemonId != 0) hash ^= GuardPokemonId.GetHashCode();
-            if (GuardPokemonCp != 0) hash ^= GuardPokemonCp.GetHashCode();
-            if (GymPoints != 0L) hash ^= GymPoints.GetHashCode();
-            if (IsInBattle != false) hash ^= IsInBattle.GetHashCode();
-            if (CooldownCompleteTimestampMs != 0L) hash ^= CooldownCompleteTimestampMs.GetHashCode();
-            if (Sponsor != 0) hash ^= Sponsor.GetHashCode();
-            if (RenderingType != 0) hash ^= RenderingType.GetHashCode();
-            if (ActiveFortModifier.Length != 0) hash ^= ActiveFortModifier.GetHashCode();
-            if (lureInfo_ != null) hash ^= LureInfo.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Id.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(Id);
-            }
-            if (LastModifiedTimestampMs != 0L)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt64(LastModifiedTimestampMs);
-            }
-            if (Latitude != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(Latitude);
-            }
-            if (Longitude != 0D)
-            {
-                output.WriteRawTag(33);
-                output.WriteDouble(Longitude);
-            }
-            if (OwnedByTeam != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteEnum((int)OwnedByTeam);
-            }
-            if (GuardPokemonId != 0)
-            {
-                output.WriteRawTag(48);
-                output.WriteEnum((int)GuardPokemonId);
-            }
-            if (GuardPokemonCp != 0)
-            {
-                output.WriteRawTag(56);
-                output.WriteInt32(GuardPokemonCp);
-            }
-            if (Enabled != false)
-            {
-                output.WriteRawTag(64);
-                output.WriteBool(Enabled);
-            }
-            if (Type != 0)
-            {
-                output.WriteRawTag(72);
-                output.WriteEnum((int)Type);
-            }
-            if (GymPoints != 0L)
-            {
-                output.WriteRawTag(80);
-                output.WriteInt64(GymPoints);
-            }
-            if (IsInBattle != false)
-            {
-                output.WriteRawTag(88);
-                output.WriteBool(IsInBattle);
-            }
-            if (ActiveFortModifier.Length != 0)
-            {
-                output.WriteRawTag(98);
-                output.WriteBytes(ActiveFortModifier);
-            }
-            if (lureInfo_ != null)
-            {
-                output.WriteRawTag(106);
-                output.WriteMessage(LureInfo);
-            }
-            if (CooldownCompleteTimestampMs != 0L)
-            {
-                output.WriteRawTag(112);
-                output.WriteInt64(CooldownCompleteTimestampMs);
-            }
-            if (Sponsor != 0)
-            {
-                output.WriteRawTag(120);
-                output.WriteEnum((int)Sponsor);
-            }
-            if (RenderingType != 0)
-            {
-                output.WriteRawTag(128, 1);
-                output.WriteEnum((int)RenderingType);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Id.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Id);
-            }
-            if (LastModifiedTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(LastModifiedTimestampMs);
-            }
-            if (Latitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Longitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Enabled != false)
-            {
-                size += 1 + 1;
-            }
-            if (Type != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Type);
-            }
-            if (OwnedByTeam != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)OwnedByTeam);
-            }
-            if (GuardPokemonId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)GuardPokemonId);
-            }
-            if (GuardPokemonCp != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(GuardPokemonCp);
-            }
-            if (GymPoints != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(GymPoints);
-            }
-            if (IsInBattle != false)
-            {
-                size += 1 + 1;
-            }
-            if (CooldownCompleteTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(CooldownCompleteTimestampMs);
-            }
-            if (Sponsor != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Sponsor);
-            }
-            if (RenderingType != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeEnumSize((int)RenderingType);
-            }
-            if (ActiveFortModifier.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeBytesSize(ActiveFortModifier);
-            }
-            if (lureInfo_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(LureInfo);
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortData other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Id.Length != 0)
-            {
-                Id = other.Id;
-            }
-            if (other.LastModifiedTimestampMs != 0L)
-            {
-                LastModifiedTimestampMs = other.LastModifiedTimestampMs;
-            }
-            if (other.Latitude != 0D)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0D)
-            {
-                Longitude = other.Longitude;
-            }
-            if (other.Enabled != false)
-            {
-                Enabled = other.Enabled;
-            }
-            if (other.Type != 0)
-            {
-                Type = other.Type;
-            }
-            if (other.OwnedByTeam != 0)
-            {
-                OwnedByTeam = other.OwnedByTeam;
-            }
-            if (other.GuardPokemonId != 0)
-            {
-                GuardPokemonId = other.GuardPokemonId;
-            }
-            if (other.GuardPokemonCp != 0)
-            {
-                GuardPokemonCp = other.GuardPokemonCp;
-            }
-            if (other.GymPoints != 0L)
-            {
-                GymPoints = other.GymPoints;
-            }
-            if (other.IsInBattle != false)
-            {
-                IsInBattle = other.IsInBattle;
-            }
-            if (other.CooldownCompleteTimestampMs != 0L)
-            {
-                CooldownCompleteTimestampMs = other.CooldownCompleteTimestampMs;
-            }
-            if (other.Sponsor != 0)
-            {
-                Sponsor = other.Sponsor;
-            }
-            if (other.RenderingType != 0)
-            {
-                RenderingType = other.RenderingType;
-            }
-            if (other.ActiveFortModifier.Length != 0)
-            {
-                ActiveFortModifier = other.ActiveFortModifier;
-            }
-            if (other.lureInfo_ != null)
-            {
-                if (lureInfo_ == null)
-                {
-                    lureInfo_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo();
-                }
-                LureInfo.MergeFrom(other.LureInfo);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            Id = input.ReadString();
-                            break;
-                        }
-                    case 16:
-                        {
-                            LastModifiedTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 25:
-                        {
-                            Latitude = input.ReadDouble();
-                            break;
-                        }
-                    case 33:
-                        {
-                            Longitude = input.ReadDouble();
-                            break;
-                        }
-                    case 40:
-                        {
-                            ownedByTeam_ = (global::AllEnum.TeamColor)input.ReadEnum();
-                            break;
-                        }
-                    case 48:
-                        {
-                            guardPokemonId_ = (global::AllEnum.PokemonId)input.ReadEnum();
-                            break;
-                        }
-                    case 56:
-                        {
-                            GuardPokemonCp = input.ReadInt32();
-                            break;
-                        }
-                    case 64:
-                        {
-                            Enabled = input.ReadBool();
-                            break;
-                        }
-                    case 72:
-                        {
-                            type_ = (global::AllEnum.FortType)input.ReadEnum();
-                            break;
-                        }
-                    case 80:
-                        {
-                            GymPoints = input.ReadInt64();
-                            break;
-                        }
-                    case 88:
-                        {
-                            IsInBattle = input.ReadBool();
-                            break;
-                        }
-                    case 98:
-                        {
-                            ActiveFortModifier = input.ReadBytes();
-                            break;
-                        }
-                    case 106:
-                        {
-                            if (lureInfo_ == null)
-                            {
-                                lureInfo_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo();
-                            }
-                            input.ReadMessage(lureInfo_);
-                            break;
-                        }
-                    case 112:
-                        {
-                            CooldownCompleteTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 120:
-                        {
-                            sponsor_ = (global::AllEnum.FortSponsor)input.ReadEnum();
-                            break;
-                        }
-                    case 128:
-                        {
-                            renderingType_ = (global::AllEnum.FortRenderingType)input.ReadEnum();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortLureInfo : pb::IMessage<FortLureInfo>
-    {
-        private static readonly pb::MessageParser<FortLureInfo> _parser = new pb::MessageParser<FortLureInfo>(() => new FortLureInfo());
-        public static pb::MessageParser<FortLureInfo> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[28]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortLureInfo()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortLureInfo(FortLureInfo other) : this()
-        {
-            fortId_ = other.fortId_;
-            unknown2_ = other.unknown2_;
-            activePokemonId_ = other.activePokemonId_;
-            lureExpiresTimestampMs_ = other.lureExpiresTimestampMs_;
-        }
-
-        public FortLureInfo Clone()
-        {
-            return new FortLureInfo(this);
-        }
-
-        /// <summary>Field number for the "fort_id" field.</summary>
-        public const int FortIdFieldNumber = 1;
-        private string fortId_ = "";
-        public string FortId
-        {
-            get { return fortId_; }
-            set
-            {
-                fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "unknown2" field.</summary>
-        public const int Unknown2FieldNumber = 2;
-        private double unknown2_;
-        public double Unknown2
-        {
-            get { return unknown2_; }
-            set
-            {
-                unknown2_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "active_pokemon_id" field.</summary>
-        public const int ActivePokemonIdFieldNumber = 3;
-        private global::AllEnum.PokemonId activePokemonId_ = 0;
-        public global::AllEnum.PokemonId ActivePokemonId
-        {
-            get { return activePokemonId_; }
-            set
-            {
-                activePokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "lure_expires_timestamp_ms" field.</summary>
-        public const int LureExpiresTimestampMsFieldNumber = 4;
-        private long lureExpiresTimestampMs_;
-        public long LureExpiresTimestampMs
-        {
-            get { return lureExpiresTimestampMs_; }
-            set
-            {
-                lureExpiresTimestampMs_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortLureInfo);
-        }
-
-        public bool Equals(FortLureInfo other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (FortId != other.FortId) return false;
-            if (Unknown2 != other.Unknown2) return false;
-            if (ActivePokemonId != other.ActivePokemonId) return false;
-            if (LureExpiresTimestampMs != other.LureExpiresTimestampMs) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
-            if (Unknown2 != 0D) hash ^= Unknown2.GetHashCode();
-            if (ActivePokemonId != 0) hash ^= ActivePokemonId.GetHashCode();
-            if (LureExpiresTimestampMs != 0L) hash ^= LureExpiresTimestampMs.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (FortId.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(FortId);
-            }
-            if (Unknown2 != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(Unknown2);
-            }
-            if (ActivePokemonId != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteEnum((int)ActivePokemonId);
-            }
-            if (LureExpiresTimestampMs != 0L)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt64(LureExpiresTimestampMs);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (FortId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
-            }
-            if (Unknown2 != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (ActivePokemonId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ActivePokemonId);
-            }
-            if (LureExpiresTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(LureExpiresTimestampMs);
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortLureInfo other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.FortId.Length != 0)
-            {
-                FortId = other.FortId;
-            }
-            if (other.Unknown2 != 0D)
-            {
-                Unknown2 = other.Unknown2;
-            }
-            if (other.ActivePokemonId != 0)
-            {
-                ActivePokemonId = other.ActivePokemonId;
-            }
-            if (other.LureExpiresTimestampMs != 0L)
-            {
-                LureExpiresTimestampMs = other.LureExpiresTimestampMs;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            FortId = input.ReadString();
-                            break;
-                        }
-                    case 17:
-                        {
-                            Unknown2 = input.ReadDouble();
-                            break;
-                        }
-                    case 24:
-                        {
-                            activePokemonId_ = (global::AllEnum.PokemonId)input.ReadEnum();
-                            break;
-                        }
-                    case 32:
-                        {
-                            LureExpiresTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class SpawnPoint : pb::IMessage<SpawnPoint>
-    {
-        private static readonly pb::MessageParser<SpawnPoint> _parser = new pb::MessageParser<SpawnPoint>(() => new SpawnPoint());
-        public static pb::MessageParser<SpawnPoint> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[29]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public SpawnPoint()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public SpawnPoint(SpawnPoint other) : this()
-        {
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-        }
-
-        public SpawnPoint Clone()
-        {
-            return new SpawnPoint(this);
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 2;
-        private double latitude_;
-        public double Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 3;
-        private double longitude_;
-        public double Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as SpawnPoint);
-        }
-
-        public bool Equals(SpawnPoint other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Latitude != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(Latitude);
-            }
-            if (Longitude != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(Longitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Latitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Longitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(SpawnPoint other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Latitude != 0D)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0D)
-            {
-                Longitude = other.Longitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 17:
-                        {
-                            Latitude = input.ReadDouble();
-                            break;
-                        }
-                    case 25:
-                        {
-                            Longitude = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortSummary : pb::IMessage<FortSummary>
-    {
-        private static readonly pb::MessageParser<FortSummary> _parser = new pb::MessageParser<FortSummary>(() => new FortSummary());
-        public static pb::MessageParser<FortSummary> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[30]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortSummary()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortSummary(FortSummary other) : this()
-        {
-            fortSummaryId_ = other.fortSummaryId_;
-            lastModifiedTimestampMs_ = other.lastModifiedTimestampMs_;
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-        }
-
-        public FortSummary Clone()
-        {
-            return new FortSummary(this);
-        }
-
-        /// <summary>Field number for the "fort_summary_id" field.</summary>
-        public const int FortSummaryIdFieldNumber = 1;
-        private int fortSummaryId_;
-        public int FortSummaryId
-        {
-            get { return fortSummaryId_; }
-            set
-            {
-                fortSummaryId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "last_modified_timestamp_ms" field.</summary>
-        public const int LastModifiedTimestampMsFieldNumber = 2;
-        private int lastModifiedTimestampMs_;
-        public int LastModifiedTimestampMs
-        {
-            get { return lastModifiedTimestampMs_; }
-            set
-            {
-                lastModifiedTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 3;
-        private int latitude_;
-        public int Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 4;
-        private int longitude_;
-        public int Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortSummary);
-        }
-
-        public bool Equals(FortSummary other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (FortSummaryId != other.FortSummaryId) return false;
-            if (LastModifiedTimestampMs != other.LastModifiedTimestampMs) return false;
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (FortSummaryId != 0) hash ^= FortSummaryId.GetHashCode();
-            if (LastModifiedTimestampMs != 0) hash ^= LastModifiedTimestampMs.GetHashCode();
-            if (Latitude != 0) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0) hash ^= Longitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (FortSummaryId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(FortSummaryId);
-            }
-            if (LastModifiedTimestampMs != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(LastModifiedTimestampMs);
-            }
-            if (Latitude != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(Latitude);
-            }
-            if (Longitude != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(Longitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (FortSummaryId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(FortSummaryId);
-            }
-            if (LastModifiedTimestampMs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(LastModifiedTimestampMs);
-            }
-            if (Latitude != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Latitude);
-            }
-            if (Longitude != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Longitude);
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortSummary other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.FortSummaryId != 0)
-            {
-                FortSummaryId = other.FortSummaryId;
-            }
-            if (other.LastModifiedTimestampMs != 0)
-            {
-                LastModifiedTimestampMs = other.LastModifiedTimestampMs;
-            }
-            if (other.Latitude != 0)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0)
-            {
-                Longitude = other.Longitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            FortSummaryId = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            LastModifiedTimestampMs = input.ReadInt32();
-                            break;
-                        }
-                    case 24:
-                        {
-                            Latitude = input.ReadInt32();
-                            break;
-                        }
-                    case 32:
-                        {
-                            Longitude = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class WildPokemon : pb::IMessage<WildPokemon>
-    {
-        private static readonly pb::MessageParser<WildPokemon> _parser = new pb::MessageParser<WildPokemon>(() => new WildPokemon());
-        public static pb::MessageParser<WildPokemon> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[31]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public WildPokemon()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public WildPokemon(WildPokemon other) : this()
-        {
-            encounterId_ = other.encounterId_;
-            lastModifiedTimestampMs_ = other.lastModifiedTimestampMs_;
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-            spawnpointId_ = other.spawnpointId_;
-            PokemonData = other.pokemonData_ != null ? other.PokemonData.Clone() : null;
-            timeTillHiddenMs_ = other.timeTillHiddenMs_;
-        }
-
-        public WildPokemon Clone()
-        {
-            return new WildPokemon(this);
-        }
-
-        /// <summary>Field number for the "encounter_id" field.</summary>
-        public const int EncounterIdFieldNumber = 1;
-        private ulong encounterId_;
-        public ulong EncounterId
-        {
-            get { return encounterId_; }
-            set
-            {
-                encounterId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "last_modified_timestamp_ms" field.</summary>
-        public const int LastModifiedTimestampMsFieldNumber = 2;
-        private long lastModifiedTimestampMs_;
-        public long LastModifiedTimestampMs
-        {
-            get { return lastModifiedTimestampMs_; }
-            set
-            {
-                lastModifiedTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 3;
-        private double latitude_;
-        public double Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 4;
-        private double longitude_;
-        public double Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "spawnpoint_id" field.</summary>
-        public const int SpawnpointIdFieldNumber = 5;
-        private string spawnpointId_ = "";
-        public string SpawnpointId
-        {
-            get { return spawnpointId_; }
-            set
-            {
-                spawnpointId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_data" field.</summary>
-        public const int PokemonDataFieldNumber = 7;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemonData_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData PokemonData
-        {
-            get { return pokemonData_; }
-            set
-            {
-                pokemonData_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "time_till_hidden_ms" field.</summary>
-        public const int TimeTillHiddenMsFieldNumber = 11;
-        private int timeTillHiddenMs_;
-        public int TimeTillHiddenMs
-        {
-            get { return timeTillHiddenMs_; }
-            set
-            {
-                timeTillHiddenMs_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as WildPokemon);
-        }
-
-        public bool Equals(WildPokemon other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (EncounterId != other.EncounterId) return false;
-            if (LastModifiedTimestampMs != other.LastModifiedTimestampMs) return false;
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            if (SpawnpointId != other.SpawnpointId) return false;
-            if (!object.Equals(PokemonData, other.PokemonData)) return false;
-            if (TimeTillHiddenMs != other.TimeTillHiddenMs) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
-            if (LastModifiedTimestampMs != 0L) hash ^= LastModifiedTimestampMs.GetHashCode();
-            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
-            if (SpawnpointId.Length != 0) hash ^= SpawnpointId.GetHashCode();
-            if (pokemonData_ != null) hash ^= PokemonData.GetHashCode();
-            if (TimeTillHiddenMs != 0) hash ^= TimeTillHiddenMs.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (EncounterId != 0UL)
-            {
-                output.WriteRawTag(9);
-                output.WriteFixed64(EncounterId);
-            }
-            if (LastModifiedTimestampMs != 0L)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt64(LastModifiedTimestampMs);
-            }
-            if (Latitude != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(Latitude);
-            }
-            if (Longitude != 0D)
-            {
-                output.WriteRawTag(33);
-                output.WriteDouble(Longitude);
-            }
-            if (SpawnpointId.Length != 0)
-            {
-                output.WriteRawTag(42);
-                output.WriteString(SpawnpointId);
-            }
-            if (pokemonData_ != null)
-            {
-                output.WriteRawTag(58);
-                output.WriteMessage(PokemonData);
-            }
-            if (TimeTillHiddenMs != 0)
-            {
-                output.WriteRawTag(88);
-                output.WriteInt32(TimeTillHiddenMs);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (EncounterId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            if (LastModifiedTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(LastModifiedTimestampMs);
-            }
-            if (Latitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Longitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (SpawnpointId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnpointId);
-            }
-            if (pokemonData_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonData);
-            }
-            if (TimeTillHiddenMs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TimeTillHiddenMs);
-            }
-            return size;
-        }
-
-        public void MergeFrom(WildPokemon other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.EncounterId != 0UL)
-            {
-                EncounterId = other.EncounterId;
-            }
-            if (other.LastModifiedTimestampMs != 0L)
-            {
-                LastModifiedTimestampMs = other.LastModifiedTimestampMs;
-            }
-            if (other.Latitude != 0D)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0D)
-            {
-                Longitude = other.Longitude;
-            }
-            if (other.SpawnpointId.Length != 0)
-            {
-                SpawnpointId = other.SpawnpointId;
-            }
-            if (other.pokemonData_ != null)
-            {
-                if (pokemonData_ == null)
-                {
-                    pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                }
-                PokemonData.MergeFrom(other.PokemonData);
-            }
-            if (other.TimeTillHiddenMs != 0)
-            {
-                TimeTillHiddenMs = other.TimeTillHiddenMs;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            EncounterId = input.ReadFixed64();
-                            break;
-                        }
-                    case 16:
-                        {
-                            LastModifiedTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 25:
-                        {
-                            Latitude = input.ReadDouble();
-                            break;
-                        }
-                    case 33:
-                        {
-                            Longitude = input.ReadDouble();
-                            break;
-                        }
-                    case 42:
-                        {
-                            SpawnpointId = input.ReadString();
-                            break;
-                        }
-                    case 58:
-                        {
-                            if (pokemonData_ == null)
-                            {
-                                pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                            }
-                            input.ReadMessage(pokemonData_);
-                            break;
-                        }
-                    case 88:
-                        {
-                            TimeTillHiddenMs = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PokemonData : pb::IMessage<PokemonData>
-    {
-        private static readonly pb::MessageParser<PokemonData> _parser = new pb::MessageParser<PokemonData>(() => new PokemonData());
-        public static pb::MessageParser<PokemonData> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[32]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PokemonData()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PokemonData(PokemonData other) : this()
-        {
-            id_ = other.id_;
-            pokemonId_ = other.pokemonId_;
-            cp_ = other.cp_;
-            stamina_ = other.stamina_;
-            staminaMax_ = other.staminaMax_;
-            move1_ = other.move1_;
-            move2_ = other.move2_;
-            deployedFortId_ = other.deployedFortId_;
-            ownerName_ = other.ownerName_;
-            isEgg_ = other.isEgg_;
-            eggKmWalkedTarget_ = other.eggKmWalkedTarget_;
-            eggKmWalkedStart_ = other.eggKmWalkedStart_;
-            origin_ = other.origin_;
-            heightM_ = other.heightM_;
-            weightKg_ = other.weightKg_;
-            individualAttack_ = other.individualAttack_;
-            individualDefense_ = other.individualDefense_;
-            individualStamina_ = other.individualStamina_;
-            cpMultiplier_ = other.cpMultiplier_;
-            pokeball_ = other.pokeball_;
-            capturedCellId_ = other.capturedCellId_;
-            battlesAttacked_ = other.battlesAttacked_;
-            battlesDefended_ = other.battlesDefended_;
-            eggIncubatorId_ = other.eggIncubatorId_;
-            creationTimeMs_ = other.creationTimeMs_;
-            numUpgrades_ = other.numUpgrades_;
-            additionalCpMultiplier_ = other.additionalCpMultiplier_;
-            favorite_ = other.favorite_;
-            nickname_ = other.nickname_;
-            fromFort_ = other.fromFort_;
-        }
-
-        public PokemonData Clone()
-        {
-            return new PokemonData(this);
-        }
-
-        /// <summary>Field number for the "id" field.</summary>
-        public const int IdFieldNumber = 1;
-        private ulong id_;
-        public ulong Id
-        {
-            get { return id_; }
-            set
-            {
-                id_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_id" field.</summary>
-        public const int PokemonIdFieldNumber = 2;
-        private global::AllEnum.PokemonId pokemonId_ = 0;
-        public global::AllEnum.PokemonId PokemonId
-        {
-            get { return pokemonId_; }
-            set
-            {
-                pokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cp" field.</summary>
-        public const int CpFieldNumber = 3;
-        private int cp_;
-        public int Cp
-        {
-            get { return cp_; }
-            set
-            {
-                cp_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stamina" field.</summary>
-        public const int StaminaFieldNumber = 4;
-        private int stamina_;
-        public int Stamina
-        {
-            get { return stamina_; }
-            set
-            {
-                stamina_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stamina_max" field.</summary>
-        public const int StaminaMaxFieldNumber = 5;
-        private int staminaMax_;
-        public int StaminaMax
-        {
-            get { return staminaMax_; }
-            set
-            {
-                staminaMax_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "move_1" field.</summary>
-        public const int Move1FieldNumber = 6;
-        private global::AllEnum.PokemonMove move1_ = 0;
-        public global::AllEnum.PokemonMove Move1
-        {
-            get { return move1_; }
-            set
-            {
-                move1_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "move_2" field.</summary>
-        public const int Move2FieldNumber = 7;
-        private global::AllEnum.PokemonMove move2_ = 0;
-        public global::AllEnum.PokemonMove Move2
-        {
-            get { return move2_; }
-            set
-            {
-                move2_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "deployed_fort_id" field.</summary>
-        public const int DeployedFortIdFieldNumber = 8;
-        private int deployedFortId_;
-        public int DeployedFortId
-        {
-            get { return deployedFortId_; }
-            set
-            {
-                deployedFortId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "owner_name" field.</summary>
-        public const int OwnerNameFieldNumber = 9;
-        private string ownerName_ = "";
-        public string OwnerName
-        {
-            get { return ownerName_; }
-            set
-            {
-                ownerName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "is_egg" field.</summary>
-        public const int IsEggFieldNumber = 10;
-        private bool isEgg_;
-        public bool IsEgg
-        {
-            get { return isEgg_; }
-            set
-            {
-                isEgg_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "egg_km_walked_target" field.</summary>
-        public const int EggKmWalkedTargetFieldNumber = 11;
-        private int eggKmWalkedTarget_;
-        public int EggKmWalkedTarget
-        {
-            get { return eggKmWalkedTarget_; }
-            set
-            {
-                eggKmWalkedTarget_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "egg_km_walked_start" field.</summary>
-        public const int EggKmWalkedStartFieldNumber = 12;
-        private int eggKmWalkedStart_;
-        public int EggKmWalkedStart
-        {
-            get { return eggKmWalkedStart_; }
-            set
-            {
-                eggKmWalkedStart_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "origin" field.</summary>
-        public const int OriginFieldNumber = 14;
-        private int origin_;
-        public int Origin
-        {
-            get { return origin_; }
-            set
-            {
-                origin_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "height_m" field.</summary>
-        public const int HeightMFieldNumber = 15;
-        private float heightM_;
-        public float HeightM
-        {
-            get { return heightM_; }
-            set
-            {
-                heightM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "weight_kg" field.</summary>
-        public const int WeightKgFieldNumber = 16;
-        private float weightKg_;
-        public float WeightKg
-        {
-            get { return weightKg_; }
-            set
-            {
-                weightKg_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "individual_attack" field.</summary>
-        public const int IndividualAttackFieldNumber = 17;
-        private int individualAttack_;
-        public int IndividualAttack
-        {
-            get { return individualAttack_; }
-            set
-            {
-                individualAttack_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "individual_defense" field.</summary>
-        public const int IndividualDefenseFieldNumber = 18;
-        private int individualDefense_;
-        public int IndividualDefense
-        {
-            get { return individualDefense_; }
-            set
-            {
-                individualDefense_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "individual_stamina" field.</summary>
-        public const int IndividualStaminaFieldNumber = 19;
-        private int individualStamina_;
-        public int IndividualStamina
-        {
-            get { return individualStamina_; }
-            set
-            {
-                individualStamina_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cp_multiplier" field.</summary>
-        public const int CpMultiplierFieldNumber = 20;
-        private int cpMultiplier_;
-        public int CpMultiplier
-        {
-            get { return cpMultiplier_; }
-            set
-            {
-                cpMultiplier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokeball" field.</summary>
-        public const int PokeballFieldNumber = 21;
-        private int pokeball_;
-        public int Pokeball
-        {
-            get { return pokeball_; }
-            set
-            {
-                pokeball_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "captured_cell_id" field.</summary>
-        public const int CapturedCellIdFieldNumber = 22;
-        private ulong capturedCellId_;
-        public ulong CapturedCellId
-        {
-            get { return capturedCellId_; }
-            set
-            {
-                capturedCellId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battles_attacked" field.</summary>
-        public const int BattlesAttackedFieldNumber = 23;
-        private int battlesAttacked_;
-        public int BattlesAttacked
-        {
-            get { return battlesAttacked_; }
-            set
-            {
-                battlesAttacked_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battles_defended" field.</summary>
-        public const int BattlesDefendedFieldNumber = 24;
-        private int battlesDefended_;
-        public int BattlesDefended
-        {
-            get { return battlesDefended_; }
-            set
-            {
-                battlesDefended_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "egg_incubator_id" field.</summary>
-        public const int EggIncubatorIdFieldNumber = 25;
-        private int eggIncubatorId_;
-        public int EggIncubatorId
-        {
-            get { return eggIncubatorId_; }
-            set
-            {
-                eggIncubatorId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "creation_time_ms" field.</summary>
-        public const int CreationTimeMsFieldNumber = 26;
-        private ulong creationTimeMs_;
-        public ulong CreationTimeMs
-        {
-            get { return creationTimeMs_; }
-            set
-            {
-                creationTimeMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "num_upgrades" field.</summary>
-        public const int NumUpgradesFieldNumber = 27;
-        private int numUpgrades_;
-        public int NumUpgrades
-        {
-            get { return numUpgrades_; }
-            set
-            {
-                numUpgrades_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "additional_cp_multiplier" field.</summary>
-        public const int AdditionalCpMultiplierFieldNumber = 28;
-        private int additionalCpMultiplier_;
-        public int AdditionalCpMultiplier
-        {
-            get { return additionalCpMultiplier_; }
-            set
-            {
-                additionalCpMultiplier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "favorite" field.</summary>
-        public const int FavoriteFieldNumber = 29;
-        private int favorite_;
-        public int Favorite
-        {
-            get { return favorite_; }
-            set
-            {
-                favorite_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "nickname" field.</summary>
-        public const int NicknameFieldNumber = 30;
-        private string nickname_ = "";
-        public string Nickname
-        {
-            get { return nickname_; }
-            set
-            {
-                nickname_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "from_fort" field.</summary>
-        public const int FromFortFieldNumber = 31;
-        private int fromFort_;
-        public int FromFort
-        {
-            get { return fromFort_; }
-            set
-            {
-                fromFort_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PokemonData);
-        }
-
-        public bool Equals(PokemonData other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Id != other.Id) return false;
-            if (PokemonId != other.PokemonId) return false;
-            if (Cp != other.Cp) return false;
-            if (Stamina != other.Stamina) return false;
-            if (StaminaMax != other.StaminaMax) return false;
-            if (Move1 != other.Move1) return false;
-            if (Move2 != other.Move2) return false;
-            if (DeployedFortId != other.DeployedFortId) return false;
-            if (OwnerName != other.OwnerName) return false;
-            if (IsEgg != other.IsEgg) return false;
-            if (EggKmWalkedTarget != other.EggKmWalkedTarget) return false;
-            if (EggKmWalkedStart != other.EggKmWalkedStart) return false;
-            if (Origin != other.Origin) return false;
-            if (HeightM != other.HeightM) return false;
-            if (WeightKg != other.WeightKg) return false;
-            if (IndividualAttack != other.IndividualAttack) return false;
-            if (IndividualDefense != other.IndividualDefense) return false;
-            if (IndividualStamina != other.IndividualStamina) return false;
-            if (CpMultiplier != other.CpMultiplier) return false;
-            if (Pokeball != other.Pokeball) return false;
-            if (CapturedCellId != other.CapturedCellId) return false;
-            if (BattlesAttacked != other.BattlesAttacked) return false;
-            if (BattlesDefended != other.BattlesDefended) return false;
-            if (EggIncubatorId != other.EggIncubatorId) return false;
-            if (CreationTimeMs != other.CreationTimeMs) return false;
-            if (NumUpgrades != other.NumUpgrades) return false;
-            if (AdditionalCpMultiplier != other.AdditionalCpMultiplier) return false;
-            if (Favorite != other.Favorite) return false;
-            if (Nickname != other.Nickname) return false;
-            if (FromFort != other.FromFort) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Id != 0UL) hash ^= Id.GetHashCode();
-            if (PokemonId != 0) hash ^= PokemonId.GetHashCode();
-            if (Cp != 0) hash ^= Cp.GetHashCode();
-            if (Stamina != 0) hash ^= Stamina.GetHashCode();
-            if (StaminaMax != 0) hash ^= StaminaMax.GetHashCode();
-            if (Move1 != 0) hash ^= Move1.GetHashCode();
-            if (Move2 != 0) hash ^= Move2.GetHashCode();
-            if (DeployedFortId != 0) hash ^= DeployedFortId.GetHashCode();
-            if (OwnerName.Length != 0) hash ^= OwnerName.GetHashCode();
-            if (IsEgg != false) hash ^= IsEgg.GetHashCode();
-            if (EggKmWalkedTarget != 0) hash ^= EggKmWalkedTarget.GetHashCode();
-            if (EggKmWalkedStart != 0) hash ^= EggKmWalkedStart.GetHashCode();
-            if (Origin != 0) hash ^= Origin.GetHashCode();
-            if (HeightM != 0F) hash ^= HeightM.GetHashCode();
-            if (WeightKg != 0F) hash ^= WeightKg.GetHashCode();
-            if (IndividualAttack != 0) hash ^= IndividualAttack.GetHashCode();
-            if (IndividualDefense != 0) hash ^= IndividualDefense.GetHashCode();
-            if (IndividualStamina != 0) hash ^= IndividualStamina.GetHashCode();
-            if (CpMultiplier != 0) hash ^= CpMultiplier.GetHashCode();
-            if (Pokeball != 0) hash ^= Pokeball.GetHashCode();
-            if (CapturedCellId != 0UL) hash ^= CapturedCellId.GetHashCode();
-            if (BattlesAttacked != 0) hash ^= BattlesAttacked.GetHashCode();
-            if (BattlesDefended != 0) hash ^= BattlesDefended.GetHashCode();
-            if (EggIncubatorId != 0) hash ^= EggIncubatorId.GetHashCode();
-            if (CreationTimeMs != 0UL) hash ^= CreationTimeMs.GetHashCode();
-            if (NumUpgrades != 0) hash ^= NumUpgrades.GetHashCode();
-            if (AdditionalCpMultiplier != 0) hash ^= AdditionalCpMultiplier.GetHashCode();
-            if (Favorite != 0) hash ^= Favorite.GetHashCode();
-            if (Nickname.Length != 0) hash ^= Nickname.GetHashCode();
-            if (FromFort != 0) hash ^= FromFort.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Id != 0UL)
-            {
-                output.WriteRawTag(9);
-                output.WriteFixed64(Id);
-            }
-            if (PokemonId != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)PokemonId);
-            }
-            if (Cp != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(Cp);
-            }
-            if (Stamina != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(Stamina);
-            }
-            if (StaminaMax != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(StaminaMax);
-            }
-            if (Move1 != 0)
-            {
-                output.WriteRawTag(48);
-                output.WriteEnum((int)Move1);
-            }
-            if (Move2 != 0)
-            {
-                output.WriteRawTag(56);
-                output.WriteEnum((int)Move2);
-            }
-            if (DeployedFortId != 0)
-            {
-                output.WriteRawTag(64);
-                output.WriteInt32(DeployedFortId);
-            }
-            if (OwnerName.Length != 0)
-            {
-                output.WriteRawTag(74);
-                output.WriteString(OwnerName);
-            }
-            if (IsEgg != false)
-            {
-                output.WriteRawTag(80);
-                output.WriteBool(IsEgg);
-            }
-            if (EggKmWalkedTarget != 0)
-            {
-                output.WriteRawTag(88);
-                output.WriteInt32(EggKmWalkedTarget);
-            }
-            if (EggKmWalkedStart != 0)
-            {
-                output.WriteRawTag(96);
-                output.WriteInt32(EggKmWalkedStart);
-            }
-            if (Origin != 0)
-            {
-                output.WriteRawTag(112);
-                output.WriteInt32(Origin);
-            }
-            if (HeightM != 0F)
-            {
-                output.WriteRawTag(125);
-                output.WriteFloat(HeightM);
-            }
-            if (WeightKg != 0F)
-            {
-                output.WriteRawTag(133, 1);
-                output.WriteFloat(WeightKg);
-            }
-            if (IndividualAttack != 0)
-            {
-                output.WriteRawTag(136, 1);
-                output.WriteInt32(IndividualAttack);
-            }
-            if (IndividualDefense != 0)
-            {
-                output.WriteRawTag(144, 1);
-                output.WriteInt32(IndividualDefense);
-            }
-            if (IndividualStamina != 0)
-            {
-                output.WriteRawTag(152, 1);
-                output.WriteInt32(IndividualStamina);
-            }
-            if (CpMultiplier != 0)
-            {
-                output.WriteRawTag(160, 1);
-                output.WriteInt32(CpMultiplier);
-            }
-            if (Pokeball != 0)
-            {
-                output.WriteRawTag(168, 1);
-                output.WriteInt32(Pokeball);
-            }
-            if (CapturedCellId != 0UL)
-            {
-                output.WriteRawTag(176, 1);
-                output.WriteUInt64(CapturedCellId);
-            }
-            if (BattlesAttacked != 0)
-            {
-                output.WriteRawTag(184, 1);
-                output.WriteInt32(BattlesAttacked);
-            }
-            if (BattlesDefended != 0)
-            {
-                output.WriteRawTag(192, 1);
-                output.WriteInt32(BattlesDefended);
-            }
-            if (EggIncubatorId != 0)
-            {
-                output.WriteRawTag(200, 1);
-                output.WriteInt32(EggIncubatorId);
-            }
-            if (CreationTimeMs != 0UL)
-            {
-                output.WriteRawTag(208, 1);
-                output.WriteUInt64(CreationTimeMs);
-            }
-            if (NumUpgrades != 0)
-            {
-                output.WriteRawTag(216, 1);
-                output.WriteInt32(NumUpgrades);
-            }
-            if (AdditionalCpMultiplier != 0)
-            {
-                output.WriteRawTag(224, 1);
-                output.WriteInt32(AdditionalCpMultiplier);
-            }
-            if (Favorite != 0)
-            {
-                output.WriteRawTag(232, 1);
-                output.WriteInt32(Favorite);
-            }
-            if (Nickname.Length != 0)
-            {
-                output.WriteRawTag(242, 1);
-                output.WriteString(Nickname);
-            }
-            if (FromFort != 0)
-            {
-                output.WriteRawTag(248, 1);
-                output.WriteInt32(FromFort);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Id != 0UL)
-            {
-                size += 1 + 8;
-            }
-            if (PokemonId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonId);
-            }
-            if (Cp != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Cp);
-            }
-            if (Stamina != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Stamina);
-            }
-            if (StaminaMax != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(StaminaMax);
-            }
-            if (Move1 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Move1);
-            }
-            if (Move2 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Move2);
-            }
-            if (DeployedFortId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DeployedFortId);
-            }
-            if (OwnerName.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(OwnerName);
-            }
-            if (IsEgg != false)
-            {
-                size += 1 + 1;
-            }
-            if (EggKmWalkedTarget != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggKmWalkedTarget);
-            }
-            if (EggKmWalkedStart != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggKmWalkedStart);
-            }
-            if (Origin != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Origin);
-            }
-            if (HeightM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (WeightKg != 0F)
-            {
-                size += 2 + 4;
-            }
-            if (IndividualAttack != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualAttack);
-            }
-            if (IndividualDefense != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualDefense);
-            }
-            if (IndividualStamina != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualStamina);
-            }
-            if (CpMultiplier != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(CpMultiplier);
-            }
-            if (Pokeball != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(Pokeball);
-            }
-            if (CapturedCellId != 0UL)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeUInt64Size(CapturedCellId);
-            }
-            if (BattlesAttacked != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattlesAttacked);
-            }
-            if (BattlesDefended != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattlesDefended);
-            }
-            if (EggIncubatorId != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(EggIncubatorId);
-            }
-            if (CreationTimeMs != 0UL)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeUInt64Size(CreationTimeMs);
-            }
-            if (NumUpgrades != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(NumUpgrades);
-            }
-            if (AdditionalCpMultiplier != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(AdditionalCpMultiplier);
-            }
-            if (Favorite != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(Favorite);
-            }
-            if (Nickname.Length != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeStringSize(Nickname);
-            }
-            if (FromFort != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(FromFort);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PokemonData other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Id != 0UL)
-            {
-                Id = other.Id;
-            }
-            if (other.PokemonId != 0)
-            {
-                PokemonId = other.PokemonId;
-            }
-            if (other.Cp != 0)
-            {
-                Cp = other.Cp;
-            }
-            if (other.Stamina != 0)
-            {
-                Stamina = other.Stamina;
-            }
-            if (other.StaminaMax != 0)
-            {
-                StaminaMax = other.StaminaMax;
-            }
-            if (other.Move1 != 0)
-            {
-                Move1 = other.Move1;
-            }
-            if (other.Move2 != 0)
-            {
-                Move2 = other.Move2;
-            }
-            if (other.DeployedFortId != 0)
-            {
-                DeployedFortId = other.DeployedFortId;
-            }
-            if (other.OwnerName.Length != 0)
-            {
-                OwnerName = other.OwnerName;
-            }
-            if (other.IsEgg != false)
-            {
-                IsEgg = other.IsEgg;
-            }
-            if (other.EggKmWalkedTarget != 0)
-            {
-                EggKmWalkedTarget = other.EggKmWalkedTarget;
-            }
-            if (other.EggKmWalkedStart != 0)
-            {
-                EggKmWalkedStart = other.EggKmWalkedStart;
-            }
-            if (other.Origin != 0)
-            {
-                Origin = other.Origin;
-            }
-            if (other.HeightM != 0F)
-            {
-                HeightM = other.HeightM;
-            }
-            if (other.WeightKg != 0F)
-            {
-                WeightKg = other.WeightKg;
-            }
-            if (other.IndividualAttack != 0)
-            {
-                IndividualAttack = other.IndividualAttack;
-            }
-            if (other.IndividualDefense != 0)
-            {
-                IndividualDefense = other.IndividualDefense;
-            }
-            if (other.IndividualStamina != 0)
-            {
-                IndividualStamina = other.IndividualStamina;
-            }
-            if (other.CpMultiplier != 0)
-            {
-                CpMultiplier = other.CpMultiplier;
-            }
-            if (other.Pokeball != 0)
-            {
-                Pokeball = other.Pokeball;
-            }
-            if (other.CapturedCellId != 0UL)
-            {
-                CapturedCellId = other.CapturedCellId;
-            }
-            if (other.BattlesAttacked != 0)
-            {
-                BattlesAttacked = other.BattlesAttacked;
-            }
-            if (other.BattlesDefended != 0)
-            {
-                BattlesDefended = other.BattlesDefended;
-            }
-            if (other.EggIncubatorId != 0)
-            {
-                EggIncubatorId = other.EggIncubatorId;
-            }
-            if (other.CreationTimeMs != 0UL)
-            {
-                CreationTimeMs = other.CreationTimeMs;
-            }
-            if (other.NumUpgrades != 0)
-            {
-                NumUpgrades = other.NumUpgrades;
-            }
-            if (other.AdditionalCpMultiplier != 0)
-            {
-                AdditionalCpMultiplier = other.AdditionalCpMultiplier;
-            }
-            if (other.Favorite != 0)
-            {
-                Favorite = other.Favorite;
-            }
-            if (other.Nickname.Length != 0)
-            {
-                Nickname = other.Nickname;
-            }
-            if (other.FromFort != 0)
-            {
-                FromFort = other.FromFort;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            Id = input.ReadFixed64();
-                            break;
-                        }
-                    case 16:
-                        {
-                            pokemonId_ = (global::AllEnum.PokemonId)input.ReadEnum();
-                            break;
-                        }
-                    case 24:
-                        {
-                            Cp = input.ReadInt32();
-                            break;
-                        }
-                    case 32:
-                        {
-                            Stamina = input.ReadInt32();
-                            break;
-                        }
-                    case 40:
-                        {
-                            StaminaMax = input.ReadInt32();
-                            break;
-                        }
-                    case 48:
-                        {
-                            move1_ = (global::AllEnum.PokemonMove)input.ReadEnum();
-                            break;
-                        }
-                    case 56:
-                        {
-                            move2_ = (global::AllEnum.PokemonMove)input.ReadEnum();
-                            break;
-                        }
-                    case 64:
-                        {
-                            DeployedFortId = input.ReadInt32();
-                            break;
-                        }
-                    case 74:
-                        {
-                            OwnerName = input.ReadString();
-                            break;
-                        }
-                    case 80:
-                        {
-                            IsEgg = input.ReadBool();
-                            break;
-                        }
-                    case 88:
-                        {
-                            EggKmWalkedTarget = input.ReadInt32();
-                            break;
-                        }
-                    case 96:
-                        {
-                            EggKmWalkedStart = input.ReadInt32();
-                            break;
-                        }
-                    case 112:
-                        {
-                            Origin = input.ReadInt32();
-                            break;
-                        }
-                    case 125:
-                        {
-                            HeightM = input.ReadFloat();
-                            break;
-                        }
-                    case 133:
-                        {
-                            WeightKg = input.ReadFloat();
-                            break;
-                        }
-                    case 136:
-                        {
-                            IndividualAttack = input.ReadInt32();
-                            break;
-                        }
-                    case 144:
-                        {
-                            IndividualDefense = input.ReadInt32();
-                            break;
-                        }
-                    case 152:
-                        {
-                            IndividualStamina = input.ReadInt32();
-                            break;
-                        }
-                    case 160:
-                        {
-                            CpMultiplier = input.ReadInt32();
-                            break;
-                        }
-                    case 168:
-                        {
-                            Pokeball = input.ReadInt32();
-                            break;
-                        }
-                    case 176:
-                        {
-                            CapturedCellId = input.ReadUInt64();
-                            break;
-                        }
-                    case 184:
-                        {
-                            BattlesAttacked = input.ReadInt32();
-                            break;
-                        }
-                    case 192:
-                        {
-                            BattlesDefended = input.ReadInt32();
-                            break;
-                        }
-                    case 200:
-                        {
-                            EggIncubatorId = input.ReadInt32();
-                            break;
-                        }
-                    case 208:
-                        {
-                            CreationTimeMs = input.ReadUInt64();
-                            break;
-                        }
-                    case 216:
-                        {
-                            NumUpgrades = input.ReadInt32();
-                            break;
-                        }
-                    case 224:
-                        {
-                            AdditionalCpMultiplier = input.ReadInt32();
-                            break;
-                        }
-                    case 232:
-                        {
-                            Favorite = input.ReadInt32();
-                            break;
-                        }
-                    case 242:
-                        {
-                            Nickname = input.ReadString();
-                            break;
-                        }
-                    case 248:
-                        {
-                            FromFort = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class MapPokemon : pb::IMessage<MapPokemon>
-    {
-        private static readonly pb::MessageParser<MapPokemon> _parser = new pb::MessageParser<MapPokemon>(() => new MapPokemon());
-        public static pb::MessageParser<MapPokemon> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[33]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public MapPokemon()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public MapPokemon(MapPokemon other) : this()
-        {
-            spawnpointId_ = other.spawnpointId_;
-            encounterId_ = other.encounterId_;
-            pokemonId_ = other.pokemonId_;
-            expirationTimestampMs_ = other.expirationTimestampMs_;
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-        }
-
-        public MapPokemon Clone()
-        {
-            return new MapPokemon(this);
-        }
-
-        /// <summary>Field number for the "spawnpoint_id" field.</summary>
-        public const int SpawnpointIdFieldNumber = 1;
-        private string spawnpointId_ = "";
-        public string SpawnpointId
-        {
-            get { return spawnpointId_; }
-            set
-            {
-                spawnpointId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "encounter_id" field.</summary>
-        public const int EncounterIdFieldNumber = 2;
-        private ulong encounterId_;
-        public ulong EncounterId
-        {
-            get { return encounterId_; }
-            set
-            {
-                encounterId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_id" field.</summary>
-        public const int PokemonIdFieldNumber = 3;
-        private global::AllEnum.PokemonId pokemonId_ = 0;
-        public global::AllEnum.PokemonId PokemonId
-        {
-            get { return pokemonId_; }
-            set
-            {
-                pokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "expiration_timestamp_ms" field.</summary>
-        public const int ExpirationTimestampMsFieldNumber = 4;
-        private long expirationTimestampMs_;
-        /// <summary>
-        ///  After this timestamp, the pokemon will be gone.
-        /// </summary>
-        public long ExpirationTimestampMs
-        {
-            get { return expirationTimestampMs_; }
-            set
-            {
-                expirationTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 5;
-        private double latitude_;
-        public double Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 6;
-        private double longitude_;
-        public double Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as MapPokemon);
-        }
-
-        public bool Equals(MapPokemon other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (SpawnpointId != other.SpawnpointId) return false;
-            if (EncounterId != other.EncounterId) return false;
-            if (PokemonId != other.PokemonId) return false;
-            if (ExpirationTimestampMs != other.ExpirationTimestampMs) return false;
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (SpawnpointId.Length != 0) hash ^= SpawnpointId.GetHashCode();
-            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
-            if (PokemonId != 0) hash ^= PokemonId.GetHashCode();
-            if (ExpirationTimestampMs != 0L) hash ^= ExpirationTimestampMs.GetHashCode();
-            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (SpawnpointId.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(SpawnpointId);
-            }
-            if (EncounterId != 0UL)
-            {
-                output.WriteRawTag(17);
-                output.WriteFixed64(EncounterId);
-            }
-            if (PokemonId != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteEnum((int)PokemonId);
-            }
-            if (ExpirationTimestampMs != 0L)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt64(ExpirationTimestampMs);
-            }
-            if (Latitude != 0D)
-            {
-                output.WriteRawTag(41);
-                output.WriteDouble(Latitude);
-            }
-            if (Longitude != 0D)
-            {
-                output.WriteRawTag(49);
-                output.WriteDouble(Longitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (SpawnpointId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnpointId);
-            }
-            if (EncounterId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            if (PokemonId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonId);
-            }
-            if (ExpirationTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(ExpirationTimestampMs);
-            }
-            if (Latitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Longitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(MapPokemon other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.SpawnpointId.Length != 0)
-            {
-                SpawnpointId = other.SpawnpointId;
-            }
-            if (other.EncounterId != 0UL)
-            {
-                EncounterId = other.EncounterId;
-            }
-            if (other.PokemonId != 0)
-            {
-                PokemonId = other.PokemonId;
-            }
-            if (other.ExpirationTimestampMs != 0L)
-            {
-                ExpirationTimestampMs = other.ExpirationTimestampMs;
-            }
-            if (other.Latitude != 0D)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0D)
-            {
-                Longitude = other.Longitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            SpawnpointId = input.ReadString();
-                            break;
-                        }
-                    case 17:
-                        {
-                            EncounterId = input.ReadFixed64();
-                            break;
-                        }
-                    case 24:
-                        {
-                            pokemonId_ = (global::AllEnum.PokemonId)input.ReadEnum();
-                            break;
-                        }
-                    case 32:
-                        {
-                            ExpirationTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 41:
-                        {
-                            Latitude = input.ReadDouble();
-                            break;
-                        }
-                    case 49:
-                        {
-                            Longitude = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class NearbyPokemon : pb::IMessage<NearbyPokemon>
-    {
-        private static readonly pb::MessageParser<NearbyPokemon> _parser = new pb::MessageParser<NearbyPokemon>(() => new NearbyPokemon());
-        public static pb::MessageParser<NearbyPokemon> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[34]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public NearbyPokemon()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public NearbyPokemon(NearbyPokemon other) : this()
-        {
-            pokemonId_ = other.pokemonId_;
-            distanceInMeters_ = other.distanceInMeters_;
-            encounterId_ = other.encounterId_;
-        }
-
-        public NearbyPokemon Clone()
-        {
-            return new NearbyPokemon(this);
-        }
-
-        /// <summary>Field number for the "pokemon_id" field.</summary>
-        public const int PokemonIdFieldNumber = 1;
-        private global::AllEnum.PokemonId pokemonId_ = 0;
-        public global::AllEnum.PokemonId PokemonId
-        {
-            get { return pokemonId_; }
-            set
-            {
-                pokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "distance_in_meters" field.</summary>
-        public const int DistanceInMetersFieldNumber = 2;
-        private float distanceInMeters_;
-        public float DistanceInMeters
-        {
-            get { return distanceInMeters_; }
-            set
-            {
-                distanceInMeters_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "encounter_id" field.</summary>
-        public const int EncounterIdFieldNumber = 3;
-        private ulong encounterId_;
-        public ulong EncounterId
-        {
-            get { return encounterId_; }
-            set
-            {
-                encounterId_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as NearbyPokemon);
-        }
-
-        public bool Equals(NearbyPokemon other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (PokemonId != other.PokemonId) return false;
-            if (DistanceInMeters != other.DistanceInMeters) return false;
-            if (EncounterId != other.EncounterId) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (PokemonId != 0) hash ^= PokemonId.GetHashCode();
-            if (DistanceInMeters != 0F) hash ^= DistanceInMeters.GetHashCode();
-            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (PokemonId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)PokemonId);
-            }
-            if (DistanceInMeters != 0F)
-            {
-                output.WriteRawTag(21);
-                output.WriteFloat(DistanceInMeters);
-            }
-            if (EncounterId != 0UL)
-            {
-                output.WriteRawTag(25);
-                output.WriteFixed64(EncounterId);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (PokemonId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonId);
-            }
-            if (DistanceInMeters != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (EncounterId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(NearbyPokemon other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.PokemonId != 0)
-            {
-                PokemonId = other.PokemonId;
-            }
-            if (other.DistanceInMeters != 0F)
-            {
-                DistanceInMeters = other.DistanceInMeters;
-            }
-            if (other.EncounterId != 0UL)
-            {
-                EncounterId = other.EncounterId;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            pokemonId_ = (global::AllEnum.PokemonId)input.ReadEnum();
-                            break;
-                        }
-                    case 21:
-                        {
-                            DistanceInMeters = input.ReadFloat();
-                            break;
-                        }
-                    case 25:
-                        {
-                            EncounterId = input.ReadFixed64();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class DownloadSettingsResponse : pb::IMessage<DownloadSettingsResponse>
-    {
-        private static readonly pb::MessageParser<DownloadSettingsResponse> _parser = new pb::MessageParser<DownloadSettingsResponse>(() => new DownloadSettingsResponse());
-        public static pb::MessageParser<DownloadSettingsResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[35]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public DownloadSettingsResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public DownloadSettingsResponse(DownloadSettingsResponse other) : this()
-        {
-            error_ = other.error_;
-            hash_ = other.hash_;
-            Settings = other.settings_ != null ? other.Settings.Clone() : null;
-        }
-
-        public DownloadSettingsResponse Clone()
-        {
-            return new DownloadSettingsResponse(this);
-        }
-
-        /// <summary>Field number for the "error" field.</summary>
-        public const int ErrorFieldNumber = 1;
-        private string error_ = "";
-        public string Error
-        {
-            get { return error_; }
-            set
-            {
-                error_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "hash" field.</summary>
-        public const int HashFieldNumber = 2;
-        private string hash_ = "";
-        public string Hash
-        {
-            get { return hash_; }
-            set
-            {
-                hash_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "settings" field.</summary>
-        public const int SettingsFieldNumber = 3;
-        private global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings settings_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings Settings
-        {
-            get { return settings_; }
-            set
-            {
-                settings_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as DownloadSettingsResponse);
-        }
-
-        public bool Equals(DownloadSettingsResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Error != other.Error) return false;
-            if (Hash != other.Hash) return false;
-            if (!object.Equals(Settings, other.Settings)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Error.Length != 0) hash ^= Error.GetHashCode();
-            if (Hash.Length != 0) hash ^= Hash.GetHashCode();
-            if (settings_ != null) hash ^= Settings.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Error.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(Error);
-            }
-            if (Hash.Length != 0)
-            {
-                output.WriteRawTag(18);
-                output.WriteString(Hash);
-            }
-            if (settings_ != null)
-            {
-                output.WriteRawTag(26);
-                output.WriteMessage(Settings);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Error.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Error);
-            }
-            if (Hash.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Hash);
-            }
-            if (settings_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Settings);
-            }
-            return size;
-        }
-
-        public void MergeFrom(DownloadSettingsResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Error.Length != 0)
-            {
-                Error = other.Error;
-            }
-            if (other.Hash.Length != 0)
-            {
-                Hash = other.Hash;
-            }
-            if (other.settings_ != null)
-            {
-                if (settings_ == null)
-                {
-                    settings_ = new global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings();
-                }
-                Settings.MergeFrom(other.Settings);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            Error = input.ReadString();
-                            break;
-                        }
-                    case 18:
-                        {
-                            Hash = input.ReadString();
-                            break;
-                        }
-                    case 26:
-                        {
-                            if (settings_ == null)
-                            {
-                                settings_ = new global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings();
-                            }
-                            input.ReadMessage(settings_);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GlobalSettings : pb::IMessage<GlobalSettings>
-    {
-        private static readonly pb::MessageParser<GlobalSettings> _parser = new pb::MessageParser<GlobalSettings>(() => new GlobalSettings());
-        public static pb::MessageParser<GlobalSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[36]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GlobalSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GlobalSettings(GlobalSettings other) : this()
-        {
-            FortSettings = other.fortSettings_ != null ? other.FortSettings.Clone() : null;
-            MapSettings = other.mapSettings_ != null ? other.MapSettings.Clone() : null;
-            LevelSettings = other.levelSettings_ != null ? other.LevelSettings.Clone() : null;
-            InventorySettings = other.inventorySettings_ != null ? other.InventorySettings.Clone() : null;
-            minimumClientVersion_ = other.minimumClientVersion_;
-        }
-
-        public GlobalSettings Clone()
-        {
-            return new GlobalSettings(this);
-        }
-
-        /// <summary>Field number for the "fort_settings" field.</summary>
-        public const int FortSettingsFieldNumber = 2;
-        private global::PokemonGo.RocketAPI.GeneratedCode.FortSettings fortSettings_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.FortSettings FortSettings
-        {
-            get { return fortSettings_; }
-            set
-            {
-                fortSettings_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "map_settings" field.</summary>
-        public const int MapSettingsFieldNumber = 3;
-        private global::PokemonGo.RocketAPI.GeneratedCode.MapSettings mapSettings_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.MapSettings MapSettings
-        {
-            get { return mapSettings_; }
-            set
-            {
-                mapSettings_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "level_settings" field.</summary>
-        public const int LevelSettingsFieldNumber = 4;
-        private global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings levelSettings_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings LevelSettings
-        {
-            get { return levelSettings_; }
-            set
-            {
-                levelSettings_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "inventory_settings" field.</summary>
-        public const int InventorySettingsFieldNumber = 5;
-        private global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings inventorySettings_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings InventorySettings
-        {
-            get { return inventorySettings_; }
-            set
-            {
-                inventorySettings_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "minimum_client_version" field.</summary>
-        public const int MinimumClientVersionFieldNumber = 6;
-        private string minimumClientVersion_ = "";
-        public string MinimumClientVersion
-        {
-            get { return minimumClientVersion_; }
-            set
-            {
-                minimumClientVersion_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GlobalSettings);
-        }
-
-        public bool Equals(GlobalSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!object.Equals(FortSettings, other.FortSettings)) return false;
-            if (!object.Equals(MapSettings, other.MapSettings)) return false;
-            if (!object.Equals(LevelSettings, other.LevelSettings)) return false;
-            if (!object.Equals(InventorySettings, other.InventorySettings)) return false;
-            if (MinimumClientVersion != other.MinimumClientVersion) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (fortSettings_ != null) hash ^= FortSettings.GetHashCode();
-            if (mapSettings_ != null) hash ^= MapSettings.GetHashCode();
-            if (levelSettings_ != null) hash ^= LevelSettings.GetHashCode();
-            if (inventorySettings_ != null) hash ^= InventorySettings.GetHashCode();
-            if (MinimumClientVersion.Length != 0) hash ^= MinimumClientVersion.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (fortSettings_ != null)
-            {
-                output.WriteRawTag(18);
-                output.WriteMessage(FortSettings);
-            }
-            if (mapSettings_ != null)
-            {
-                output.WriteRawTag(26);
-                output.WriteMessage(MapSettings);
-            }
-            if (levelSettings_ != null)
-            {
-                output.WriteRawTag(34);
-                output.WriteMessage(LevelSettings);
-            }
-            if (inventorySettings_ != null)
-            {
-                output.WriteRawTag(42);
-                output.WriteMessage(InventorySettings);
-            }
-            if (MinimumClientVersion.Length != 0)
-            {
-                output.WriteRawTag(50);
-                output.WriteString(MinimumClientVersion);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (fortSettings_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(FortSettings);
-            }
-            if (mapSettings_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(MapSettings);
-            }
-            if (levelSettings_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(LevelSettings);
-            }
-            if (inventorySettings_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventorySettings);
-            }
-            if (MinimumClientVersion.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(MinimumClientVersion);
-            }
-            return size;
-        }
-
-        public void MergeFrom(GlobalSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.fortSettings_ != null)
-            {
-                if (fortSettings_ == null)
-                {
-                    fortSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortSettings();
-                }
-                FortSettings.MergeFrom(other.FortSettings);
-            }
-            if (other.mapSettings_ != null)
-            {
-                if (mapSettings_ == null)
-                {
-                    mapSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MapSettings();
-                }
-                MapSettings.MergeFrom(other.MapSettings);
-            }
-            if (other.levelSettings_ != null)
-            {
-                if (levelSettings_ == null)
-                {
-                    levelSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings();
-                }
-                LevelSettings.MergeFrom(other.LevelSettings);
-            }
-            if (other.inventorySettings_ != null)
-            {
-                if (inventorySettings_ == null)
-                {
-                    inventorySettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings();
-                }
-                InventorySettings.MergeFrom(other.InventorySettings);
-            }
-            if (other.MinimumClientVersion.Length != 0)
-            {
-                MinimumClientVersion = other.MinimumClientVersion;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 18:
-                        {
-                            if (fortSettings_ == null)
-                            {
-                                fortSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortSettings();
-                            }
-                            input.ReadMessage(fortSettings_);
-                            break;
-                        }
-                    case 26:
-                        {
-                            if (mapSettings_ == null)
-                            {
-                                mapSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MapSettings();
-                            }
-                            input.ReadMessage(mapSettings_);
-                            break;
-                        }
-                    case 34:
-                        {
-                            if (levelSettings_ == null)
-                            {
-                                levelSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings();
-                            }
-                            input.ReadMessage(levelSettings_);
-                            break;
-                        }
-                    case 42:
-                        {
-                            if (inventorySettings_ == null)
-                            {
-                                inventorySettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings();
-                            }
-                            input.ReadMessage(inventorySettings_);
-                            break;
-                        }
-                    case 50:
-                        {
-                            MinimumClientVersion = input.ReadString();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortSettings : pb::IMessage<FortSettings>
-    {
-        private static readonly pb::MessageParser<FortSettings> _parser = new pb::MessageParser<FortSettings>(() => new FortSettings());
-        public static pb::MessageParser<FortSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[37]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortSettings(FortSettings other) : this()
-        {
-            interactionRangeMeters_ = other.interactionRangeMeters_;
-            maxTotalDeployedPokemon_ = other.maxTotalDeployedPokemon_;
-            maxPlayerDeployedPokemon_ = other.maxPlayerDeployedPokemon_;
-            deployStaminaMultiplier_ = other.deployStaminaMultiplier_;
-            deployAttackMultiplier_ = other.deployAttackMultiplier_;
-            farInteractionRangeMeters_ = other.farInteractionRangeMeters_;
-        }
-
-        public FortSettings Clone()
-        {
-            return new FortSettings(this);
-        }
-
-        /// <summary>Field number for the "interaction_range_meters" field.</summary>
-        public const int InteractionRangeMetersFieldNumber = 1;
-        private double interactionRangeMeters_;
-        public double InteractionRangeMeters
-        {
-            get { return interactionRangeMeters_; }
-            set
-            {
-                interactionRangeMeters_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "max_total_deployed_pokemon" field.</summary>
-        public const int MaxTotalDeployedPokemonFieldNumber = 2;
-        private int maxTotalDeployedPokemon_;
-        public int MaxTotalDeployedPokemon
-        {
-            get { return maxTotalDeployedPokemon_; }
-            set
-            {
-                maxTotalDeployedPokemon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "max_player_deployed_pokemon" field.</summary>
-        public const int MaxPlayerDeployedPokemonFieldNumber = 3;
-        private int maxPlayerDeployedPokemon_;
-        public int MaxPlayerDeployedPokemon
-        {
-            get { return maxPlayerDeployedPokemon_; }
-            set
-            {
-                maxPlayerDeployedPokemon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "deploy_stamina_multiplier" field.</summary>
-        public const int DeployStaminaMultiplierFieldNumber = 4;
-        private double deployStaminaMultiplier_;
-        public double DeployStaminaMultiplier
-        {
-            get { return deployStaminaMultiplier_; }
-            set
-            {
-                deployStaminaMultiplier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "deploy_attack_multiplier" field.</summary>
-        public const int DeployAttackMultiplierFieldNumber = 5;
-        private double deployAttackMultiplier_;
-        public double DeployAttackMultiplier
-        {
-            get { return deployAttackMultiplier_; }
-            set
-            {
-                deployAttackMultiplier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "far_interaction_range_meters" field.</summary>
-        public const int FarInteractionRangeMetersFieldNumber = 6;
-        private double farInteractionRangeMeters_;
-        public double FarInteractionRangeMeters
-        {
-            get { return farInteractionRangeMeters_; }
-            set
-            {
-                farInteractionRangeMeters_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortSettings);
-        }
-
-        public bool Equals(FortSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (InteractionRangeMeters != other.InteractionRangeMeters) return false;
-            if (MaxTotalDeployedPokemon != other.MaxTotalDeployedPokemon) return false;
-            if (MaxPlayerDeployedPokemon != other.MaxPlayerDeployedPokemon) return false;
-            if (DeployStaminaMultiplier != other.DeployStaminaMultiplier) return false;
-            if (DeployAttackMultiplier != other.DeployAttackMultiplier) return false;
-            if (FarInteractionRangeMeters != other.FarInteractionRangeMeters) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (InteractionRangeMeters != 0D) hash ^= InteractionRangeMeters.GetHashCode();
-            if (MaxTotalDeployedPokemon != 0) hash ^= MaxTotalDeployedPokemon.GetHashCode();
-            if (MaxPlayerDeployedPokemon != 0) hash ^= MaxPlayerDeployedPokemon.GetHashCode();
-            if (DeployStaminaMultiplier != 0D) hash ^= DeployStaminaMultiplier.GetHashCode();
-            if (DeployAttackMultiplier != 0D) hash ^= DeployAttackMultiplier.GetHashCode();
-            if (FarInteractionRangeMeters != 0D) hash ^= FarInteractionRangeMeters.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (InteractionRangeMeters != 0D)
-            {
-                output.WriteRawTag(9);
-                output.WriteDouble(InteractionRangeMeters);
-            }
-            if (MaxTotalDeployedPokemon != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(MaxTotalDeployedPokemon);
-            }
-            if (MaxPlayerDeployedPokemon != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(MaxPlayerDeployedPokemon);
-            }
-            if (DeployStaminaMultiplier != 0D)
-            {
-                output.WriteRawTag(33);
-                output.WriteDouble(DeployStaminaMultiplier);
-            }
-            if (DeployAttackMultiplier != 0D)
-            {
-                output.WriteRawTag(41);
-                output.WriteDouble(DeployAttackMultiplier);
-            }
-            if (FarInteractionRangeMeters != 0D)
-            {
-                output.WriteRawTag(49);
-                output.WriteDouble(FarInteractionRangeMeters);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (InteractionRangeMeters != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (MaxTotalDeployedPokemon != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxTotalDeployedPokemon);
-            }
-            if (MaxPlayerDeployedPokemon != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxPlayerDeployedPokemon);
-            }
-            if (DeployStaminaMultiplier != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (DeployAttackMultiplier != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (FarInteractionRangeMeters != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.InteractionRangeMeters != 0D)
-            {
-                InteractionRangeMeters = other.InteractionRangeMeters;
-            }
-            if (other.MaxTotalDeployedPokemon != 0)
-            {
-                MaxTotalDeployedPokemon = other.MaxTotalDeployedPokemon;
-            }
-            if (other.MaxPlayerDeployedPokemon != 0)
-            {
-                MaxPlayerDeployedPokemon = other.MaxPlayerDeployedPokemon;
-            }
-            if (other.DeployStaminaMultiplier != 0D)
-            {
-                DeployStaminaMultiplier = other.DeployStaminaMultiplier;
-            }
-            if (other.DeployAttackMultiplier != 0D)
-            {
-                DeployAttackMultiplier = other.DeployAttackMultiplier;
-            }
-            if (other.FarInteractionRangeMeters != 0D)
-            {
-                FarInteractionRangeMeters = other.FarInteractionRangeMeters;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            InteractionRangeMeters = input.ReadDouble();
-                            break;
-                        }
-                    case 16:
-                        {
-                            MaxTotalDeployedPokemon = input.ReadInt32();
-                            break;
-                        }
-                    case 24:
-                        {
-                            MaxPlayerDeployedPokemon = input.ReadInt32();
-                            break;
-                        }
-                    case 33:
-                        {
-                            DeployStaminaMultiplier = input.ReadDouble();
-                            break;
-                        }
-                    case 41:
-                        {
-                            DeployAttackMultiplier = input.ReadDouble();
-                            break;
-                        }
-                    case 49:
-                        {
-                            FarInteractionRangeMeters = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class MapSettings : pb::IMessage<MapSettings>
-    {
-        private static readonly pb::MessageParser<MapSettings> _parser = new pb::MessageParser<MapSettings>(() => new MapSettings());
-        public static pb::MessageParser<MapSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[38]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public MapSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public MapSettings(MapSettings other) : this()
-        {
-            pokemonVisibleRange_ = other.pokemonVisibleRange_;
-            pokeNavRangeMeters_ = other.pokeNavRangeMeters_;
-            encounterRangeMeters_ = other.encounterRangeMeters_;
-            getMapObjectsMinRefreshSeconds_ = other.getMapObjectsMinRefreshSeconds_;
-            getMapObjectsMaxRefreshSeconds_ = other.getMapObjectsMaxRefreshSeconds_;
-            getMapObjectsMinDistanceMeters_ = other.getMapObjectsMinDistanceMeters_;
-            googleMapsApiKey_ = other.googleMapsApiKey_;
-        }
-
-        public MapSettings Clone()
-        {
-            return new MapSettings(this);
-        }
-
-        /// <summary>Field number for the "pokemon_visible_range" field.</summary>
-        public const int PokemonVisibleRangeFieldNumber = 1;
-        private double pokemonVisibleRange_;
-        public double PokemonVisibleRange
-        {
-            get { return pokemonVisibleRange_; }
-            set
-            {
-                pokemonVisibleRange_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "poke_nav_range_meters" field.</summary>
-        public const int PokeNavRangeMetersFieldNumber = 2;
-        private double pokeNavRangeMeters_;
-        public double PokeNavRangeMeters
-        {
-            get { return pokeNavRangeMeters_; }
-            set
-            {
-                pokeNavRangeMeters_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "encounter_range_meters" field.</summary>
-        public const int EncounterRangeMetersFieldNumber = 3;
-        private double encounterRangeMeters_;
-        public double EncounterRangeMeters
-        {
-            get { return encounterRangeMeters_; }
-            set
-            {
-                encounterRangeMeters_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "get_map_objects_min_refresh_seconds" field.</summary>
-        public const int GetMapObjectsMinRefreshSecondsFieldNumber = 4;
-        private float getMapObjectsMinRefreshSeconds_;
-        public float GetMapObjectsMinRefreshSeconds
-        {
-            get { return getMapObjectsMinRefreshSeconds_; }
-            set
-            {
-                getMapObjectsMinRefreshSeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "get_map_objects_max_refresh_seconds" field.</summary>
-        public const int GetMapObjectsMaxRefreshSecondsFieldNumber = 5;
-        private float getMapObjectsMaxRefreshSeconds_;
-        public float GetMapObjectsMaxRefreshSeconds
-        {
-            get { return getMapObjectsMaxRefreshSeconds_; }
-            set
-            {
-                getMapObjectsMaxRefreshSeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "get_map_objects_min_distance_meters" field.</summary>
-        public const int GetMapObjectsMinDistanceMetersFieldNumber = 6;
-        private float getMapObjectsMinDistanceMeters_;
-        public float GetMapObjectsMinDistanceMeters
-        {
-            get { return getMapObjectsMinDistanceMeters_; }
-            set
-            {
-                getMapObjectsMinDistanceMeters_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "google_maps_api_key" field.</summary>
-        public const int GoogleMapsApiKeyFieldNumber = 7;
-        private string googleMapsApiKey_ = "";
-        public string GoogleMapsApiKey
-        {
-            get { return googleMapsApiKey_; }
-            set
-            {
-                googleMapsApiKey_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as MapSettings);
-        }
-
-        public bool Equals(MapSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (PokemonVisibleRange != other.PokemonVisibleRange) return false;
-            if (PokeNavRangeMeters != other.PokeNavRangeMeters) return false;
-            if (EncounterRangeMeters != other.EncounterRangeMeters) return false;
-            if (GetMapObjectsMinRefreshSeconds != other.GetMapObjectsMinRefreshSeconds) return false;
-            if (GetMapObjectsMaxRefreshSeconds != other.GetMapObjectsMaxRefreshSeconds) return false;
-            if (GetMapObjectsMinDistanceMeters != other.GetMapObjectsMinDistanceMeters) return false;
-            if (GoogleMapsApiKey != other.GoogleMapsApiKey) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (PokemonVisibleRange != 0D) hash ^= PokemonVisibleRange.GetHashCode();
-            if (PokeNavRangeMeters != 0D) hash ^= PokeNavRangeMeters.GetHashCode();
-            if (EncounterRangeMeters != 0D) hash ^= EncounterRangeMeters.GetHashCode();
-            if (GetMapObjectsMinRefreshSeconds != 0F) hash ^= GetMapObjectsMinRefreshSeconds.GetHashCode();
-            if (GetMapObjectsMaxRefreshSeconds != 0F) hash ^= GetMapObjectsMaxRefreshSeconds.GetHashCode();
-            if (GetMapObjectsMinDistanceMeters != 0F) hash ^= GetMapObjectsMinDistanceMeters.GetHashCode();
-            if (GoogleMapsApiKey.Length != 0) hash ^= GoogleMapsApiKey.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (PokemonVisibleRange != 0D)
-            {
-                output.WriteRawTag(9);
-                output.WriteDouble(PokemonVisibleRange);
-            }
-            if (PokeNavRangeMeters != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(PokeNavRangeMeters);
-            }
-            if (EncounterRangeMeters != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(EncounterRangeMeters);
-            }
-            if (GetMapObjectsMinRefreshSeconds != 0F)
-            {
-                output.WriteRawTag(37);
-                output.WriteFloat(GetMapObjectsMinRefreshSeconds);
-            }
-            if (GetMapObjectsMaxRefreshSeconds != 0F)
-            {
-                output.WriteRawTag(45);
-                output.WriteFloat(GetMapObjectsMaxRefreshSeconds);
-            }
-            if (GetMapObjectsMinDistanceMeters != 0F)
-            {
-                output.WriteRawTag(53);
-                output.WriteFloat(GetMapObjectsMinDistanceMeters);
-            }
-            if (GoogleMapsApiKey.Length != 0)
-            {
-                output.WriteRawTag(58);
-                output.WriteString(GoogleMapsApiKey);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (PokemonVisibleRange != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (PokeNavRangeMeters != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (EncounterRangeMeters != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (GetMapObjectsMinRefreshSeconds != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (GetMapObjectsMaxRefreshSeconds != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (GetMapObjectsMinDistanceMeters != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (GoogleMapsApiKey.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(GoogleMapsApiKey);
-            }
-            return size;
-        }
-
-        public void MergeFrom(MapSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.PokemonVisibleRange != 0D)
-            {
-                PokemonVisibleRange = other.PokemonVisibleRange;
-            }
-            if (other.PokeNavRangeMeters != 0D)
-            {
-                PokeNavRangeMeters = other.PokeNavRangeMeters;
-            }
-            if (other.EncounterRangeMeters != 0D)
-            {
-                EncounterRangeMeters = other.EncounterRangeMeters;
-            }
-            if (other.GetMapObjectsMinRefreshSeconds != 0F)
-            {
-                GetMapObjectsMinRefreshSeconds = other.GetMapObjectsMinRefreshSeconds;
-            }
-            if (other.GetMapObjectsMaxRefreshSeconds != 0F)
-            {
-                GetMapObjectsMaxRefreshSeconds = other.GetMapObjectsMaxRefreshSeconds;
-            }
-            if (other.GetMapObjectsMinDistanceMeters != 0F)
-            {
-                GetMapObjectsMinDistanceMeters = other.GetMapObjectsMinDistanceMeters;
-            }
-            if (other.GoogleMapsApiKey.Length != 0)
-            {
-                GoogleMapsApiKey = other.GoogleMapsApiKey;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            PokemonVisibleRange = input.ReadDouble();
-                            break;
-                        }
-                    case 17:
-                        {
-                            PokeNavRangeMeters = input.ReadDouble();
-                            break;
-                        }
-                    case 25:
-                        {
-                            EncounterRangeMeters = input.ReadDouble();
-                            break;
-                        }
-                    case 37:
-                        {
-                            GetMapObjectsMinRefreshSeconds = input.ReadFloat();
-                            break;
-                        }
-                    case 45:
-                        {
-                            GetMapObjectsMaxRefreshSeconds = input.ReadFloat();
-                            break;
-                        }
-                    case 53:
-                        {
-                            GetMapObjectsMinDistanceMeters = input.ReadFloat();
-                            break;
-                        }
-                    case 58:
-                        {
-                            GoogleMapsApiKey = input.ReadString();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class LevelSettings : pb::IMessage<LevelSettings>
-    {
-        private static readonly pb::MessageParser<LevelSettings> _parser = new pb::MessageParser<LevelSettings>(() => new LevelSettings());
-        public static pb::MessageParser<LevelSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[39]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public LevelSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public LevelSettings(LevelSettings other) : this()
-        {
-            trainerCpModifier_ = other.trainerCpModifier_;
-            trainerDifficultyModifier_ = other.trainerDifficultyModifier_;
-        }
-
-        public LevelSettings Clone()
-        {
-            return new LevelSettings(this);
-        }
-
-        /// <summary>Field number for the "trainer_cp_modifier" field.</summary>
-        public const int TrainerCpModifierFieldNumber = 2;
-        private double trainerCpModifier_;
-        public double TrainerCpModifier
-        {
-            get { return trainerCpModifier_; }
-            set
-            {
-                trainerCpModifier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "trainer_difficulty_modifier" field.</summary>
-        public const int TrainerDifficultyModifierFieldNumber = 3;
-        private double trainerDifficultyModifier_;
-        public double TrainerDifficultyModifier
-        {
-            get { return trainerDifficultyModifier_; }
-            set
-            {
-                trainerDifficultyModifier_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as LevelSettings);
-        }
-
-        public bool Equals(LevelSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (TrainerCpModifier != other.TrainerCpModifier) return false;
-            if (TrainerDifficultyModifier != other.TrainerDifficultyModifier) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (TrainerCpModifier != 0D) hash ^= TrainerCpModifier.GetHashCode();
-            if (TrainerDifficultyModifier != 0D) hash ^= TrainerDifficultyModifier.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (TrainerCpModifier != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(TrainerCpModifier);
-            }
-            if (TrainerDifficultyModifier != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(TrainerDifficultyModifier);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (TrainerCpModifier != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (TrainerDifficultyModifier != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(LevelSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.TrainerCpModifier != 0D)
-            {
-                TrainerCpModifier = other.TrainerCpModifier;
-            }
-            if (other.TrainerDifficultyModifier != 0D)
-            {
-                TrainerDifficultyModifier = other.TrainerDifficultyModifier;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 17:
-                        {
-                            TrainerCpModifier = input.ReadDouble();
-                            break;
-                        }
-                    case 25:
-                        {
-                            TrainerDifficultyModifier = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class InventorySettings : pb::IMessage<InventorySettings>
-    {
-        private static readonly pb::MessageParser<InventorySettings> _parser = new pb::MessageParser<InventorySettings>(() => new InventorySettings());
-        public static pb::MessageParser<InventorySettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[40]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public InventorySettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public InventorySettings(InventorySettings other) : this()
-        {
-            maxPokemon_ = other.maxPokemon_;
-            maxBagItems_ = other.maxBagItems_;
-            basePokemon_ = other.basePokemon_;
-            baseBagItems_ = other.baseBagItems_;
-            baseEggs_ = other.baseEggs_;
-        }
-
-        public InventorySettings Clone()
-        {
-            return new InventorySettings(this);
-        }
-
-        /// <summary>Field number for the "max_pokemon" field.</summary>
-        public const int MaxPokemonFieldNumber = 1;
-        private int maxPokemon_;
-        public int MaxPokemon
-        {
-            get { return maxPokemon_; }
-            set
-            {
-                maxPokemon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "max_bag_items" field.</summary>
-        public const int MaxBagItemsFieldNumber = 2;
-        private int maxBagItems_;
-        public int MaxBagItems
-        {
-            get { return maxBagItems_; }
-            set
-            {
-                maxBagItems_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "base_pokemon" field.</summary>
-        public const int BasePokemonFieldNumber = 3;
-        private int basePokemon_;
-        public int BasePokemon
-        {
-            get { return basePokemon_; }
-            set
-            {
-                basePokemon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "base_bag_items" field.</summary>
-        public const int BaseBagItemsFieldNumber = 4;
-        private int baseBagItems_;
-        public int BaseBagItems
-        {
-            get { return baseBagItems_; }
-            set
-            {
-                baseBagItems_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "base_eggs" field.</summary>
-        public const int BaseEggsFieldNumber = 5;
-        private int baseEggs_;
-        public int BaseEggs
-        {
-            get { return baseEggs_; }
-            set
-            {
-                baseEggs_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as InventorySettings);
-        }
-
-        public bool Equals(InventorySettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (MaxPokemon != other.MaxPokemon) return false;
-            if (MaxBagItems != other.MaxBagItems) return false;
-            if (BasePokemon != other.BasePokemon) return false;
-            if (BaseBagItems != other.BaseBagItems) return false;
-            if (BaseEggs != other.BaseEggs) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (MaxPokemon != 0) hash ^= MaxPokemon.GetHashCode();
-            if (MaxBagItems != 0) hash ^= MaxBagItems.GetHashCode();
-            if (BasePokemon != 0) hash ^= BasePokemon.GetHashCode();
-            if (BaseBagItems != 0) hash ^= BaseBagItems.GetHashCode();
-            if (BaseEggs != 0) hash ^= BaseEggs.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (MaxPokemon != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(MaxPokemon);
-            }
-            if (MaxBagItems != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(MaxBagItems);
-            }
-            if (BasePokemon != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(BasePokemon);
-            }
-            if (BaseBagItems != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(BaseBagItems);
-            }
-            if (BaseEggs != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(BaseEggs);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (MaxPokemon != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxPokemon);
-            }
-            if (MaxBagItems != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxBagItems);
-            }
-            if (BasePokemon != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BasePokemon);
-            }
-            if (BaseBagItems != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseBagItems);
-            }
-            if (BaseEggs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseEggs);
-            }
-            return size;
-        }
-
-        public void MergeFrom(InventorySettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.MaxPokemon != 0)
-            {
-                MaxPokemon = other.MaxPokemon;
-            }
-            if (other.MaxBagItems != 0)
-            {
-                MaxBagItems = other.MaxBagItems;
-            }
-            if (other.BasePokemon != 0)
-            {
-                BasePokemon = other.BasePokemon;
-            }
-            if (other.BaseBagItems != 0)
-            {
-                BaseBagItems = other.BaseBagItems;
-            }
-            if (other.BaseEggs != 0)
-            {
-                BaseEggs = other.BaseEggs;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            MaxPokemon = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            MaxBagItems = input.ReadInt32();
-                            break;
-                        }
-                    case 24:
-                        {
-                            BasePokemon = input.ReadInt32();
-                            break;
-                        }
-                    case 32:
-                        {
-                            BaseBagItems = input.ReadInt32();
-                            break;
-                        }
-                    case 40:
-                        {
-                            BaseEggs = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PlayerUpdateRequest : pb::IMessage<PlayerUpdateRequest>
-    {
-        private static readonly pb::MessageParser<PlayerUpdateRequest> _parser = new pb::MessageParser<PlayerUpdateRequest>(() => new PlayerUpdateRequest());
-        public static pb::MessageParser<PlayerUpdateRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[41]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PlayerUpdateRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PlayerUpdateRequest(PlayerUpdateRequest other) : this()
-        {
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-        }
-
-        public PlayerUpdateRequest Clone()
-        {
-            return new PlayerUpdateRequest(this);
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 1;
-        private double latitude_;
-        public double Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 2;
-        private double longitude_;
-        public double Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PlayerUpdateRequest);
-        }
-
-        public bool Equals(PlayerUpdateRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Latitude != 0D)
-            {
-                output.WriteRawTag(9);
-                output.WriteDouble(Latitude);
-            }
-            if (Longitude != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(Longitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Latitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Longitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(PlayerUpdateRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Latitude != 0D)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0D)
-            {
-                Longitude = other.Longitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            Latitude = input.ReadDouble();
-                            break;
-                        }
-                    case 17:
-                        {
-                            Longitude = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PlayerUpdateResponse : pb::IMessage<PlayerUpdateResponse>
-    {
-        private static readonly pb::MessageParser<PlayerUpdateResponse> _parser = new pb::MessageParser<PlayerUpdateResponse>(() => new PlayerUpdateResponse());
-        public static pb::MessageParser<PlayerUpdateResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[42]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PlayerUpdateResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PlayerUpdateResponse(PlayerUpdateResponse other) : this()
-        {
-            wildPokemons_ = other.wildPokemons_.Clone();
-            forts_ = other.forts_.Clone();
-            fortsNearby_ = other.fortsNearby_;
-        }
-
-        public PlayerUpdateResponse Clone()
-        {
-            return new PlayerUpdateResponse(this);
-        }
-
-        /// <summary>Field number for the "wild_pokemons" field.</summary>
-        public const int WildPokemonsFieldNumber = 1;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> _repeated_wildPokemons_codec
-            = pb::FieldCodec.ForMessage(10, global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> wildPokemons_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> WildPokemons
-        {
-            get { return wildPokemons_; }
-        }
-
-        /// <summary>Field number for the "forts" field.</summary>
-        public const int FortsFieldNumber = 2;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortData> _repeated_forts_codec
-            = pb::FieldCodec.ForMessage(18, global::PokemonGo.RocketAPI.GeneratedCode.FortData.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData> forts_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData> Forts
-        {
-            get { return forts_; }
-        }
-
-        /// <summary>Field number for the "forts_nearby" field.</summary>
-        public const int FortsNearbyFieldNumber = 3;
-        private int fortsNearby_;
-        public int FortsNearby
-        {
-            get { return fortsNearby_; }
-            set
-            {
-                fortsNearby_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PlayerUpdateResponse);
-        }
-
-        public bool Equals(PlayerUpdateResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!wildPokemons_.Equals(other.wildPokemons_)) return false;
-            if (!forts_.Equals(other.forts_)) return false;
-            if (FortsNearby != other.FortsNearby) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= wildPokemons_.GetHashCode();
-            hash ^= forts_.GetHashCode();
-            if (FortsNearby != 0) hash ^= FortsNearby.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            wildPokemons_.WriteTo(output, _repeated_wildPokemons_codec);
-            forts_.WriteTo(output, _repeated_forts_codec);
-            if (FortsNearby != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(FortsNearby);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += wildPokemons_.CalculateSize(_repeated_wildPokemons_codec);
-            size += forts_.CalculateSize(_repeated_forts_codec);
-            if (FortsNearby != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(FortsNearby);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PlayerUpdateResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            wildPokemons_.Add(other.wildPokemons_);
-            forts_.Add(other.forts_);
-            if (other.FortsNearby != 0)
-            {
-                FortsNearby = other.FortsNearby;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            wildPokemons_.AddEntriesFrom(input, _repeated_wildPokemons_codec);
-                            break;
-                        }
-                    case 18:
-                        {
-                            forts_.AddEntriesFrom(input, _repeated_forts_codec);
-                            break;
-                        }
-                    case 24:
-                        {
-                            FortsNearby = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    /// <summary>
-    ///  No message needed.
-    /// </summary>
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class DownloadItemTemplatesRequest : pb::IMessage<DownloadItemTemplatesRequest>
-    {
-        private static readonly pb::MessageParser<DownloadItemTemplatesRequest> _parser = new pb::MessageParser<DownloadItemTemplatesRequest>(() => new DownloadItemTemplatesRequest());
-        public static pb::MessageParser<DownloadItemTemplatesRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[43]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public DownloadItemTemplatesRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public DownloadItemTemplatesRequest(DownloadItemTemplatesRequest other) : this()
-        {
-        }
-
-        public DownloadItemTemplatesRequest Clone()
-        {
-            return new DownloadItemTemplatesRequest(this);
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as DownloadItemTemplatesRequest);
-        }
-
-        public bool Equals(DownloadItemTemplatesRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            return size;
-        }
-
-        public void MergeFrom(DownloadItemTemplatesRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class DownloadItemTemplatesResponse : pb::IMessage<DownloadItemTemplatesResponse>
-    {
-        private static readonly pb::MessageParser<DownloadItemTemplatesResponse> _parser = new pb::MessageParser<DownloadItemTemplatesResponse>(() => new DownloadItemTemplatesResponse());
-        public static pb::MessageParser<DownloadItemTemplatesResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[44]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public DownloadItemTemplatesResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public DownloadItemTemplatesResponse(DownloadItemTemplatesResponse other) : this()
-        {
-            success_ = other.success_;
-            itemTemplates_ = other.itemTemplates_.Clone();
-            timestampMs_ = other.timestampMs_;
-        }
-
-        public DownloadItemTemplatesResponse Clone()
-        {
-            return new DownloadItemTemplatesResponse(this);
-        }
-
-        /// <summary>Field number for the "success" field.</summary>
-        public const int SuccessFieldNumber = 1;
-        private bool success_;
-        public bool Success
-        {
-            get { return success_; }
-            set
-            {
-                success_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item_templates" field.</summary>
-        public const int ItemTemplatesFieldNumber = 2;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate> _repeated_itemTemplates_codec
-            = pb::FieldCodec.ForMessage(18, global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate> itemTemplates_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate> ItemTemplates
-        {
-            get { return itemTemplates_; }
-        }
-
-        /// <summary>Field number for the "timestamp_ms" field.</summary>
-        public const int TimestampMsFieldNumber = 3;
-        private ulong timestampMs_;
-        public ulong TimestampMs
-        {
-            get { return timestampMs_; }
-            set
-            {
-                timestampMs_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as DownloadItemTemplatesResponse);
-        }
-
-        public bool Equals(DownloadItemTemplatesResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Success != other.Success) return false;
-            if (!itemTemplates_.Equals(other.itemTemplates_)) return false;
-            if (TimestampMs != other.TimestampMs) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Success != false) hash ^= Success.GetHashCode();
-            hash ^= itemTemplates_.GetHashCode();
-            if (TimestampMs != 0UL) hash ^= TimestampMs.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Success != false)
-            {
-                output.WriteRawTag(8);
-                output.WriteBool(Success);
-            }
-            itemTemplates_.WriteTo(output, _repeated_itemTemplates_codec);
-            if (TimestampMs != 0UL)
-            {
-                output.WriteRawTag(24);
-                output.WriteUInt64(TimestampMs);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Success != false)
-            {
-                size += 1 + 1;
-            }
-            size += itemTemplates_.CalculateSize(_repeated_itemTemplates_codec);
-            if (TimestampMs != 0UL)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeUInt64Size(TimestampMs);
-            }
-            return size;
-        }
-
-        public void MergeFrom(DownloadItemTemplatesResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Success != false)
-            {
-                Success = other.Success;
-            }
-            itemTemplates_.Add(other.itemTemplates_);
-            if (other.TimestampMs != 0UL)
-            {
-                TimestampMs = other.TimestampMs;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Success = input.ReadBool();
-                            break;
-                        }
-                    case 18:
-                        {
-                            itemTemplates_.AddEntriesFrom(input, _repeated_itemTemplates_codec);
-                            break;
-                        }
-                    case 24:
-                        {
-                            TimestampMs = input.ReadUInt64();
-                            break;
-                        }
-                }
-            }
-        }
-
-        #region Nested types
-        /// <summary>Container for nested types declared in the DownloadItemTemplatesResponse message type.</summary>
-        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        public static partial class Types
-        {
-            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-            public sealed partial class ItemTemplate : pb::IMessage<ItemTemplate>
-            {
-                private static readonly pb::MessageParser<ItemTemplate> _parser = new pb::MessageParser<ItemTemplate>(() => new ItemTemplate());
-                public static pb::MessageParser<ItemTemplate> Parser { get { return _parser; } }
-
-                public static pbr::MessageDescriptor Descriptor
-                {
-                    get { return global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Descriptor.NestedTypes[0]; }
-                }
-
-                pbr::MessageDescriptor pb::IMessage.Descriptor
-                {
-                    get { return Descriptor; }
-                }
-
-                public ItemTemplate()
-                {
-                    OnConstruction();
-                }
-
-                partial void OnConstruction();
-
-                public ItemTemplate(ItemTemplate other) : this()
-                {
-                    templateId_ = other.templateId_;
-                    PokemonSettings = other.pokemonSettings_ != null ? other.PokemonSettings.Clone() : null;
-                    ItemSettings = other.itemSettings_ != null ? other.ItemSettings.Clone() : null;
-                    MoveSettings = other.moveSettings_ != null ? other.MoveSettings.Clone() : null;
-                    MoveSequenceSettings = other.moveSequenceSettings_ != null ? other.MoveSequenceSettings.Clone() : null;
-                    TypeEffective = other.typeEffective_ != null ? other.TypeEffective.Clone() : null;
-                    BadgeSettings = other.badgeSettings_ != null ? other.BadgeSettings.Clone() : null;
-                    Camera = other.camera_ != null ? other.Camera.Clone() : null;
-                    PlayerLevel = other.playerLevel_ != null ? other.PlayerLevel.Clone() : null;
-                    GymLevel = other.gymLevel_ != null ? other.GymLevel.Clone() : null;
-                    BattleSettings = other.battleSettings_ != null ? other.BattleSettings.Clone() : null;
-                    EncounterSettings = other.encounterSettings_ != null ? other.EncounterSettings.Clone() : null;
-                    IapItemDisplay = other.iapItemDisplay_ != null ? other.IapItemDisplay.Clone() : null;
-                    IapSettings = other.iapSettings_ != null ? other.IapSettings.Clone() : null;
-                    PokemonUpgrades = other.pokemonUpgrades_ != null ? other.PokemonUpgrades.Clone() : null;
-                    EquippedBadges = other.equippedBadges_ != null ? other.EquippedBadges.Clone() : null;
-                }
-
-                public ItemTemplate Clone()
-                {
-                    return new ItemTemplate(this);
-                }
-
-                /// <summary>Field number for the "template_id" field.</summary>
-                public const int TemplateIdFieldNumber = 1;
-                private string templateId_ = "";
-                public string TemplateId
-                {
-                    get { return templateId_; }
-                    set
-                    {
-                        templateId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-                    }
-                }
-
-                /// <summary>Field number for the "pokemon_settings" field.</summary>
-                public const int PokemonSettingsFieldNumber = 2;
-                private global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings pokemonSettings_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings PokemonSettings
-                {
-                    get { return pokemonSettings_; }
-                    set
-                    {
-                        pokemonSettings_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "item_settings" field.</summary>
-                public const int ItemSettingsFieldNumber = 3;
-                private global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings itemSettings_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings ItemSettings
-                {
-                    get { return itemSettings_; }
-                    set
-                    {
-                        itemSettings_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "move_settings" field.</summary>
-                public const int MoveSettingsFieldNumber = 4;
-                private global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings moveSettings_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings MoveSettings
-                {
-                    get { return moveSettings_; }
-                    set
-                    {
-                        moveSettings_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "move_sequence_settings" field.</summary>
-                public const int MoveSequenceSettingsFieldNumber = 5;
-                private global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings moveSequenceSettings_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings MoveSequenceSettings
-                {
-                    get { return moveSequenceSettings_; }
-                    set
-                    {
-                        moveSequenceSettings_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "type_effective" field.</summary>
-                public const int TypeEffectiveFieldNumber = 8;
-                private global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings typeEffective_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings TypeEffective
-                {
-                    get { return typeEffective_; }
-                    set
-                    {
-                        typeEffective_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "badge_settings" field.</summary>
-                public const int BadgeSettingsFieldNumber = 10;
-                private global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings badgeSettings_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings BadgeSettings
-                {
-                    get { return badgeSettings_; }
-                    set
-                    {
-                        badgeSettings_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "camera" field.</summary>
-                public const int CameraFieldNumber = 11;
-                private global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings camera_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings Camera
-                {
-                    get { return camera_; }
-                    set
-                    {
-                        camera_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "player_level" field.</summary>
-                public const int PlayerLevelFieldNumber = 12;
-                private global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings playerLevel_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings PlayerLevel
-                {
-                    get { return playerLevel_; }
-                    set
-                    {
-                        playerLevel_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "gym_level" field.</summary>
-                public const int GymLevelFieldNumber = 13;
-                private global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings gymLevel_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings GymLevel
-                {
-                    get { return gymLevel_; }
-                    set
-                    {
-                        gymLevel_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "battle_settings" field.</summary>
-                public const int BattleSettingsFieldNumber = 14;
-                private global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings battleSettings_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings BattleSettings
-                {
-                    get { return battleSettings_; }
-                    set
-                    {
-                        battleSettings_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "encounter_settings" field.</summary>
-                public const int EncounterSettingsFieldNumber = 15;
-                private global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings encounterSettings_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings EncounterSettings
-                {
-                    get { return encounterSettings_; }
-                    set
-                    {
-                        encounterSettings_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "iap_item_display" field.</summary>
-                public const int IapItemDisplayFieldNumber = 16;
-                private global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay iapItemDisplay_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay IapItemDisplay
-                {
-                    get { return iapItemDisplay_; }
-                    set
-                    {
-                        iapItemDisplay_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "iap_settings" field.</summary>
-                public const int IapSettingsFieldNumber = 17;
-                private global::PokemonGo.RocketAPI.GeneratedCode.IapSettings iapSettings_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.IapSettings IapSettings
-                {
-                    get { return iapSettings_; }
-                    set
-                    {
-                        iapSettings_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "pokemon_upgrades" field.</summary>
-                public const int PokemonUpgradesFieldNumber = 18;
-                private global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings pokemonUpgrades_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings PokemonUpgrades
-                {
-                    get { return pokemonUpgrades_; }
-                    set
-                    {
-                        pokemonUpgrades_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "equipped_badges" field.</summary>
-                public const int EquippedBadgesFieldNumber = 19;
-                private global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings equippedBadges_;
-                public global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings EquippedBadges
-                {
-                    get { return equippedBadges_; }
-                    set
-                    {
-                        equippedBadges_ = value;
-                    }
-                }
-
-                public override bool Equals(object other)
-                {
-                    return Equals(other as ItemTemplate);
-                }
-
-                public bool Equals(ItemTemplate other)
-                {
-                    if (ReferenceEquals(other, null))
-                    {
-                        return false;
-                    }
-                    if (ReferenceEquals(other, this))
-                    {
-                        return true;
-                    }
-                    if (TemplateId != other.TemplateId) return false;
-                    if (!object.Equals(PokemonSettings, other.PokemonSettings)) return false;
-                    if (!object.Equals(ItemSettings, other.ItemSettings)) return false;
-                    if (!object.Equals(MoveSettings, other.MoveSettings)) return false;
-                    if (!object.Equals(MoveSequenceSettings, other.MoveSequenceSettings)) return false;
-                    if (!object.Equals(TypeEffective, other.TypeEffective)) return false;
-                    if (!object.Equals(BadgeSettings, other.BadgeSettings)) return false;
-                    if (!object.Equals(Camera, other.Camera)) return false;
-                    if (!object.Equals(PlayerLevel, other.PlayerLevel)) return false;
-                    if (!object.Equals(GymLevel, other.GymLevel)) return false;
-                    if (!object.Equals(BattleSettings, other.BattleSettings)) return false;
-                    if (!object.Equals(EncounterSettings, other.EncounterSettings)) return false;
-                    if (!object.Equals(IapItemDisplay, other.IapItemDisplay)) return false;
-                    if (!object.Equals(IapSettings, other.IapSettings)) return false;
-                    if (!object.Equals(PokemonUpgrades, other.PokemonUpgrades)) return false;
-                    if (!object.Equals(EquippedBadges, other.EquippedBadges)) return false;
-                    return true;
-                }
-
-                public override int GetHashCode()
-                {
-                    int hash = 1;
-                    if (TemplateId.Length != 0) hash ^= TemplateId.GetHashCode();
-                    if (pokemonSettings_ != null) hash ^= PokemonSettings.GetHashCode();
-                    if (itemSettings_ != null) hash ^= ItemSettings.GetHashCode();
-                    if (moveSettings_ != null) hash ^= MoveSettings.GetHashCode();
-                    if (moveSequenceSettings_ != null) hash ^= MoveSequenceSettings.GetHashCode();
-                    if (typeEffective_ != null) hash ^= TypeEffective.GetHashCode();
-                    if (badgeSettings_ != null) hash ^= BadgeSettings.GetHashCode();
-                    if (camera_ != null) hash ^= Camera.GetHashCode();
-                    if (playerLevel_ != null) hash ^= PlayerLevel.GetHashCode();
-                    if (gymLevel_ != null) hash ^= GymLevel.GetHashCode();
-                    if (battleSettings_ != null) hash ^= BattleSettings.GetHashCode();
-                    if (encounterSettings_ != null) hash ^= EncounterSettings.GetHashCode();
-                    if (iapItemDisplay_ != null) hash ^= IapItemDisplay.GetHashCode();
-                    if (iapSettings_ != null) hash ^= IapSettings.GetHashCode();
-                    if (pokemonUpgrades_ != null) hash ^= PokemonUpgrades.GetHashCode();
-                    if (equippedBadges_ != null) hash ^= EquippedBadges.GetHashCode();
-                    return hash;
-                }
-
-                public override string ToString()
-                {
-                    return pb::JsonFormatter.ToDiagnosticString(this);
-                }
-
-                public void WriteTo(pb::CodedOutputStream output)
-                {
-                    if (TemplateId.Length != 0)
-                    {
-                        output.WriteRawTag(10);
-                        output.WriteString(TemplateId);
-                    }
-                    if (pokemonSettings_ != null)
-                    {
-                        output.WriteRawTag(18);
-                        output.WriteMessage(PokemonSettings);
-                    }
-                    if (itemSettings_ != null)
-                    {
-                        output.WriteRawTag(26);
-                        output.WriteMessage(ItemSettings);
-                    }
-                    if (moveSettings_ != null)
-                    {
-                        output.WriteRawTag(34);
-                        output.WriteMessage(MoveSettings);
-                    }
-                    if (moveSequenceSettings_ != null)
-                    {
-                        output.WriteRawTag(42);
-                        output.WriteMessage(MoveSequenceSettings);
-                    }
-                    if (typeEffective_ != null)
-                    {
-                        output.WriteRawTag(66);
-                        output.WriteMessage(TypeEffective);
-                    }
-                    if (badgeSettings_ != null)
-                    {
-                        output.WriteRawTag(82);
-                        output.WriteMessage(BadgeSettings);
-                    }
-                    if (camera_ != null)
-                    {
-                        output.WriteRawTag(90);
-                        output.WriteMessage(Camera);
-                    }
-                    if (playerLevel_ != null)
-                    {
-                        output.WriteRawTag(98);
-                        output.WriteMessage(PlayerLevel);
-                    }
-                    if (gymLevel_ != null)
-                    {
-                        output.WriteRawTag(106);
-                        output.WriteMessage(GymLevel);
-                    }
-                    if (battleSettings_ != null)
-                    {
-                        output.WriteRawTag(114);
-                        output.WriteMessage(BattleSettings);
-                    }
-                    if (encounterSettings_ != null)
-                    {
-                        output.WriteRawTag(122);
-                        output.WriteMessage(EncounterSettings);
-                    }
-                    if (iapItemDisplay_ != null)
-                    {
-                        output.WriteRawTag(130, 1);
-                        output.WriteMessage(IapItemDisplay);
-                    }
-                    if (iapSettings_ != null)
-                    {
-                        output.WriteRawTag(138, 1);
-                        output.WriteMessage(IapSettings);
-                    }
-                    if (pokemonUpgrades_ != null)
-                    {
-                        output.WriteRawTag(146, 1);
-                        output.WriteMessage(PokemonUpgrades);
-                    }
-                    if (equippedBadges_ != null)
-                    {
-                        output.WriteRawTag(154, 1);
-                        output.WriteMessage(EquippedBadges);
-                    }
-                }
-
-                public int CalculateSize()
-                {
-                    int size = 0;
-                    if (TemplateId.Length != 0)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeStringSize(TemplateId);
-                    }
-                    if (pokemonSettings_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonSettings);
-                    }
-                    if (itemSettings_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(ItemSettings);
-                    }
-                    if (moveSettings_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(MoveSettings);
-                    }
-                    if (moveSequenceSettings_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(MoveSequenceSettings);
-                    }
-                    if (typeEffective_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(TypeEffective);
-                    }
-                    if (badgeSettings_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(BadgeSettings);
-                    }
-                    if (camera_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(Camera);
-                    }
-                    if (playerLevel_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerLevel);
-                    }
-                    if (gymLevel_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(GymLevel);
-                    }
-                    if (battleSettings_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(BattleSettings);
-                    }
-                    if (encounterSettings_ != null)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(EncounterSettings);
-                    }
-                    if (iapItemDisplay_ != null)
-                    {
-                        size += 2 + pb::CodedOutputStream.ComputeMessageSize(IapItemDisplay);
-                    }
-                    if (iapSettings_ != null)
-                    {
-                        size += 2 + pb::CodedOutputStream.ComputeMessageSize(IapSettings);
-                    }
-                    if (pokemonUpgrades_ != null)
-                    {
-                        size += 2 + pb::CodedOutputStream.ComputeMessageSize(PokemonUpgrades);
-                    }
-                    if (equippedBadges_ != null)
-                    {
-                        size += 2 + pb::CodedOutputStream.ComputeMessageSize(EquippedBadges);
-                    }
-                    return size;
-                }
-
-                public void MergeFrom(ItemTemplate other)
-                {
-                    if (other == null)
-                    {
-                        return;
-                    }
-                    if (other.TemplateId.Length != 0)
-                    {
-                        TemplateId = other.TemplateId;
-                    }
-                    if (other.pokemonSettings_ != null)
-                    {
-                        if (pokemonSettings_ == null)
-                        {
-                            pokemonSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings();
-                        }
-                        PokemonSettings.MergeFrom(other.PokemonSettings);
-                    }
-                    if (other.itemSettings_ != null)
-                    {
-                        if (itemSettings_ == null)
-                        {
-                            itemSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings();
-                        }
-                        ItemSettings.MergeFrom(other.ItemSettings);
-                    }
-                    if (other.moveSettings_ != null)
-                    {
-                        if (moveSettings_ == null)
-                        {
-                            moveSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings();
-                        }
-                        MoveSettings.MergeFrom(other.MoveSettings);
-                    }
-                    if (other.moveSequenceSettings_ != null)
-                    {
-                        if (moveSequenceSettings_ == null)
-                        {
-                            moveSequenceSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings();
-                        }
-                        MoveSequenceSettings.MergeFrom(other.MoveSequenceSettings);
-                    }
-                    if (other.typeEffective_ != null)
-                    {
-                        if (typeEffective_ == null)
-                        {
-                            typeEffective_ = new global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings();
-                        }
-                        TypeEffective.MergeFrom(other.TypeEffective);
-                    }
-                    if (other.badgeSettings_ != null)
-                    {
-                        if (badgeSettings_ == null)
-                        {
-                            badgeSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings();
-                        }
-                        BadgeSettings.MergeFrom(other.BadgeSettings);
-                    }
-                    if (other.camera_ != null)
-                    {
-                        if (camera_ == null)
-                        {
-                            camera_ = new global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings();
-                        }
-                        Camera.MergeFrom(other.Camera);
-                    }
-                    if (other.playerLevel_ != null)
-                    {
-                        if (playerLevel_ == null)
-                        {
-                            playerLevel_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings();
-                        }
-                        PlayerLevel.MergeFrom(other.PlayerLevel);
-                    }
-                    if (other.gymLevel_ != null)
-                    {
-                        if (gymLevel_ == null)
-                        {
-                            gymLevel_ = new global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings();
-                        }
-                        GymLevel.MergeFrom(other.GymLevel);
-                    }
-                    if (other.battleSettings_ != null)
-                    {
-                        if (battleSettings_ == null)
-                        {
-                            battleSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings();
-                        }
-                        BattleSettings.MergeFrom(other.BattleSettings);
-                    }
-                    if (other.encounterSettings_ != null)
-                    {
-                        if (encounterSettings_ == null)
-                        {
-                            encounterSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings();
-                        }
-                        EncounterSettings.MergeFrom(other.EncounterSettings);
-                    }
-                    if (other.iapItemDisplay_ != null)
-                    {
-                        if (iapItemDisplay_ == null)
-                        {
-                            iapItemDisplay_ = new global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay();
-                        }
-                        IapItemDisplay.MergeFrom(other.IapItemDisplay);
-                    }
-                    if (other.iapSettings_ != null)
-                    {
-                        if (iapSettings_ == null)
-                        {
-                            iapSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.IapSettings();
-                        }
-                        IapSettings.MergeFrom(other.IapSettings);
-                    }
-                    if (other.pokemonUpgrades_ != null)
-                    {
-                        if (pokemonUpgrades_ == null)
-                        {
-                            pokemonUpgrades_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings();
-                        }
-                        PokemonUpgrades.MergeFrom(other.PokemonUpgrades);
-                    }
-                    if (other.equippedBadges_ != null)
-                    {
-                        if (equippedBadges_ == null)
-                        {
-                            equippedBadges_ = new global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings();
-                        }
-                        EquippedBadges.MergeFrom(other.EquippedBadges);
-                    }
-                }
-
-                public void MergeFrom(pb::CodedInputStream input)
-                {
-                    uint tag;
-                    while ((tag = input.ReadTag()) != 0)
-                    {
-                        switch (tag)
-                        {
-                            default:
-                                input.SkipLastField();
-                                break;
-                            case 10:
-                                {
-                                    TemplateId = input.ReadString();
-                                    break;
-                                }
-                            case 18:
-                                {
-                                    if (pokemonSettings_ == null)
-                                    {
-                                        pokemonSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings();
-                                    }
-                                    input.ReadMessage(pokemonSettings_);
-                                    break;
-                                }
-                            case 26:
-                                {
-                                    if (itemSettings_ == null)
-                                    {
-                                        itemSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings();
-                                    }
-                                    input.ReadMessage(itemSettings_);
-                                    break;
-                                }
-                            case 34:
-                                {
-                                    if (moveSettings_ == null)
-                                    {
-                                        moveSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings();
-                                    }
-                                    input.ReadMessage(moveSettings_);
-                                    break;
-                                }
-                            case 42:
-                                {
-                                    if (moveSequenceSettings_ == null)
-                                    {
-                                        moveSequenceSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings();
-                                    }
-                                    input.ReadMessage(moveSequenceSettings_);
-                                    break;
-                                }
-                            case 66:
-                                {
-                                    if (typeEffective_ == null)
-                                    {
-                                        typeEffective_ = new global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings();
-                                    }
-                                    input.ReadMessage(typeEffective_);
-                                    break;
-                                }
-                            case 82:
-                                {
-                                    if (badgeSettings_ == null)
-                                    {
-                                        badgeSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings();
-                                    }
-                                    input.ReadMessage(badgeSettings_);
-                                    break;
-                                }
-                            case 90:
-                                {
-                                    if (camera_ == null)
-                                    {
-                                        camera_ = new global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings();
-                                    }
-                                    input.ReadMessage(camera_);
-                                    break;
-                                }
-                            case 98:
-                                {
-                                    if (playerLevel_ == null)
-                                    {
-                                        playerLevel_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings();
-                                    }
-                                    input.ReadMessage(playerLevel_);
-                                    break;
-                                }
-                            case 106:
-                                {
-                                    if (gymLevel_ == null)
-                                    {
-                                        gymLevel_ = new global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings();
-                                    }
-                                    input.ReadMessage(gymLevel_);
-                                    break;
-                                }
-                            case 114:
-                                {
-                                    if (battleSettings_ == null)
-                                    {
-                                        battleSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings();
-                                    }
-                                    input.ReadMessage(battleSettings_);
-                                    break;
-                                }
-                            case 122:
-                                {
-                                    if (encounterSettings_ == null)
-                                    {
-                                        encounterSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings();
-                                    }
-                                    input.ReadMessage(encounterSettings_);
-                                    break;
-                                }
-                            case 130:
-                                {
-                                    if (iapItemDisplay_ == null)
-                                    {
-                                        iapItemDisplay_ = new global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay();
-                                    }
-                                    input.ReadMessage(iapItemDisplay_);
-                                    break;
-                                }
-                            case 138:
-                                {
-                                    if (iapSettings_ == null)
-                                    {
-                                        iapSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.IapSettings();
-                                    }
-                                    input.ReadMessage(iapSettings_);
-                                    break;
-                                }
-                            case 146:
-                                {
-                                    if (pokemonUpgrades_ == null)
-                                    {
-                                        pokemonUpgrades_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings();
-                                    }
-                                    input.ReadMessage(pokemonUpgrades_);
-                                    break;
-                                }
-                            case 154:
-                                {
-                                    if (equippedBadges_ == null)
-                                    {
-                                        equippedBadges_ = new global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings();
-                                    }
-                                    input.ReadMessage(equippedBadges_);
-                                    break;
-                                }
-                        }
-                    }
-                }
-
-            }
-
-        }
-        #endregion
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class UseItemCaptureRequest : pb::IMessage<UseItemCaptureRequest>
-    {
-        private static readonly pb::MessageParser<UseItemCaptureRequest> _parser = new pb::MessageParser<UseItemCaptureRequest>(() => new UseItemCaptureRequest());
-        public static pb::MessageParser<UseItemCaptureRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[45]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public UseItemCaptureRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public UseItemCaptureRequest(UseItemCaptureRequest other) : this()
-        {
-            itemId_ = other.itemId_;
-            encounterId_ = other.encounterId_;
-            spawnPointGuid_ = other.spawnPointGuid_;
-        }
-
-        public UseItemCaptureRequest Clone()
-        {
-            return new UseItemCaptureRequest(this);
-        }
-
-        /// <summary>Field number for the "item_id" field.</summary>
-        public const int ItemIdFieldNumber = 1;
-        private global::AllEnum.ItemId itemId_ = 0;
-        public global::AllEnum.ItemId ItemId
-        {
-            get { return itemId_; }
-            set
-            {
-                itemId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "encounter_id" field.</summary>
-        public const int EncounterIdFieldNumber = 2;
-        private ulong encounterId_;
-        public ulong EncounterId
-        {
-            get { return encounterId_; }
-            set
-            {
-                encounterId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "spawn_point_guid" field.</summary>
-        public const int SpawnPointGuidFieldNumber = 3;
-        private string spawnPointGuid_ = "";
-        public string SpawnPointGuid
-        {
-            get { return spawnPointGuid_; }
-            set
-            {
-                spawnPointGuid_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as UseItemCaptureRequest);
-        }
-
-        public bool Equals(UseItemCaptureRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ItemId != other.ItemId) return false;
-            if (EncounterId != other.EncounterId) return false;
-            if (SpawnPointGuid != other.SpawnPointGuid) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ItemId != 0) hash ^= ItemId.GetHashCode();
-            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
-            if (SpawnPointGuid.Length != 0) hash ^= SpawnPointGuid.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ItemId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)ItemId);
-            }
-            if (EncounterId != 0UL)
-            {
-                output.WriteRawTag(17);
-                output.WriteFixed64(EncounterId);
-            }
-            if (SpawnPointGuid.Length != 0)
-            {
-                output.WriteRawTag(26);
-                output.WriteString(SpawnPointGuid);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ItemId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
-            }
-            if (EncounterId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            if (SpawnPointGuid.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnPointGuid);
-            }
-            return size;
-        }
-
-        public void MergeFrom(UseItemCaptureRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ItemId != 0)
-            {
-                ItemId = other.ItemId;
-            }
-            if (other.EncounterId != 0UL)
-            {
-                EncounterId = other.EncounterId;
-            }
-            if (other.SpawnPointGuid.Length != 0)
-            {
-                SpawnPointGuid = other.SpawnPointGuid;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            itemId_ = (global::AllEnum.ItemId)input.ReadEnum();
-                            break;
-                        }
-                    case 17:
-                        {
-                            EncounterId = input.ReadFixed64();
-                            break;
-                        }
-                    case 26:
-                        {
-                            SpawnPointGuid = input.ReadString();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class UseItemCaptureResponse : pb::IMessage<UseItemCaptureResponse>
-    {
-        private static readonly pb::MessageParser<UseItemCaptureResponse> _parser = new pb::MessageParser<UseItemCaptureResponse>(() => new UseItemCaptureResponse());
-        public static pb::MessageParser<UseItemCaptureResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[46]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public UseItemCaptureResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public UseItemCaptureResponse(UseItemCaptureResponse other) : this()
-        {
-            success_ = other.success_;
-            itemCaptureMult_ = other.itemCaptureMult_;
-            itemFleeMult_ = other.itemFleeMult_;
-            stopMovement_ = other.stopMovement_;
-            stopAttack_ = other.stopAttack_;
-            targetMax_ = other.targetMax_;
-            targetSlow_ = other.targetSlow_;
-        }
-
-        public UseItemCaptureResponse Clone()
-        {
-            return new UseItemCaptureResponse(this);
-        }
-
-        /// <summary>Field number for the "success" field.</summary>
-        public const int SuccessFieldNumber = 1;
-        private bool success_;
-        public bool Success
-        {
-            get { return success_; }
-            set
-            {
-                success_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item_capture_mult" field.</summary>
-        public const int ItemCaptureMultFieldNumber = 2;
-        private double itemCaptureMult_;
-        public double ItemCaptureMult
-        {
-            get { return itemCaptureMult_; }
-            set
-            {
-                itemCaptureMult_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item_flee_mult" field.</summary>
-        public const int ItemFleeMultFieldNumber = 3;
-        private double itemFleeMult_;
-        public double ItemFleeMult
-        {
-            get { return itemFleeMult_; }
-            set
-            {
-                itemFleeMult_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stop_movement" field.</summary>
-        public const int StopMovementFieldNumber = 4;
-        private bool stopMovement_;
-        public bool StopMovement
-        {
-            get { return stopMovement_; }
-            set
-            {
-                stopMovement_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stop_attack" field.</summary>
-        public const int StopAttackFieldNumber = 5;
-        private bool stopAttack_;
-        public bool StopAttack
-        {
-            get { return stopAttack_; }
-            set
-            {
-                stopAttack_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "target_max" field.</summary>
-        public const int TargetMaxFieldNumber = 6;
-        private bool targetMax_;
-        public bool TargetMax
-        {
-            get { return targetMax_; }
-            set
-            {
-                targetMax_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "target_slow" field.</summary>
-        public const int TargetSlowFieldNumber = 7;
-        private bool targetSlow_;
-        public bool TargetSlow
-        {
-            get { return targetSlow_; }
-            set
-            {
-                targetSlow_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as UseItemCaptureResponse);
-        }
-
-        public bool Equals(UseItemCaptureResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Success != other.Success) return false;
-            if (ItemCaptureMult != other.ItemCaptureMult) return false;
-            if (ItemFleeMult != other.ItemFleeMult) return false;
-            if (StopMovement != other.StopMovement) return false;
-            if (StopAttack != other.StopAttack) return false;
-            if (TargetMax != other.TargetMax) return false;
-            if (TargetSlow != other.TargetSlow) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Success != false) hash ^= Success.GetHashCode();
-            if (ItemCaptureMult != 0D) hash ^= ItemCaptureMult.GetHashCode();
-            if (ItemFleeMult != 0D) hash ^= ItemFleeMult.GetHashCode();
-            if (StopMovement != false) hash ^= StopMovement.GetHashCode();
-            if (StopAttack != false) hash ^= StopAttack.GetHashCode();
-            if (TargetMax != false) hash ^= TargetMax.GetHashCode();
-            if (TargetSlow != false) hash ^= TargetSlow.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Success != false)
-            {
-                output.WriteRawTag(8);
-                output.WriteBool(Success);
-            }
-            if (ItemCaptureMult != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(ItemCaptureMult);
-            }
-            if (ItemFleeMult != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(ItemFleeMult);
-            }
-            if (StopMovement != false)
-            {
-                output.WriteRawTag(32);
-                output.WriteBool(StopMovement);
-            }
-            if (StopAttack != false)
-            {
-                output.WriteRawTag(40);
-                output.WriteBool(StopAttack);
-            }
-            if (TargetMax != false)
-            {
-                output.WriteRawTag(48);
-                output.WriteBool(TargetMax);
-            }
-            if (TargetSlow != false)
-            {
-                output.WriteRawTag(56);
-                output.WriteBool(TargetSlow);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Success != false)
-            {
-                size += 1 + 1;
-            }
-            if (ItemCaptureMult != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (ItemFleeMult != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (StopMovement != false)
-            {
-                size += 1 + 1;
-            }
-            if (StopAttack != false)
-            {
-                size += 1 + 1;
-            }
-            if (TargetMax != false)
-            {
-                size += 1 + 1;
-            }
-            if (TargetSlow != false)
-            {
-                size += 1 + 1;
-            }
-            return size;
-        }
-
-        public void MergeFrom(UseItemCaptureResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Success != false)
-            {
-                Success = other.Success;
-            }
-            if (other.ItemCaptureMult != 0D)
-            {
-                ItemCaptureMult = other.ItemCaptureMult;
-            }
-            if (other.ItemFleeMult != 0D)
-            {
-                ItemFleeMult = other.ItemFleeMult;
-            }
-            if (other.StopMovement != false)
-            {
-                StopMovement = other.StopMovement;
-            }
-            if (other.StopAttack != false)
-            {
-                StopAttack = other.StopAttack;
-            }
-            if (other.TargetMax != false)
-            {
-                TargetMax = other.TargetMax;
-            }
-            if (other.TargetSlow != false)
-            {
-                TargetSlow = other.TargetSlow;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Success = input.ReadBool();
-                            break;
-                        }
-                    case 17:
-                        {
-                            ItemCaptureMult = input.ReadDouble();
-                            break;
-                        }
-                    case 25:
-                        {
-                            ItemFleeMult = input.ReadDouble();
-                            break;
-                        }
-                    case 32:
-                        {
-                            StopMovement = input.ReadBool();
-                            break;
-                        }
-                    case 40:
-                        {
-                            StopAttack = input.ReadBool();
-                            break;
-                        }
-                    case 48:
-                        {
-                            TargetMax = input.ReadBool();
-                            break;
-                        }
-                    case 56:
-                        {
-                            TargetSlow = input.ReadBool();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class ReleasePokemonRequest : pb::IMessage<ReleasePokemonRequest>
-    {
-        private static readonly pb::MessageParser<ReleasePokemonRequest> _parser = new pb::MessageParser<ReleasePokemonRequest>(() => new ReleasePokemonRequest());
-        public static pb::MessageParser<ReleasePokemonRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[47]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public ReleasePokemonRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public ReleasePokemonRequest(ReleasePokemonRequest other) : this()
-        {
-            pokemonId_ = other.pokemonId_;
-        }
-
-        public ReleasePokemonRequest Clone()
-        {
-            return new ReleasePokemonRequest(this);
-        }
-
-        /// <summary>Field number for the "pokemon_id" field.</summary>
-        public const int PokemonIdFieldNumber = 1;
-        private ulong pokemonId_;
-        public ulong PokemonId
-        {
-            get { return pokemonId_; }
-            set
-            {
-                pokemonId_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as ReleasePokemonRequest);
-        }
-
-        public bool Equals(ReleasePokemonRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (PokemonId != other.PokemonId) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (PokemonId != 0UL) hash ^= PokemonId.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (PokemonId != 0UL)
-            {
-                output.WriteRawTag(9);
-                output.WriteFixed64(PokemonId);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (PokemonId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(ReleasePokemonRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.PokemonId != 0UL)
-            {
-                PokemonId = other.PokemonId;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            PokemonId = input.ReadFixed64();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class ReleasePokemonResponse : pb::IMessage<ReleasePokemonResponse>
-    {
-        private static readonly pb::MessageParser<ReleasePokemonResponse> _parser = new pb::MessageParser<ReleasePokemonResponse>(() => new ReleasePokemonResponse());
-        public static pb::MessageParser<ReleasePokemonResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[48]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public ReleasePokemonResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public ReleasePokemonResponse(ReleasePokemonResponse other) : this()
-        {
-            result_ = other.result_;
-            candyAwarded_ = other.candyAwarded_;
-        }
-
-        public ReleasePokemonResponse Clone()
-        {
-            return new ReleasePokemonResponse(this);
-        }
-
-        /// <summary>Field number for the "result" field.</summary>
-        public const int ResultFieldNumber = 1;
-        private global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Types.Result result_ = 0;
-        public global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Types.Result Result
-        {
-            get { return result_; }
-            set
-            {
-                result_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "candy_awarded" field.</summary>
-        public const int CandyAwardedFieldNumber = 2;
-        private int candyAwarded_;
-        public int CandyAwarded
-        {
-            get { return candyAwarded_; }
-            set
-            {
-                candyAwarded_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as ReleasePokemonResponse);
-        }
-
-        public bool Equals(ReleasePokemonResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Result != other.Result) return false;
-            if (CandyAwarded != other.CandyAwarded) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Result != 0) hash ^= Result.GetHashCode();
-            if (CandyAwarded != 0) hash ^= CandyAwarded.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Result != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)Result);
-            }
-            if (CandyAwarded != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(CandyAwarded);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Result != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Result);
-            }
-            if (CandyAwarded != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(CandyAwarded);
-            }
-            return size;
-        }
-
-        public void MergeFrom(ReleasePokemonResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Result != 0)
-            {
-                Result = other.Result;
-            }
-            if (other.CandyAwarded != 0)
-            {
-                CandyAwarded = other.CandyAwarded;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            result_ = (global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Types.Result)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            CandyAwarded = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-        #region Nested types
-        /// <summary>Container for nested types declared in the ReleasePokemonResponse message type.</summary>
-        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        public static partial class Types
-        {
-            public enum Result
-            {
-                [pbr::OriginalName("UNSET")]
-                Unset = 0,
-                [pbr::OriginalName("SUCCESS")]
-                Success = 1,
-                [pbr::OriginalName("POKEMON_DEPLOYED")]
-                PokemonDeployed = 2,
-                [pbr::OriginalName("FAILED")]
-                Failed = 3,
-                [pbr::OriginalName("ERROR_POKEMON_IS_EGG")]
-                ErrorPokemonIsEgg = 4,
-            }
-
-        }
-        #endregion
-
-    }
-
-    /// <summary>
-    ///  No message needed.
-    /// </summary>
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GetHatchedEggsRequest : pb::IMessage<GetHatchedEggsRequest>
-    {
-        private static readonly pb::MessageParser<GetHatchedEggsRequest> _parser = new pb::MessageParser<GetHatchedEggsRequest>(() => new GetHatchedEggsRequest());
-        public static pb::MessageParser<GetHatchedEggsRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[49]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GetHatchedEggsRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GetHatchedEggsRequest(GetHatchedEggsRequest other) : this()
-        {
-        }
-
-        public GetHatchedEggsRequest Clone()
-        {
-            return new GetHatchedEggsRequest(this);
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GetHatchedEggsRequest);
-        }
-
-        public bool Equals(GetHatchedEggsRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            return size;
-        }
-
-        public void MergeFrom(GetHatchedEggsRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                }
-            }
-        }
-
-    }
-
-    /// <summary>
-    ///  Confirm if this is correct, I think that it should be "repeated HatchedEgg hatched_eggs" or something like that.
-    /// </summary>
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GetHatchedEggsResponse : pb::IMessage<GetHatchedEggsResponse>
-    {
-        private static readonly pb::MessageParser<GetHatchedEggsResponse> _parser = new pb::MessageParser<GetHatchedEggsResponse>(() => new GetHatchedEggsResponse());
-        public static pb::MessageParser<GetHatchedEggsResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[50]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GetHatchedEggsResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GetHatchedEggsResponse(GetHatchedEggsResponse other) : this()
-        {
-            success_ = other.success_;
-            pokemonId_ = other.pokemonId_.Clone();
-            experienceAwarded_ = other.experienceAwarded_.Clone();
-            candyAwarded_ = other.candyAwarded_.Clone();
-            stardustAwarded_ = other.stardustAwarded_.Clone();
-        }
-
-        public GetHatchedEggsResponse Clone()
-        {
-            return new GetHatchedEggsResponse(this);
-        }
-
-        /// <summary>Field number for the "success" field.</summary>
-        public const int SuccessFieldNumber = 1;
-        private bool success_;
-        public bool Success
-        {
-            get { return success_; }
-            set
-            {
-                success_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_id" field.</summary>
-        public const int PokemonIdFieldNumber = 2;
-        private static readonly pb::FieldCodec<ulong> _repeated_pokemonId_codec
-            = pb::FieldCodec.ForUInt64(18);
-        private readonly pbc::RepeatedField<ulong> pokemonId_ = new pbc::RepeatedField<ulong>();
-        /// <summary>
-        ///  Might be POGOProtos.Enums.Pokemon
-        /// </summary>
-        public pbc::RepeatedField<ulong> PokemonId
-        {
-            get { return pokemonId_; }
-        }
-
-        /// <summary>Field number for the "experience_awarded" field.</summary>
-        public const int ExperienceAwardedFieldNumber = 3;
-        private static readonly pb::FieldCodec<int> _repeated_experienceAwarded_codec
-            = pb::FieldCodec.ForInt32(26);
-        private readonly pbc::RepeatedField<int> experienceAwarded_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> ExperienceAwarded
-        {
-            get { return experienceAwarded_; }
-        }
-
-        /// <summary>Field number for the "candy_awarded" field.</summary>
-        public const int CandyAwardedFieldNumber = 4;
-        private static readonly pb::FieldCodec<int> _repeated_candyAwarded_codec
-            = pb::FieldCodec.ForInt32(34);
-        private readonly pbc::RepeatedField<int> candyAwarded_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> CandyAwarded
-        {
-            get { return candyAwarded_; }
-        }
-
-        /// <summary>Field number for the "stardust_awarded" field.</summary>
-        public const int StardustAwardedFieldNumber = 5;
-        private static readonly pb::FieldCodec<int> _repeated_stardustAwarded_codec
-            = pb::FieldCodec.ForInt32(42);
-        private readonly pbc::RepeatedField<int> stardustAwarded_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> StardustAwarded
-        {
-            get { return stardustAwarded_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GetHatchedEggsResponse);
-        }
-
-        public bool Equals(GetHatchedEggsResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Success != other.Success) return false;
-            if (!pokemonId_.Equals(other.pokemonId_)) return false;
-            if (!experienceAwarded_.Equals(other.experienceAwarded_)) return false;
-            if (!candyAwarded_.Equals(other.candyAwarded_)) return false;
-            if (!stardustAwarded_.Equals(other.stardustAwarded_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Success != false) hash ^= Success.GetHashCode();
-            hash ^= pokemonId_.GetHashCode();
-            hash ^= experienceAwarded_.GetHashCode();
-            hash ^= candyAwarded_.GetHashCode();
-            hash ^= stardustAwarded_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Success != false)
-            {
-                output.WriteRawTag(8);
-                output.WriteBool(Success);
-            }
-            pokemonId_.WriteTo(output, _repeated_pokemonId_codec);
-            experienceAwarded_.WriteTo(output, _repeated_experienceAwarded_codec);
-            candyAwarded_.WriteTo(output, _repeated_candyAwarded_codec);
-            stardustAwarded_.WriteTo(output, _repeated_stardustAwarded_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Success != false)
-            {
-                size += 1 + 1;
-            }
-            size += pokemonId_.CalculateSize(_repeated_pokemonId_codec);
-            size += experienceAwarded_.CalculateSize(_repeated_experienceAwarded_codec);
-            size += candyAwarded_.CalculateSize(_repeated_candyAwarded_codec);
-            size += stardustAwarded_.CalculateSize(_repeated_stardustAwarded_codec);
-            return size;
-        }
-
-        public void MergeFrom(GetHatchedEggsResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Success != false)
-            {
-                Success = other.Success;
-            }
-            pokemonId_.Add(other.pokemonId_);
-            experienceAwarded_.Add(other.experienceAwarded_);
-            candyAwarded_.Add(other.candyAwarded_);
-            stardustAwarded_.Add(other.stardustAwarded_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Success = input.ReadBool();
-                            break;
-                        }
-                    case 18:
-                    case 16:
-                        {
-                            pokemonId_.AddEntriesFrom(input, _repeated_pokemonId_codec);
-                            break;
-                        }
-                    case 26:
-                    case 24:
-                        {
-                            experienceAwarded_.AddEntriesFrom(input, _repeated_experienceAwarded_codec);
-                            break;
-                        }
-                    case 34:
-                    case 32:
-                        {
-                            candyAwarded_.AddEntriesFrom(input, _repeated_candyAwarded_codec);
-                            break;
-                        }
-                    case 42:
-                    case 40:
-                        {
-                            stardustAwarded_.AddEntriesFrom(input, _repeated_stardustAwarded_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortSearchRequest : pb::IMessage<FortSearchRequest>
-    {
-        private static readonly pb::MessageParser<FortSearchRequest> _parser = new pb::MessageParser<FortSearchRequest>(() => new FortSearchRequest());
-        public static pb::MessageParser<FortSearchRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[51]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortSearchRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortSearchRequest(FortSearchRequest other) : this()
-        {
-            fortId_ = other.fortId_;
-            playerLatitude_ = other.playerLatitude_;
-            playerLongitude_ = other.playerLongitude_;
-            fortLatitude_ = other.fortLatitude_;
-            fortLongitude_ = other.fortLongitude_;
-        }
-
-        public FortSearchRequest Clone()
-        {
-            return new FortSearchRequest(this);
-        }
-
-        /// <summary>Field number for the "fort_id" field.</summary>
-        public const int FortIdFieldNumber = 1;
-        private string fortId_ = "";
-        public string FortId
-        {
-            get { return fortId_; }
-            set
-            {
-                fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "player_latitude" field.</summary>
-        public const int PlayerLatitudeFieldNumber = 2;
-        private double playerLatitude_;
-        public double PlayerLatitude
-        {
-            get { return playerLatitude_; }
-            set
-            {
-                playerLatitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "player_longitude" field.</summary>
-        public const int PlayerLongitudeFieldNumber = 3;
-        private double playerLongitude_;
-        public double PlayerLongitude
-        {
-            get { return playerLongitude_; }
-            set
-            {
-                playerLongitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "fort_latitude" field.</summary>
-        public const int FortLatitudeFieldNumber = 4;
-        private double fortLatitude_;
-        public double FortLatitude
-        {
-            get { return fortLatitude_; }
-            set
-            {
-                fortLatitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "fort_longitude" field.</summary>
-        public const int FortLongitudeFieldNumber = 5;
-        private double fortLongitude_;
-        public double FortLongitude
-        {
-            get { return fortLongitude_; }
-            set
-            {
-                fortLongitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortSearchRequest);
-        }
-
-        public bool Equals(FortSearchRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (FortId != other.FortId) return false;
-            if (PlayerLatitude != other.PlayerLatitude) return false;
-            if (PlayerLongitude != other.PlayerLongitude) return false;
-            if (FortLatitude != other.FortLatitude) return false;
-            if (FortLongitude != other.FortLongitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
-            if (PlayerLatitude != 0D) hash ^= PlayerLatitude.GetHashCode();
-            if (PlayerLongitude != 0D) hash ^= PlayerLongitude.GetHashCode();
-            if (FortLatitude != 0D) hash ^= FortLatitude.GetHashCode();
-            if (FortLongitude != 0D) hash ^= FortLongitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (FortId.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(FortId);
-            }
-            if (PlayerLatitude != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(PlayerLatitude);
-            }
-            if (PlayerLongitude != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(PlayerLongitude);
-            }
-            if (FortLatitude != 0D)
-            {
-                output.WriteRawTag(33);
-                output.WriteDouble(FortLatitude);
-            }
-            if (FortLongitude != 0D)
-            {
-                output.WriteRawTag(41);
-                output.WriteDouble(FortLongitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (FortId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
-            }
-            if (PlayerLatitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (PlayerLongitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (FortLatitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (FortLongitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortSearchRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.FortId.Length != 0)
-            {
-                FortId = other.FortId;
-            }
-            if (other.PlayerLatitude != 0D)
-            {
-                PlayerLatitude = other.PlayerLatitude;
-            }
-            if (other.PlayerLongitude != 0D)
-            {
-                PlayerLongitude = other.PlayerLongitude;
-            }
-            if (other.FortLatitude != 0D)
-            {
-                FortLatitude = other.FortLatitude;
-            }
-            if (other.FortLongitude != 0D)
-            {
-                FortLongitude = other.FortLongitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            FortId = input.ReadString();
-                            break;
-                        }
-                    case 17:
-                        {
-                            PlayerLatitude = input.ReadDouble();
-                            break;
-                        }
-                    case 25:
-                        {
-                            PlayerLongitude = input.ReadDouble();
-                            break;
-                        }
-                    case 33:
-                        {
-                            FortLatitude = input.ReadDouble();
-                            break;
-                        }
-                    case 41:
-                        {
-                            FortLongitude = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortSearchResponse : pb::IMessage<FortSearchResponse>
-    {
-        private static readonly pb::MessageParser<FortSearchResponse> _parser = new pb::MessageParser<FortSearchResponse>(() => new FortSearchResponse());
-        public static pb::MessageParser<FortSearchResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[52]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortSearchResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortSearchResponse(FortSearchResponse other) : this()
-        {
-            result_ = other.result_;
-            itemsAwarded_ = other.itemsAwarded_.Clone();
-            gemsAwarded_ = other.gemsAwarded_;
-            PokemonDataEgg = other.pokemonDataEgg_ != null ? other.PokemonDataEgg.Clone() : null;
-            experienceAwarded_ = other.experienceAwarded_;
-            cooldownCompleteTimestampMs_ = other.cooldownCompleteTimestampMs_;
-            chainHackSequenceNumber_ = other.chainHackSequenceNumber_;
-        }
-
-        public FortSearchResponse Clone()
-        {
-            return new FortSearchResponse(this);
-        }
-
-        /// <summary>Field number for the "result" field.</summary>
-        public const int ResultFieldNumber = 1;
-        private global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.Result result_ = 0;
-        public global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.Result Result
-        {
-            get { return result_; }
-            set
-            {
-                result_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "items_awarded" field.</summary>
-        public const int ItemsAwardedFieldNumber = 2;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward> _repeated_itemsAwarded_codec
-            = pb::FieldCodec.ForMessage(18, global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward> itemsAwarded_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward> ItemsAwarded
-        {
-            get { return itemsAwarded_; }
-        }
-
-        /// <summary>Field number for the "gems_awarded" field.</summary>
-        public const int GemsAwardedFieldNumber = 3;
-        private int gemsAwarded_;
-        public int GemsAwarded
-        {
-            get { return gemsAwarded_; }
-            set
-            {
-                gemsAwarded_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_data_egg" field.</summary>
-        public const int PokemonDataEggFieldNumber = 4;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemonDataEgg_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData PokemonDataEgg
-        {
-            get { return pokemonDataEgg_; }
-            set
-            {
-                pokemonDataEgg_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "experience_awarded" field.</summary>
-        public const int ExperienceAwardedFieldNumber = 5;
-        private int experienceAwarded_;
-        public int ExperienceAwarded
-        {
-            get { return experienceAwarded_; }
-            set
-            {
-                experienceAwarded_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cooldown_complete_timestamp_ms" field.</summary>
-        public const int CooldownCompleteTimestampMsFieldNumber = 6;
-        private long cooldownCompleteTimestampMs_;
-        public long CooldownCompleteTimestampMs
-        {
-            get { return cooldownCompleteTimestampMs_; }
-            set
-            {
-                cooldownCompleteTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "chain_hack_sequence_number" field.</summary>
-        public const int ChainHackSequenceNumberFieldNumber = 7;
-        private int chainHackSequenceNumber_;
-        public int ChainHackSequenceNumber
-        {
-            get { return chainHackSequenceNumber_; }
-            set
-            {
-                chainHackSequenceNumber_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortSearchResponse);
-        }
-
-        public bool Equals(FortSearchResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Result != other.Result) return false;
-            if (!itemsAwarded_.Equals(other.itemsAwarded_)) return false;
-            if (GemsAwarded != other.GemsAwarded) return false;
-            if (!object.Equals(PokemonDataEgg, other.PokemonDataEgg)) return false;
-            if (ExperienceAwarded != other.ExperienceAwarded) return false;
-            if (CooldownCompleteTimestampMs != other.CooldownCompleteTimestampMs) return false;
-            if (ChainHackSequenceNumber != other.ChainHackSequenceNumber) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Result != 0) hash ^= Result.GetHashCode();
-            hash ^= itemsAwarded_.GetHashCode();
-            if (GemsAwarded != 0) hash ^= GemsAwarded.GetHashCode();
-            if (pokemonDataEgg_ != null) hash ^= PokemonDataEgg.GetHashCode();
-            if (ExperienceAwarded != 0) hash ^= ExperienceAwarded.GetHashCode();
-            if (CooldownCompleteTimestampMs != 0L) hash ^= CooldownCompleteTimestampMs.GetHashCode();
-            if (ChainHackSequenceNumber != 0) hash ^= ChainHackSequenceNumber.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Result != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)Result);
-            }
-            itemsAwarded_.WriteTo(output, _repeated_itemsAwarded_codec);
-            if (GemsAwarded != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(GemsAwarded);
-            }
-            if (pokemonDataEgg_ != null)
-            {
-                output.WriteRawTag(34);
-                output.WriteMessage(PokemonDataEgg);
-            }
-            if (ExperienceAwarded != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(ExperienceAwarded);
-            }
-            if (CooldownCompleteTimestampMs != 0L)
-            {
-                output.WriteRawTag(48);
-                output.WriteInt64(CooldownCompleteTimestampMs);
-            }
-            if (ChainHackSequenceNumber != 0)
-            {
-                output.WriteRawTag(56);
-                output.WriteInt32(ChainHackSequenceNumber);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Result != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Result);
-            }
-            size += itemsAwarded_.CalculateSize(_repeated_itemsAwarded_codec);
-            if (GemsAwarded != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(GemsAwarded);
-            }
-            if (pokemonDataEgg_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonDataEgg);
-            }
-            if (ExperienceAwarded != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ExperienceAwarded);
-            }
-            if (CooldownCompleteTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(CooldownCompleteTimestampMs);
-            }
-            if (ChainHackSequenceNumber != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ChainHackSequenceNumber);
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortSearchResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Result != 0)
-            {
-                Result = other.Result;
-            }
-            itemsAwarded_.Add(other.itemsAwarded_);
-            if (other.GemsAwarded != 0)
-            {
-                GemsAwarded = other.GemsAwarded;
-            }
-            if (other.pokemonDataEgg_ != null)
-            {
-                if (pokemonDataEgg_ == null)
-                {
-                    pokemonDataEgg_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                }
-                PokemonDataEgg.MergeFrom(other.PokemonDataEgg);
-            }
-            if (other.ExperienceAwarded != 0)
-            {
-                ExperienceAwarded = other.ExperienceAwarded;
-            }
-            if (other.CooldownCompleteTimestampMs != 0L)
-            {
-                CooldownCompleteTimestampMs = other.CooldownCompleteTimestampMs;
-            }
-            if (other.ChainHackSequenceNumber != 0)
-            {
-                ChainHackSequenceNumber = other.ChainHackSequenceNumber;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            result_ = (global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.Result)input.ReadEnum();
-                            break;
-                        }
-                    case 18:
-                        {
-                            itemsAwarded_.AddEntriesFrom(input, _repeated_itemsAwarded_codec);
-                            break;
-                        }
-                    case 24:
-                        {
-                            GemsAwarded = input.ReadInt32();
-                            break;
-                        }
-                    case 34:
-                        {
-                            if (pokemonDataEgg_ == null)
-                            {
-                                pokemonDataEgg_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                            }
-                            input.ReadMessage(pokemonDataEgg_);
-                            break;
-                        }
-                    case 40:
-                        {
-                            ExperienceAwarded = input.ReadInt32();
-                            break;
-                        }
-                    case 48:
-                        {
-                            CooldownCompleteTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 56:
-                        {
-                            ChainHackSequenceNumber = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-        #region Nested types
-        /// <summary>Container for nested types declared in the FortSearchResponse message type.</summary>
-        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        public static partial class Types
-        {
-            public enum Result
-            {
-                [pbr::OriginalName("NO_RESULT_SET")]
-                NoResultSet = 0,
-                [pbr::OriginalName("SUCCESS")]
-                Success = 1,
-                [pbr::OriginalName("OUT_OF_RANGE")]
-                OutOfRange = 2,
-                [pbr::OriginalName("IN_COOLDOWN_PERIOD")]
-                InCooldownPeriod = 3,
-                [pbr::OriginalName("INVENTORY_FULL")]
-                InventoryFull = 4,
-            }
-
-            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-            public sealed partial class ItemAward : pb::IMessage<ItemAward>
-            {
-                private static readonly pb::MessageParser<ItemAward> _parser = new pb::MessageParser<ItemAward>(() => new ItemAward());
-                public static pb::MessageParser<ItemAward> Parser { get { return _parser; } }
-
-                public static pbr::MessageDescriptor Descriptor
-                {
-                    get { return global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Descriptor.NestedTypes[0]; }
-                }
-
-                pbr::MessageDescriptor pb::IMessage.Descriptor
-                {
-                    get { return Descriptor; }
-                }
-
-                public ItemAward()
-                {
-                    OnConstruction();
-                }
-
-                partial void OnConstruction();
-
-                public ItemAward(ItemAward other) : this()
-                {
-                    itemId_ = other.itemId_;
-                    itemCount_ = other.itemCount_;
-                }
-
-                public ItemAward Clone()
-                {
-                    return new ItemAward(this);
-                }
-
-                /// <summary>Field number for the "item_id" field.</summary>
-                public const int ItemIdFieldNumber = 1;
-                private global::AllEnum.ItemId itemId_ = 0;
-                public global::AllEnum.ItemId ItemId
-                {
-                    get { return itemId_; }
-                    set
-                    {
-                        itemId_ = value;
-                    }
-                }
-
-                /// <summary>Field number for the "item_count" field.</summary>
-                public const int ItemCountFieldNumber = 2;
-                private int itemCount_;
-                public int ItemCount
-                {
-                    get { return itemCount_; }
-                    set
-                    {
-                        itemCount_ = value;
-                    }
-                }
-
-                public override bool Equals(object other)
-                {
-                    return Equals(other as ItemAward);
-                }
-
-                public bool Equals(ItemAward other)
-                {
-                    if (ReferenceEquals(other, null))
-                    {
-                        return false;
-                    }
-                    if (ReferenceEquals(other, this))
-                    {
-                        return true;
-                    }
-                    if (ItemId != other.ItemId) return false;
-                    if (ItemCount != other.ItemCount) return false;
-                    return true;
-                }
-
-                public override int GetHashCode()
-                {
-                    int hash = 1;
-                    if (ItemId != 0) hash ^= ItemId.GetHashCode();
-                    if (ItemCount != 0) hash ^= ItemCount.GetHashCode();
-                    return hash;
-                }
-
-                public override string ToString()
-                {
-                    return pb::JsonFormatter.ToDiagnosticString(this);
-                }
-
-                public void WriteTo(pb::CodedOutputStream output)
-                {
-                    if (ItemId != 0)
-                    {
-                        output.WriteRawTag(8);
-                        output.WriteEnum((int)ItemId);
-                    }
-                    if (ItemCount != 0)
-                    {
-                        output.WriteRawTag(16);
-                        output.WriteInt32(ItemCount);
-                    }
-                }
-
-                public int CalculateSize()
-                {
-                    int size = 0;
-                    if (ItemId != 0)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
-                    }
-                    if (ItemCount != 0)
-                    {
-                        size += 1 + pb::CodedOutputStream.ComputeInt32Size(ItemCount);
-                    }
-                    return size;
-                }
-
-                public void MergeFrom(ItemAward other)
-                {
-                    if (other == null)
-                    {
-                        return;
-                    }
-                    if (other.ItemId != 0)
-                    {
-                        ItemId = other.ItemId;
-                    }
-                    if (other.ItemCount != 0)
-                    {
-                        ItemCount = other.ItemCount;
-                    }
-                }
-
-                public void MergeFrom(pb::CodedInputStream input)
-                {
-                    uint tag;
-                    while ((tag = input.ReadTag()) != 0)
-                    {
-                        switch (tag)
-                        {
-                            default:
-                                input.SkipLastField();
-                                break;
-                            case 8:
-                                {
-                                    itemId_ = (global::AllEnum.ItemId)input.ReadEnum();
-                                    break;
-                                }
-                            case 16:
-                                {
-                                    ItemCount = input.ReadInt32();
-                                    break;
-                                }
-                        }
-                    }
-                }
-
-            }
-
-        }
-        #endregion
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortDetailsRequest : pb::IMessage<FortDetailsRequest>
-    {
-        private static readonly pb::MessageParser<FortDetailsRequest> _parser = new pb::MessageParser<FortDetailsRequest>(() => new FortDetailsRequest());
-        public static pb::MessageParser<FortDetailsRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[53]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortDetailsRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortDetailsRequest(FortDetailsRequest other) : this()
-        {
-            fortId_ = other.fortId_;
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-        }
-
-        public FortDetailsRequest Clone()
-        {
-            return new FortDetailsRequest(this);
-        }
-
-        /// <summary>Field number for the "fort_id" field.</summary>
-        public const int FortIdFieldNumber = 1;
-        private string fortId_ = "";
-        public string FortId
-        {
-            get { return fortId_; }
-            set
-            {
-                fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 2;
-        private double latitude_;
-        public double Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 3;
-        private double longitude_;
-        public double Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortDetailsRequest);
-        }
-
-        public bool Equals(FortDetailsRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (FortId != other.FortId) return false;
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
-            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (FortId.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(FortId);
-            }
-            if (Latitude != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(Latitude);
-            }
-            if (Longitude != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(Longitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (FortId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
-            }
-            if (Latitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Longitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortDetailsRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.FortId.Length != 0)
-            {
-                FortId = other.FortId;
-            }
-            if (other.Latitude != 0D)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0D)
-            {
-                Longitude = other.Longitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            FortId = input.ReadString();
-                            break;
-                        }
-                    case 17:
-                        {
-                            Latitude = input.ReadDouble();
-                            break;
-                        }
-                    case 25:
-                        {
-                            Longitude = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortDetailsResponse : pb::IMessage<FortDetailsResponse>
-    {
-        private static readonly pb::MessageParser<FortDetailsResponse> _parser = new pb::MessageParser<FortDetailsResponse>(() => new FortDetailsResponse());
-        public static pb::MessageParser<FortDetailsResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[54]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortDetailsResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortDetailsResponse(FortDetailsResponse other) : this()
-        {
-            fortId_ = other.fortId_;
-            teamColor_ = other.teamColor_;
-            PokemonData = other.pokemonData_ != null ? other.PokemonData.Clone() : null;
-            name_ = other.name_;
-            imageUrls_ = other.imageUrls_.Clone();
-            fp_ = other.fp_;
-            stamina_ = other.stamina_;
-            maxStamina_ = other.maxStamina_;
-            type_ = other.type_;
-            latitude_ = other.latitude_;
-            longitude_ = other.longitude_;
-            description_ = other.description_;
-            modifiers_ = other.modifiers_.Clone();
-        }
-
-        public FortDetailsResponse Clone()
-        {
-            return new FortDetailsResponse(this);
-        }
-
-        /// <summary>Field number for the "fort_id" field.</summary>
-        public const int FortIdFieldNumber = 1;
-        private string fortId_ = "";
-        public string FortId
-        {
-            get { return fortId_; }
-            set
-            {
-                fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "team_color" field.</summary>
-        public const int TeamColorFieldNumber = 2;
-        private global::AllEnum.TeamColor teamColor_ = 0;
-        public global::AllEnum.TeamColor TeamColor
-        {
-            get { return teamColor_; }
-            set
-            {
-                teamColor_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_data" field.</summary>
-        public const int PokemonDataFieldNumber = 3;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemonData_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData PokemonData
-        {
-            get { return pokemonData_; }
-            set
-            {
-                pokemonData_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "name" field.</summary>
-        public const int NameFieldNumber = 4;
-        private string name_ = "";
-        public string Name
-        {
-            get { return name_; }
-            set
-            {
-                name_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "image_urls" field.</summary>
-        public const int ImageUrlsFieldNumber = 5;
-        private static readonly pb::FieldCodec<string> _repeated_imageUrls_codec
-            = pb::FieldCodec.ForString(42);
-        private readonly pbc::RepeatedField<string> imageUrls_ = new pbc::RepeatedField<string>();
-        public pbc::RepeatedField<string> ImageUrls
-        {
-            get { return imageUrls_; }
-        }
-
-        /// <summary>Field number for the "fp" field.</summary>
-        public const int FpFieldNumber = 6;
-        private int fp_;
-        public int Fp
-        {
-            get { return fp_; }
-            set
-            {
-                fp_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stamina" field.</summary>
-        public const int StaminaFieldNumber = 7;
-        private int stamina_;
-        public int Stamina
-        {
-            get { return stamina_; }
-            set
-            {
-                stamina_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "max_stamina" field.</summary>
-        public const int MaxStaminaFieldNumber = 8;
-        private int maxStamina_;
-        public int MaxStamina
-        {
-            get { return maxStamina_; }
-            set
-            {
-                maxStamina_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "type" field.</summary>
-        public const int TypeFieldNumber = 9;
-        private global::AllEnum.FortType type_ = 0;
-        public global::AllEnum.FortType Type
-        {
-            get { return type_; }
-            set
-            {
-                type_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "latitude" field.</summary>
-        public const int LatitudeFieldNumber = 10;
-        private double latitude_;
-        public double Latitude
-        {
-            get { return latitude_; }
-            set
-            {
-                latitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "longitude" field.</summary>
-        public const int LongitudeFieldNumber = 11;
-        private double longitude_;
-        public double Longitude
-        {
-            get { return longitude_; }
-            set
-            {
-                longitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "description" field.</summary>
-        public const int DescriptionFieldNumber = 12;
-        private string description_ = "";
-        public string Description
-        {
-            get { return description_; }
-            set
-            {
-                description_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "modifiers" field.</summary>
-        public const int ModifiersFieldNumber = 13;
-        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortModifier> _repeated_modifiers_codec
-            = pb::FieldCodec.ForMessage(106, global::PokemonGo.RocketAPI.GeneratedCode.FortModifier.Parser);
-        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortModifier> modifiers_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortModifier>();
-        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortModifier> Modifiers
-        {
-            get { return modifiers_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortDetailsResponse);
-        }
-
-        public bool Equals(FortDetailsResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (FortId != other.FortId) return false;
-            if (TeamColor != other.TeamColor) return false;
-            if (!object.Equals(PokemonData, other.PokemonData)) return false;
-            if (Name != other.Name) return false;
-            if (!imageUrls_.Equals(other.imageUrls_)) return false;
-            if (Fp != other.Fp) return false;
-            if (Stamina != other.Stamina) return false;
-            if (MaxStamina != other.MaxStamina) return false;
-            if (Type != other.Type) return false;
-            if (Latitude != other.Latitude) return false;
-            if (Longitude != other.Longitude) return false;
-            if (Description != other.Description) return false;
-            if (!modifiers_.Equals(other.modifiers_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
-            if (TeamColor != 0) hash ^= TeamColor.GetHashCode();
-            if (pokemonData_ != null) hash ^= PokemonData.GetHashCode();
-            if (Name.Length != 0) hash ^= Name.GetHashCode();
-            hash ^= imageUrls_.GetHashCode();
-            if (Fp != 0) hash ^= Fp.GetHashCode();
-            if (Stamina != 0) hash ^= Stamina.GetHashCode();
-            if (MaxStamina != 0) hash ^= MaxStamina.GetHashCode();
-            if (Type != 0) hash ^= Type.GetHashCode();
-            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
-            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
-            if (Description.Length != 0) hash ^= Description.GetHashCode();
-            hash ^= modifiers_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (FortId.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(FortId);
-            }
-            if (TeamColor != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)TeamColor);
-            }
-            if (pokemonData_ != null)
-            {
-                output.WriteRawTag(26);
-                output.WriteMessage(PokemonData);
-            }
-            if (Name.Length != 0)
-            {
-                output.WriteRawTag(34);
-                output.WriteString(Name);
-            }
-            imageUrls_.WriteTo(output, _repeated_imageUrls_codec);
-            if (Fp != 0)
-            {
-                output.WriteRawTag(48);
-                output.WriteInt32(Fp);
-            }
-            if (Stamina != 0)
-            {
-                output.WriteRawTag(56);
-                output.WriteInt32(Stamina);
-            }
-            if (MaxStamina != 0)
-            {
-                output.WriteRawTag(64);
-                output.WriteInt32(MaxStamina);
-            }
-            if (Type != 0)
-            {
-                output.WriteRawTag(72);
-                output.WriteEnum((int)Type);
-            }
-            if (Latitude != 0D)
-            {
-                output.WriteRawTag(81);
-                output.WriteDouble(Latitude);
-            }
-            if (Longitude != 0D)
-            {
-                output.WriteRawTag(89);
-                output.WriteDouble(Longitude);
-            }
-            if (Description.Length != 0)
-            {
-                output.WriteRawTag(98);
-                output.WriteString(Description);
-            }
-            modifiers_.WriteTo(output, _repeated_modifiers_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (FortId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
-            }
-            if (TeamColor != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)TeamColor);
-            }
-            if (pokemonData_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonData);
-            }
-            if (Name.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Name);
-            }
-            size += imageUrls_.CalculateSize(_repeated_imageUrls_codec);
-            if (Fp != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Fp);
-            }
-            if (Stamina != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Stamina);
-            }
-            if (MaxStamina != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxStamina);
-            }
-            if (Type != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Type);
-            }
-            if (Latitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Longitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (Description.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Description);
-            }
-            size += modifiers_.CalculateSize(_repeated_modifiers_codec);
-            return size;
-        }
-
-        public void MergeFrom(FortDetailsResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.FortId.Length != 0)
-            {
-                FortId = other.FortId;
-            }
-            if (other.TeamColor != 0)
-            {
-                TeamColor = other.TeamColor;
-            }
-            if (other.pokemonData_ != null)
-            {
-                if (pokemonData_ == null)
-                {
-                    pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                }
-                PokemonData.MergeFrom(other.PokemonData);
-            }
-            if (other.Name.Length != 0)
-            {
-                Name = other.Name;
-            }
-            imageUrls_.Add(other.imageUrls_);
-            if (other.Fp != 0)
-            {
-                Fp = other.Fp;
-            }
-            if (other.Stamina != 0)
-            {
-                Stamina = other.Stamina;
-            }
-            if (other.MaxStamina != 0)
-            {
-                MaxStamina = other.MaxStamina;
-            }
-            if (other.Type != 0)
-            {
-                Type = other.Type;
-            }
-            if (other.Latitude != 0D)
-            {
-                Latitude = other.Latitude;
-            }
-            if (other.Longitude != 0D)
-            {
-                Longitude = other.Longitude;
-            }
-            if (other.Description.Length != 0)
-            {
-                Description = other.Description;
-            }
-            modifiers_.Add(other.modifiers_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            FortId = input.ReadString();
-                            break;
-                        }
-                    case 16:
-                        {
-                            teamColor_ = (global::AllEnum.TeamColor)input.ReadEnum();
-                            break;
-                        }
-                    case 26:
-                        {
-                            if (pokemonData_ == null)
-                            {
-                                pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                            }
-                            input.ReadMessage(pokemonData_);
-                            break;
-                        }
-                    case 34:
-                        {
-                            Name = input.ReadString();
-                            break;
-                        }
-                    case 42:
-                        {
-                            imageUrls_.AddEntriesFrom(input, _repeated_imageUrls_codec);
-                            break;
-                        }
-                    case 48:
-                        {
-                            Fp = input.ReadInt32();
-                            break;
-                        }
-                    case 56:
-                        {
-                            Stamina = input.ReadInt32();
-                            break;
-                        }
-                    case 64:
-                        {
-                            MaxStamina = input.ReadInt32();
-                            break;
-                        }
-                    case 72:
-                        {
-                            type_ = (global::AllEnum.FortType)input.ReadEnum();
-                            break;
-                        }
-                    case 81:
-                        {
-                            Latitude = input.ReadDouble();
-                            break;
-                        }
-                    case 89:
-                        {
-                            Longitude = input.ReadDouble();
-                            break;
-                        }
-                    case 98:
-                        {
-                            Description = input.ReadString();
-                            break;
-                        }
-                    case 106:
-                        {
-                            modifiers_.AddEntriesFrom(input, _repeated_modifiers_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortModifier : pb::IMessage<FortModifier>
-    {
-        private static readonly pb::MessageParser<FortModifier> _parser = new pb::MessageParser<FortModifier>(() => new FortModifier());
-        public static pb::MessageParser<FortModifier> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[55]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortModifier()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortModifier(FortModifier other) : this()
-        {
-            itemId_ = other.itemId_;
-            expirationTimestampMs_ = other.expirationTimestampMs_;
-            deployerPlayerCodename_ = other.deployerPlayerCodename_;
-        }
-
-        public FortModifier Clone()
-        {
-            return new FortModifier(this);
-        }
-
-        /// <summary>Field number for the "item_id" field.</summary>
-        public const int ItemIdFieldNumber = 1;
-        private global::AllEnum.ItemId itemId_ = 0;
-        public global::AllEnum.ItemId ItemId
-        {
-            get { return itemId_; }
-            set
-            {
-                itemId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "expiration_timestamp_ms" field.</summary>
-        public const int ExpirationTimestampMsFieldNumber = 2;
-        private long expirationTimestampMs_;
-        public long ExpirationTimestampMs
-        {
-            get { return expirationTimestampMs_; }
-            set
-            {
-                expirationTimestampMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "deployer_player_codename" field.</summary>
-        public const int DeployerPlayerCodenameFieldNumber = 3;
-        private string deployerPlayerCodename_ = "";
-        public string DeployerPlayerCodename
-        {
-            get { return deployerPlayerCodename_; }
-            set
-            {
-                deployerPlayerCodename_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortModifier);
-        }
-
-        public bool Equals(FortModifier other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ItemId != other.ItemId) return false;
-            if (ExpirationTimestampMs != other.ExpirationTimestampMs) return false;
-            if (DeployerPlayerCodename != other.DeployerPlayerCodename) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ItemId != 0) hash ^= ItemId.GetHashCode();
-            if (ExpirationTimestampMs != 0L) hash ^= ExpirationTimestampMs.GetHashCode();
-            if (DeployerPlayerCodename.Length != 0) hash ^= DeployerPlayerCodename.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ItemId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)ItemId);
-            }
-            if (ExpirationTimestampMs != 0L)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt64(ExpirationTimestampMs);
-            }
-            if (DeployerPlayerCodename.Length != 0)
-            {
-                output.WriteRawTag(26);
-                output.WriteString(DeployerPlayerCodename);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ItemId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
-            }
-            if (ExpirationTimestampMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(ExpirationTimestampMs);
-            }
-            if (DeployerPlayerCodename.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(DeployerPlayerCodename);
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortModifier other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ItemId != 0)
-            {
-                ItemId = other.ItemId;
-            }
-            if (other.ExpirationTimestampMs != 0L)
-            {
-                ExpirationTimestampMs = other.ExpirationTimestampMs;
-            }
-            if (other.DeployerPlayerCodename.Length != 0)
-            {
-                DeployerPlayerCodename = other.DeployerPlayerCodename;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            itemId_ = (global::AllEnum.ItemId)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            ExpirationTimestampMs = input.ReadInt64();
-                            break;
-                        }
-                    case 26:
-                        {
-                            DeployerPlayerCodename = input.ReadString();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EncounterRequest : pb::IMessage<EncounterRequest>
-    {
-        private static readonly pb::MessageParser<EncounterRequest> _parser = new pb::MessageParser<EncounterRequest>(() => new EncounterRequest());
-        public static pb::MessageParser<EncounterRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[56]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EncounterRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EncounterRequest(EncounterRequest other) : this()
-        {
-            encounterId_ = other.encounterId_;
-            spawnpointId_ = other.spawnpointId_;
-            playerLatitude_ = other.playerLatitude_;
-            playerLongitude_ = other.playerLongitude_;
-        }
-
-        public EncounterRequest Clone()
-        {
-            return new EncounterRequest(this);
-        }
-
-        /// <summary>Field number for the "encounter_id" field.</summary>
-        public const int EncounterIdFieldNumber = 1;
-        private ulong encounterId_;
-        public ulong EncounterId
-        {
-            get { return encounterId_; }
-            set
-            {
-                encounterId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "spawnpoint_id" field.</summary>
-        public const int SpawnpointIdFieldNumber = 2;
-        private string spawnpointId_ = "";
-        public string SpawnpointId
-        {
-            get { return spawnpointId_; }
-            set
-            {
-                spawnpointId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "player_latitude" field.</summary>
-        public const int PlayerLatitudeFieldNumber = 3;
-        private double playerLatitude_;
-        public double PlayerLatitude
-        {
-            get { return playerLatitude_; }
-            set
-            {
-                playerLatitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "player_longitude" field.</summary>
-        public const int PlayerLongitudeFieldNumber = 4;
-        private double playerLongitude_;
-        public double PlayerLongitude
-        {
-            get { return playerLongitude_; }
-            set
-            {
-                playerLongitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EncounterRequest);
-        }
-
-        public bool Equals(EncounterRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (EncounterId != other.EncounterId) return false;
-            if (SpawnpointId != other.SpawnpointId) return false;
-            if (PlayerLatitude != other.PlayerLatitude) return false;
-            if (PlayerLongitude != other.PlayerLongitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
-            if (SpawnpointId.Length != 0) hash ^= SpawnpointId.GetHashCode();
-            if (PlayerLatitude != 0D) hash ^= PlayerLatitude.GetHashCode();
-            if (PlayerLongitude != 0D) hash ^= PlayerLongitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (EncounterId != 0UL)
-            {
-                output.WriteRawTag(9);
-                output.WriteFixed64(EncounterId);
-            }
-            if (SpawnpointId.Length != 0)
-            {
-                output.WriteRawTag(18);
-                output.WriteString(SpawnpointId);
-            }
-            if (PlayerLatitude != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(PlayerLatitude);
-            }
-            if (PlayerLongitude != 0D)
-            {
-                output.WriteRawTag(33);
-                output.WriteDouble(PlayerLongitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (EncounterId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            if (SpawnpointId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnpointId);
-            }
-            if (PlayerLatitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (PlayerLongitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(EncounterRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.EncounterId != 0UL)
-            {
-                EncounterId = other.EncounterId;
-            }
-            if (other.SpawnpointId.Length != 0)
-            {
-                SpawnpointId = other.SpawnpointId;
-            }
-            if (other.PlayerLatitude != 0D)
-            {
-                PlayerLatitude = other.PlayerLatitude;
-            }
-            if (other.PlayerLongitude != 0D)
-            {
-                PlayerLongitude = other.PlayerLongitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            EncounterId = input.ReadFixed64();
-                            break;
-                        }
-                    case 18:
-                        {
-                            SpawnpointId = input.ReadString();
-                            break;
-                        }
-                    case 25:
-                        {
-                            PlayerLatitude = input.ReadDouble();
-                            break;
-                        }
-                    case 33:
-                        {
-                            PlayerLongitude = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EncounterResponse : pb::IMessage<EncounterResponse>
-    {
-        private static readonly pb::MessageParser<EncounterResponse> _parser = new pb::MessageParser<EncounterResponse>(() => new EncounterResponse());
-        public static pb::MessageParser<EncounterResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[57]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EncounterResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EncounterResponse(EncounterResponse other) : this()
-        {
-            WildPokemon = other.wildPokemon_ != null ? other.WildPokemon.Clone() : null;
-            background_ = other.background_;
-            status_ = other.status_;
-            CaptureProbability = other.captureProbability_ != null ? other.CaptureProbability.Clone() : null;
-        }
-
-        public EncounterResponse Clone()
-        {
-            return new EncounterResponse(this);
-        }
-
-        /// <summary>Field number for the "wild_pokemon" field.</summary>
-        public const int WildPokemonFieldNumber = 1;
-        private global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon wildPokemon_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon WildPokemon
-        {
-            get { return wildPokemon_; }
-            set
-            {
-                wildPokemon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "background" field.</summary>
-        public const int BackgroundFieldNumber = 2;
-        private global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Background background_ = 0;
-        public global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Background Background
-        {
-            get { return background_; }
-            set
-            {
-                background_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "status" field.</summary>
-        public const int StatusFieldNumber = 3;
-        private global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Status status_ = 0;
-        public global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Status Status
-        {
-            get { return status_; }
-            set
-            {
-                status_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "capture_probability" field.</summary>
-        public const int CaptureProbabilityFieldNumber = 4;
-        private global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability captureProbability_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability CaptureProbability
-        {
-            get { return captureProbability_; }
-            set
-            {
-                captureProbability_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EncounterResponse);
-        }
-
-        public bool Equals(EncounterResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!object.Equals(WildPokemon, other.WildPokemon)) return false;
-            if (Background != other.Background) return false;
-            if (Status != other.Status) return false;
-            if (!object.Equals(CaptureProbability, other.CaptureProbability)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (wildPokemon_ != null) hash ^= WildPokemon.GetHashCode();
-            if (Background != 0) hash ^= Background.GetHashCode();
-            if (Status != 0) hash ^= Status.GetHashCode();
-            if (captureProbability_ != null) hash ^= CaptureProbability.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (wildPokemon_ != null)
-            {
-                output.WriteRawTag(10);
-                output.WriteMessage(WildPokemon);
-            }
-            if (Background != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)Background);
-            }
-            if (Status != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteEnum((int)Status);
-            }
-            if (captureProbability_ != null)
-            {
-                output.WriteRawTag(34);
-                output.WriteMessage(CaptureProbability);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (wildPokemon_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(WildPokemon);
-            }
-            if (Background != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Background);
-            }
-            if (Status != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Status);
-            }
-            if (captureProbability_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(CaptureProbability);
-            }
-            return size;
-        }
-
-        public void MergeFrom(EncounterResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.wildPokemon_ != null)
-            {
-                if (wildPokemon_ == null)
-                {
-                    wildPokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon();
-                }
-                WildPokemon.MergeFrom(other.WildPokemon);
-            }
-            if (other.Background != 0)
-            {
-                Background = other.Background;
-            }
-            if (other.Status != 0)
-            {
-                Status = other.Status;
-            }
-            if (other.captureProbability_ != null)
-            {
-                if (captureProbability_ == null)
-                {
-                    captureProbability_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability();
-                }
-                CaptureProbability.MergeFrom(other.CaptureProbability);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            if (wildPokemon_ == null)
-                            {
-                                wildPokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon();
-                            }
-                            input.ReadMessage(wildPokemon_);
-                            break;
-                        }
-                    case 16:
-                        {
-                            background_ = (global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Background)input.ReadEnum();
-                            break;
-                        }
-                    case 24:
-                        {
-                            status_ = (global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Status)input.ReadEnum();
-                            break;
-                        }
-                    case 34:
-                        {
-                            if (captureProbability_ == null)
-                            {
-                                captureProbability_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability();
-                            }
-                            input.ReadMessage(captureProbability_);
-                            break;
-                        }
-                }
-            }
-        }
-
-        #region Nested types
-        /// <summary>Container for nested types declared in the EncounterResponse message type.</summary>
-        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        public static partial class Types
-        {
-            public enum Background
-            {
-                [pbr::OriginalName("PARK")]
-                Park = 0,
-                [pbr::OriginalName("DESERT")]
-                Desert = 1,
-            }
-
-            public enum Status
-            {
-                [pbr::OriginalName("ENCOUNTER_ERROR")]
-                EncounterError = 0,
-                [pbr::OriginalName("ENCOUNTER_SUCCESS")]
-                EncounterSuccess = 1,
-                [pbr::OriginalName("ENCOUNTER_NOT_FOUND")]
-                EncounterNotFound = 2,
-                [pbr::OriginalName("ENCOUNTER_CLOSED")]
-                EncounterClosed = 3,
-                [pbr::OriginalName("ENCOUNTER_POKEMON_FLED")]
-                EncounterPokemonFled = 4,
-                [pbr::OriginalName("ENCOUNTER_NOT_IN_RANGE")]
-                EncounterNotInRange = 5,
-                [pbr::OriginalName("ENCOUNTER_ALREADY_HAPPENED")]
-                EncounterAlreadyHappened = 6,
-                [pbr::OriginalName("POKEMON_INVENTORY_FULL")]
-                PokemonInventoryFull = 7,
-            }
-
-        }
-        #endregion
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class CaptureProbability : pb::IMessage<CaptureProbability>
-    {
-        private static readonly pb::MessageParser<CaptureProbability> _parser = new pb::MessageParser<CaptureProbability>(() => new CaptureProbability());
-        public static pb::MessageParser<CaptureProbability> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[58]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public CaptureProbability()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public CaptureProbability(CaptureProbability other) : this()
-        {
-            pokeballType_ = other.pokeballType_.Clone();
-            captureProbability_ = other.captureProbability_.Clone();
-            reticleDifficultyScale_ = other.reticleDifficultyScale_;
-        }
-
-        public CaptureProbability Clone()
-        {
-            return new CaptureProbability(this);
-        }
-
-        /// <summary>Field number for the "pokeball_type" field.</summary>
-        public const int PokeballTypeFieldNumber = 1;
-        private static readonly pb::FieldCodec<global::AllEnum.ItemId> _repeated_pokeballType_codec
-            = pb::FieldCodec.ForEnum(10, x => (int)x, x => (global::AllEnum.ItemId)x);
-        private readonly pbc::RepeatedField<global::AllEnum.ItemId> pokeballType_ = new pbc::RepeatedField<global::AllEnum.ItemId>();
-        public pbc::RepeatedField<global::AllEnum.ItemId> PokeballType
-        {
-            get { return pokeballType_; }
-        }
-
-        /// <summary>Field number for the "capture_probability" field.</summary>
-        public const int CaptureProbability_FieldNumber = 2;
-        private static readonly pb::FieldCodec<float> _repeated_captureProbability_codec
-            = pb::FieldCodec.ForFloat(18);
-        private readonly pbc::RepeatedField<float> captureProbability_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> CaptureProbability_
-        {
-            get { return captureProbability_; }
-        }
-
-        /// <summary>Field number for the "reticle_difficulty_scale" field.</summary>
-        public const int ReticleDifficultyScaleFieldNumber = 12;
-        private double reticleDifficultyScale_;
-        public double ReticleDifficultyScale
-        {
-            get { return reticleDifficultyScale_; }
-            set
-            {
-                reticleDifficultyScale_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as CaptureProbability);
-        }
-
-        public bool Equals(CaptureProbability other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!pokeballType_.Equals(other.pokeballType_)) return false;
-            if (!captureProbability_.Equals(other.captureProbability_)) return false;
-            if (ReticleDifficultyScale != other.ReticleDifficultyScale) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= pokeballType_.GetHashCode();
-            hash ^= captureProbability_.GetHashCode();
-            if (ReticleDifficultyScale != 0D) hash ^= ReticleDifficultyScale.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            pokeballType_.WriteTo(output, _repeated_pokeballType_codec);
-            captureProbability_.WriteTo(output, _repeated_captureProbability_codec);
-            if (ReticleDifficultyScale != 0D)
-            {
-                output.WriteRawTag(97);
-                output.WriteDouble(ReticleDifficultyScale);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += pokeballType_.CalculateSize(_repeated_pokeballType_codec);
-            size += captureProbability_.CalculateSize(_repeated_captureProbability_codec);
-            if (ReticleDifficultyScale != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(CaptureProbability other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            pokeballType_.Add(other.pokeballType_);
-            captureProbability_.Add(other.captureProbability_);
-            if (other.ReticleDifficultyScale != 0D)
-            {
-                ReticleDifficultyScale = other.ReticleDifficultyScale;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                    case 8:
-                        {
-                            pokeballType_.AddEntriesFrom(input, _repeated_pokeballType_codec);
-                            break;
-                        }
-                    case 18:
-                    case 21:
-                        {
-                            captureProbability_.AddEntriesFrom(input, _repeated_captureProbability_codec);
-                            break;
-                        }
-                    case 97:
-                        {
-                            ReticleDifficultyScale = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class DiskEncounterRequest : pb::IMessage<DiskEncounterRequest>
-    {
-        private static readonly pb::MessageParser<DiskEncounterRequest> _parser = new pb::MessageParser<DiskEncounterRequest>(() => new DiskEncounterRequest());
-        public static pb::MessageParser<DiskEncounterRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[59]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public DiskEncounterRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public DiskEncounterRequest(DiskEncounterRequest other) : this()
-        {
-            encounterId_ = other.encounterId_;
-            fortId_ = other.fortId_;
-            playerLatitude_ = other.playerLatitude_;
-            playerLongitude_ = other.playerLongitude_;
-        }
-
-        public DiskEncounterRequest Clone()
-        {
-            return new DiskEncounterRequest(this);
-        }
-
-        /// <summary>Field number for the "encounter_id" field.</summary>
-        public const int EncounterIdFieldNumber = 1;
-        private ulong encounterId_;
-        public ulong EncounterId
-        {
-            get { return encounterId_; }
-            set
-            {
-                encounterId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "fort_id" field.</summary>
-        public const int FortIdFieldNumber = 2;
-        private string fortId_ = "";
-        public string FortId
-        {
-            get { return fortId_; }
-            set
-            {
-                fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "player_latitude" field.</summary>
-        public const int PlayerLatitudeFieldNumber = 3;
-        private double playerLatitude_;
-        public double PlayerLatitude
-        {
-            get { return playerLatitude_; }
-            set
-            {
-                playerLatitude_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "player_longitude" field.</summary>
-        public const int PlayerLongitudeFieldNumber = 4;
-        private double playerLongitude_;
-        public double PlayerLongitude
-        {
-            get { return playerLongitude_; }
-            set
-            {
-                playerLongitude_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as DiskEncounterRequest);
-        }
-
-        public bool Equals(DiskEncounterRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (EncounterId != other.EncounterId) return false;
-            if (FortId != other.FortId) return false;
-            if (PlayerLatitude != other.PlayerLatitude) return false;
-            if (PlayerLongitude != other.PlayerLongitude) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
-            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
-            if (PlayerLatitude != 0D) hash ^= PlayerLatitude.GetHashCode();
-            if (PlayerLongitude != 0D) hash ^= PlayerLongitude.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (EncounterId != 0UL)
-            {
-                output.WriteRawTag(9);
-                output.WriteFixed64(EncounterId);
-            }
-            if (FortId.Length != 0)
-            {
-                output.WriteRawTag(18);
-                output.WriteString(FortId);
-            }
-            if (PlayerLatitude != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(PlayerLatitude);
-            }
-            if (PlayerLongitude != 0D)
-            {
-                output.WriteRawTag(33);
-                output.WriteDouble(PlayerLongitude);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (EncounterId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            if (FortId.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
-            }
-            if (PlayerLatitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (PlayerLongitude != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(DiskEncounterRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.EncounterId != 0UL)
-            {
-                EncounterId = other.EncounterId;
-            }
-            if (other.FortId.Length != 0)
-            {
-                FortId = other.FortId;
-            }
-            if (other.PlayerLatitude != 0D)
-            {
-                PlayerLatitude = other.PlayerLatitude;
-            }
-            if (other.PlayerLongitude != 0D)
-            {
-                PlayerLongitude = other.PlayerLongitude;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            EncounterId = input.ReadFixed64();
-                            break;
-                        }
-                    case 18:
-                        {
-                            FortId = input.ReadString();
-                            break;
-                        }
-                    case 25:
-                        {
-                            PlayerLatitude = input.ReadDouble();
-                            break;
-                        }
-                    case 33:
-                        {
-                            PlayerLongitude = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class DiskEncounterResponse : pb::IMessage<DiskEncounterResponse>
-    {
-        private static readonly pb::MessageParser<DiskEncounterResponse> _parser = new pb::MessageParser<DiskEncounterResponse>(() => new DiskEncounterResponse());
-        public static pb::MessageParser<DiskEncounterResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[60]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public DiskEncounterResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public DiskEncounterResponse(DiskEncounterResponse other) : this()
-        {
-            result_ = other.result_;
-            PokemonData = other.pokemonData_ != null ? other.PokemonData.Clone() : null;
-            CaptureProbability = other.captureProbability_ != null ? other.CaptureProbability.Clone() : null;
-        }
-
-        public DiskEncounterResponse Clone()
-        {
-            return new DiskEncounterResponse(this);
-        }
-
-        /// <summary>Field number for the "result" field.</summary>
-        public const int ResultFieldNumber = 1;
-        private global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Types.Result result_ = 0;
-        public global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Types.Result Result
-        {
-            get { return result_; }
-            set
-            {
-                result_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_data" field.</summary>
-        public const int PokemonDataFieldNumber = 2;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemonData_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData PokemonData
-        {
-            get { return pokemonData_; }
-            set
-            {
-                pokemonData_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "capture_probability" field.</summary>
-        public const int CaptureProbabilityFieldNumber = 3;
-        private global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability captureProbability_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability CaptureProbability
-        {
-            get { return captureProbability_; }
-            set
-            {
-                captureProbability_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as DiskEncounterResponse);
-        }
-
-        public bool Equals(DiskEncounterResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Result != other.Result) return false;
-            if (!object.Equals(PokemonData, other.PokemonData)) return false;
-            if (!object.Equals(CaptureProbability, other.CaptureProbability)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Result != 0) hash ^= Result.GetHashCode();
-            if (pokemonData_ != null) hash ^= PokemonData.GetHashCode();
-            if (captureProbability_ != null) hash ^= CaptureProbability.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Result != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)Result);
-            }
-            if (pokemonData_ != null)
-            {
-                output.WriteRawTag(18);
-                output.WriteMessage(PokemonData);
-            }
-            if (captureProbability_ != null)
-            {
-                output.WriteRawTag(26);
-                output.WriteMessage(CaptureProbability);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Result != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Result);
-            }
-            if (pokemonData_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonData);
-            }
-            if (captureProbability_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(CaptureProbability);
-            }
-            return size;
-        }
-
-        public void MergeFrom(DiskEncounterResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Result != 0)
-            {
-                Result = other.Result;
-            }
-            if (other.pokemonData_ != null)
-            {
-                if (pokemonData_ == null)
-                {
-                    pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                }
-                PokemonData.MergeFrom(other.PokemonData);
-            }
-            if (other.captureProbability_ != null)
-            {
-                if (captureProbability_ == null)
-                {
-                    captureProbability_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability();
-                }
-                CaptureProbability.MergeFrom(other.CaptureProbability);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            result_ = (global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Types.Result)input.ReadEnum();
-                            break;
-                        }
-                    case 18:
-                        {
-                            if (pokemonData_ == null)
-                            {
-                                pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
-                            }
-                            input.ReadMessage(pokemonData_);
-                            break;
-                        }
-                    case 26:
-                        {
-                            if (captureProbability_ == null)
-                            {
-                                captureProbability_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability();
-                            }
-                            input.ReadMessage(captureProbability_);
-                            break;
-                        }
-                }
-            }
-        }
-
-        #region Nested types
-        /// <summary>Container for nested types declared in the DiskEncounterResponse message type.</summary>
-        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        public static partial class Types
-        {
-            public enum Result
-            {
-                [pbr::OriginalName("UNKNOWN")]
-                Unknown = 0,
-                [pbr::OriginalName("SUCCESS")]
-                Success = 1,
-                [pbr::OriginalName("NOT_AVAILABLE")]
-                NotAvailable = 2,
-                [pbr::OriginalName("NOT_IN_RANGE")]
-                NotInRange = 3,
-                [pbr::OriginalName("ENCOUNTER_ALREADY_FINISHED")]
-                EncounterAlreadyFinished = 4,
-                [pbr::OriginalName("POKEMON_INVENTORY_FULL")]
-                PokemonInventoryFull = 5,
-            }
-
-        }
-        #endregion
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class CatchPokemonRequest : pb::IMessage<CatchPokemonRequest>
-    {
-        private static readonly pb::MessageParser<CatchPokemonRequest> _parser = new pb::MessageParser<CatchPokemonRequest>(() => new CatchPokemonRequest());
-        public static pb::MessageParser<CatchPokemonRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[61]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public CatchPokemonRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public CatchPokemonRequest(CatchPokemonRequest other) : this()
-        {
-            encounterId_ = other.encounterId_;
-            pokeball_ = other.pokeball_;
-            normalizedReticleSize_ = other.normalizedReticleSize_;
-            spawnPointGuid_ = other.spawnPointGuid_;
-            hitPokemon_ = other.hitPokemon_;
-            spinModifier_ = other.spinModifier_;
-            normalizedHitPosition_ = other.normalizedHitPosition_;
-        }
-
-        public CatchPokemonRequest Clone()
-        {
-            return new CatchPokemonRequest(this);
-        }
-
-        /// <summary>Field number for the "encounter_id" field.</summary>
-        public const int EncounterIdFieldNumber = 1;
-        private ulong encounterId_;
-        public ulong EncounterId
-        {
-            get { return encounterId_; }
-            set
-            {
-                encounterId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokeball" field.</summary>
-        public const int PokeballFieldNumber = 2;
-        private int pokeball_;
-        public int Pokeball
-        {
-            get { return pokeball_; }
-            set
-            {
-                pokeball_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "normalized_reticle_size" field.</summary>
-        public const int NormalizedReticleSizeFieldNumber = 3;
-        private double normalizedReticleSize_;
-        public double NormalizedReticleSize
-        {
-            get { return normalizedReticleSize_; }
-            set
-            {
-                normalizedReticleSize_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "spawn_point_guid" field.</summary>
-        public const int SpawnPointGuidFieldNumber = 4;
-        private string spawnPointGuid_ = "";
-        public string SpawnPointGuid
-        {
-            get { return spawnPointGuid_; }
-            set
-            {
-                spawnPointGuid_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "hit_pokemon" field.</summary>
-        public const int HitPokemonFieldNumber = 5;
-        private bool hitPokemon_;
-        public bool HitPokemon
-        {
-            get { return hitPokemon_; }
-            set
-            {
-                hitPokemon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "spin_modifier" field.</summary>
-        public const int SpinModifierFieldNumber = 6;
-        private double spinModifier_;
-        public double SpinModifier
-        {
-            get { return spinModifier_; }
-            set
-            {
-                spinModifier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "NormalizedHitPosition" field.</summary>
-        public const int NormalizedHitPositionFieldNumber = 7;
-        private double normalizedHitPosition_;
-        public double NormalizedHitPosition
-        {
-            get { return normalizedHitPosition_; }
-            set
-            {
-                normalizedHitPosition_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as CatchPokemonRequest);
-        }
-
-        public bool Equals(CatchPokemonRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (EncounterId != other.EncounterId) return false;
-            if (Pokeball != other.Pokeball) return false;
-            if (NormalizedReticleSize != other.NormalizedReticleSize) return false;
-            if (SpawnPointGuid != other.SpawnPointGuid) return false;
-            if (HitPokemon != other.HitPokemon) return false;
-            if (SpinModifier != other.SpinModifier) return false;
-            if (NormalizedHitPosition != other.NormalizedHitPosition) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
-            if (Pokeball != 0) hash ^= Pokeball.GetHashCode();
-            if (NormalizedReticleSize != 0D) hash ^= NormalizedReticleSize.GetHashCode();
-            if (SpawnPointGuid.Length != 0) hash ^= SpawnPointGuid.GetHashCode();
-            if (HitPokemon != false) hash ^= HitPokemon.GetHashCode();
-            if (SpinModifier != 0D) hash ^= SpinModifier.GetHashCode();
-            if (NormalizedHitPosition != 0D) hash ^= NormalizedHitPosition.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (EncounterId != 0UL)
-            {
-                output.WriteRawTag(9);
-                output.WriteFixed64(EncounterId);
-            }
-            if (Pokeball != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(Pokeball);
-            }
-            if (NormalizedReticleSize != 0D)
-            {
-                output.WriteRawTag(25);
-                output.WriteDouble(NormalizedReticleSize);
-            }
-            if (SpawnPointGuid.Length != 0)
-            {
-                output.WriteRawTag(34);
-                output.WriteString(SpawnPointGuid);
-            }
-            if (HitPokemon != false)
-            {
-                output.WriteRawTag(40);
-                output.WriteBool(HitPokemon);
-            }
-            if (SpinModifier != 0D)
-            {
-                output.WriteRawTag(49);
-                output.WriteDouble(SpinModifier);
-            }
-            if (NormalizedHitPosition != 0D)
-            {
-                output.WriteRawTag(57);
-                output.WriteDouble(NormalizedHitPosition);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (EncounterId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            if (Pokeball != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Pokeball);
-            }
-            if (NormalizedReticleSize != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (SpawnPointGuid.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnPointGuid);
-            }
-            if (HitPokemon != false)
-            {
-                size += 1 + 1;
-            }
-            if (SpinModifier != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (NormalizedHitPosition != 0D)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(CatchPokemonRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.EncounterId != 0UL)
-            {
-                EncounterId = other.EncounterId;
-            }
-            if (other.Pokeball != 0)
-            {
-                Pokeball = other.Pokeball;
-            }
-            if (other.NormalizedReticleSize != 0D)
-            {
-                NormalizedReticleSize = other.NormalizedReticleSize;
-            }
-            if (other.SpawnPointGuid.Length != 0)
-            {
-                SpawnPointGuid = other.SpawnPointGuid;
-            }
-            if (other.HitPokemon != false)
-            {
-                HitPokemon = other.HitPokemon;
-            }
-            if (other.SpinModifier != 0D)
-            {
-                SpinModifier = other.SpinModifier;
-            }
-            if (other.NormalizedHitPosition != 0D)
-            {
-                NormalizedHitPosition = other.NormalizedHitPosition;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            EncounterId = input.ReadFixed64();
-                            break;
-                        }
-                    case 16:
-                        {
-                            Pokeball = input.ReadInt32();
-                            break;
-                        }
-                    case 25:
-                        {
-                            NormalizedReticleSize = input.ReadDouble();
-                            break;
-                        }
-                    case 34:
-                        {
-                            SpawnPointGuid = input.ReadString();
-                            break;
-                        }
-                    case 40:
-                        {
-                            HitPokemon = input.ReadBool();
-                            break;
-                        }
-                    case 49:
-                        {
-                            SpinModifier = input.ReadDouble();
-                            break;
-                        }
-                    case 57:
-                        {
-                            NormalizedHitPosition = input.ReadDouble();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class CatchPokemonResponse : pb::IMessage<CatchPokemonResponse>
-    {
-        private static readonly pb::MessageParser<CatchPokemonResponse> _parser = new pb::MessageParser<CatchPokemonResponse>(() => new CatchPokemonResponse());
-        public static pb::MessageParser<CatchPokemonResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[62]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public CatchPokemonResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public CatchPokemonResponse(CatchPokemonResponse other) : this()
-        {
-            status_ = other.status_;
-            missPercent_ = other.missPercent_;
-            capturedPokemonId_ = other.capturedPokemonId_;
-            Scores = other.scores_ != null ? other.Scores.Clone() : null;
-        }
-
-        public CatchPokemonResponse Clone()
-        {
-            return new CatchPokemonResponse(this);
-        }
-
-        /// <summary>Field number for the "status" field.</summary>
-        public const int StatusFieldNumber = 1;
-        private global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Types.CatchStatus status_ = 0;
-        public global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Types.CatchStatus Status
-        {
-            get { return status_; }
-            set
-            {
-                status_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "miss_percent" field.</summary>
-        public const int MissPercentFieldNumber = 2;
-        private double missPercent_;
-        public double MissPercent
-        {
-            get { return missPercent_; }
-            set
-            {
-                missPercent_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "captured_pokemon_id" field.</summary>
-        public const int CapturedPokemonIdFieldNumber = 3;
-        private ulong capturedPokemonId_;
-        public ulong CapturedPokemonId
-        {
-            get { return capturedPokemonId_; }
-            set
-            {
-                capturedPokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "scores" field.</summary>
-        public const int ScoresFieldNumber = 4;
-        private global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore scores_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore Scores
-        {
-            get { return scores_; }
-            set
-            {
-                scores_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as CatchPokemonResponse);
-        }
-
-        public bool Equals(CatchPokemonResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Status != other.Status) return false;
-            if (MissPercent != other.MissPercent) return false;
-            if (CapturedPokemonId != other.CapturedPokemonId) return false;
-            if (!object.Equals(Scores, other.Scores)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Status != 0) hash ^= Status.GetHashCode();
-            if (MissPercent != 0D) hash ^= MissPercent.GetHashCode();
-            if (CapturedPokemonId != 0UL) hash ^= CapturedPokemonId.GetHashCode();
-            if (scores_ != null) hash ^= Scores.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Status != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)Status);
-            }
-            if (MissPercent != 0D)
-            {
-                output.WriteRawTag(17);
-                output.WriteDouble(MissPercent);
-            }
-            if (CapturedPokemonId != 0UL)
-            {
-                output.WriteRawTag(24);
-                output.WriteUInt64(CapturedPokemonId);
-            }
-            if (scores_ != null)
-            {
-                output.WriteRawTag(34);
-                output.WriteMessage(Scores);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Status != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Status);
-            }
-            if (MissPercent != 0D)
-            {
-                size += 1 + 8;
-            }
-            if (CapturedPokemonId != 0UL)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeUInt64Size(CapturedPokemonId);
-            }
-            if (scores_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Scores);
-            }
-            return size;
-        }
-
-        public void MergeFrom(CatchPokemonResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Status != 0)
-            {
-                Status = other.Status;
-            }
-            if (other.MissPercent != 0D)
-            {
-                MissPercent = other.MissPercent;
-            }
-            if (other.CapturedPokemonId != 0UL)
-            {
-                CapturedPokemonId = other.CapturedPokemonId;
-            }
-            if (other.scores_ != null)
-            {
-                if (scores_ == null)
-                {
-                    scores_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore();
-                }
-                Scores.MergeFrom(other.Scores);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            status_ = (global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Types.CatchStatus)input.ReadEnum();
-                            break;
-                        }
-                    case 17:
-                        {
-                            MissPercent = input.ReadDouble();
-                            break;
-                        }
-                    case 24:
-                        {
-                            CapturedPokemonId = input.ReadUInt64();
-                            break;
-                        }
-                    case 34:
-                        {
-                            if (scores_ == null)
-                            {
-                                scores_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore();
-                            }
-                            input.ReadMessage(scores_);
-                            break;
-                        }
-                }
-            }
-        }
-
-        #region Nested types
-        /// <summary>Container for nested types declared in the CatchPokemonResponse message type.</summary>
-        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        public static partial class Types
-        {
-            public enum CatchStatus
-            {
-                [pbr::OriginalName("CATCH_ERROR")]
-                CatchError = 0,
-                [pbr::OriginalName("CATCH_SUCCESS")]
-                CatchSuccess = 1,
-                [pbr::OriginalName("CATCH_ESCAPE")]
-                CatchEscape = 2,
-                [pbr::OriginalName("CATCH_FLEE")]
-                CatchFlee = 3,
-                [pbr::OriginalName("CATCH_MISSED")]
-                CatchMissed = 4,
-            }
-
-        }
-        #endregion
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class CaptureScore : pb::IMessage<CaptureScore>
-    {
-        private static readonly pb::MessageParser<CaptureScore> _parser = new pb::MessageParser<CaptureScore>(() => new CaptureScore());
-        public static pb::MessageParser<CaptureScore> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[63]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public CaptureScore()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public CaptureScore(CaptureScore other) : this()
-        {
-            activityType_ = other.activityType_.Clone();
-            xp_ = other.xp_.Clone();
-            candy_ = other.candy_.Clone();
-            stardust_ = other.stardust_.Clone();
-        }
-
-        public CaptureScore Clone()
-        {
-            return new CaptureScore(this);
-        }
-
-        /// <summary>Field number for the "activity_type" field.</summary>
-        public const int ActivityTypeFieldNumber = 1;
-        private static readonly pb::FieldCodec<global::AllEnum.ActivityType> _repeated_activityType_codec
-            = pb::FieldCodec.ForEnum(10, x => (int)x, x => (global::AllEnum.ActivityType)x);
-        private readonly pbc::RepeatedField<global::AllEnum.ActivityType> activityType_ = new pbc::RepeatedField<global::AllEnum.ActivityType>();
-        public pbc::RepeatedField<global::AllEnum.ActivityType> ActivityType
-        {
-            get { return activityType_; }
-        }
-
-        /// <summary>Field number for the "xp" field.</summary>
-        public const int XpFieldNumber = 2;
-        private static readonly pb::FieldCodec<int> _repeated_xp_codec
-            = pb::FieldCodec.ForInt32(18);
-        private readonly pbc::RepeatedField<int> xp_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> Xp
-        {
-            get { return xp_; }
-        }
-
-        /// <summary>Field number for the "candy" field.</summary>
-        public const int CandyFieldNumber = 3;
-        private static readonly pb::FieldCodec<int> _repeated_candy_codec
-            = pb::FieldCodec.ForInt32(26);
-        private readonly pbc::RepeatedField<int> candy_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> Candy
-        {
-            get { return candy_; }
-        }
-
-        /// <summary>Field number for the "stardust" field.</summary>
-        public const int StardustFieldNumber = 4;
-        private static readonly pb::FieldCodec<int> _repeated_stardust_codec
-            = pb::FieldCodec.ForInt32(34);
-        private readonly pbc::RepeatedField<int> stardust_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> Stardust
-        {
-            get { return stardust_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as CaptureScore);
-        }
-
-        public bool Equals(CaptureScore other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!activityType_.Equals(other.activityType_)) return false;
-            if (!xp_.Equals(other.xp_)) return false;
-            if (!candy_.Equals(other.candy_)) return false;
-            if (!stardust_.Equals(other.stardust_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= activityType_.GetHashCode();
-            hash ^= xp_.GetHashCode();
-            hash ^= candy_.GetHashCode();
-            hash ^= stardust_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            activityType_.WriteTo(output, _repeated_activityType_codec);
-            xp_.WriteTo(output, _repeated_xp_codec);
-            candy_.WriteTo(output, _repeated_candy_codec);
-            stardust_.WriteTo(output, _repeated_stardust_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += activityType_.CalculateSize(_repeated_activityType_codec);
-            size += xp_.CalculateSize(_repeated_xp_codec);
-            size += candy_.CalculateSize(_repeated_candy_codec);
-            size += stardust_.CalculateSize(_repeated_stardust_codec);
-            return size;
-        }
-
-        public void MergeFrom(CaptureScore other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            activityType_.Add(other.activityType_);
-            xp_.Add(other.xp_);
-            candy_.Add(other.candy_);
-            stardust_.Add(other.stardust_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                    case 8:
-                        {
-                            activityType_.AddEntriesFrom(input, _repeated_activityType_codec);
-                            break;
-                        }
-                    case 18:
-                    case 16:
-                        {
-                            xp_.AddEntriesFrom(input, _repeated_xp_codec);
-                            break;
-                        }
-                    case 26:
-                    case 24:
-                        {
-                            candy_.AddEntriesFrom(input, _repeated_candy_codec);
-                            break;
-                        }
-                    case 34:
-                    case 32:
-                        {
-                            stardust_.AddEntriesFrom(input, _repeated_stardust_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    /// <summary>
-    ///  No message needed.
-    /// </summary>
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class CheckAwardedBadgesRequest : pb::IMessage<CheckAwardedBadgesRequest>
-    {
-        private static readonly pb::MessageParser<CheckAwardedBadgesRequest> _parser = new pb::MessageParser<CheckAwardedBadgesRequest>(() => new CheckAwardedBadgesRequest());
-        public static pb::MessageParser<CheckAwardedBadgesRequest> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[64]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public CheckAwardedBadgesRequest()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public CheckAwardedBadgesRequest(CheckAwardedBadgesRequest other) : this()
-        {
-        }
-
-        public CheckAwardedBadgesRequest Clone()
-        {
-            return new CheckAwardedBadgesRequest(this);
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as CheckAwardedBadgesRequest);
-        }
-
-        public bool Equals(CheckAwardedBadgesRequest other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            return size;
-        }
-
-        public void MergeFrom(CheckAwardedBadgesRequest other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                }
-            }
-        }
-
-    }
-
-    /// <summary>
-    ///  Confirm if this is correct, I think that it should be "repeated AwardedBadge awarded_badges" or something like that.
-    /// </summary>
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class CheckAwardedBadgesResponse : pb::IMessage<CheckAwardedBadgesResponse>
-    {
-        private static readonly pb::MessageParser<CheckAwardedBadgesResponse> _parser = new pb::MessageParser<CheckAwardedBadgesResponse>(() => new CheckAwardedBadgesResponse());
-        public static pb::MessageParser<CheckAwardedBadgesResponse> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[65]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public CheckAwardedBadgesResponse()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public CheckAwardedBadgesResponse(CheckAwardedBadgesResponse other) : this()
-        {
-            success_ = other.success_;
-            awardedBadges_ = other.awardedBadges_.Clone();
-            awardedBadgeLevels_ = other.awardedBadgeLevels_.Clone();
-        }
-
-        public CheckAwardedBadgesResponse Clone()
-        {
-            return new CheckAwardedBadgesResponse(this);
-        }
-
-        /// <summary>Field number for the "success" field.</summary>
-        public const int SuccessFieldNumber = 1;
-        private bool success_;
-        public bool Success
-        {
-            get { return success_; }
-            set
-            {
-                success_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "awarded_badges" field.</summary>
-        public const int AwardedBadgesFieldNumber = 2;
-        private static readonly pb::FieldCodec<global::AllEnum.BadgeType> _repeated_awardedBadges_codec
-            = pb::FieldCodec.ForEnum(18, x => (int)x, x => (global::AllEnum.BadgeType)x);
-        private readonly pbc::RepeatedField<global::AllEnum.BadgeType> awardedBadges_ = new pbc::RepeatedField<global::AllEnum.BadgeType>();
-        public pbc::RepeatedField<global::AllEnum.BadgeType> AwardedBadges
-        {
-            get { return awardedBadges_; }
-        }
-
-        /// <summary>Field number for the "awarded_badge_levels" field.</summary>
-        public const int AwardedBadgeLevelsFieldNumber = 3;
-        private static readonly pb::FieldCodec<int> _repeated_awardedBadgeLevels_codec
-            = pb::FieldCodec.ForInt32(26);
-        private readonly pbc::RepeatedField<int> awardedBadgeLevels_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> AwardedBadgeLevels
-        {
-            get { return awardedBadgeLevels_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as CheckAwardedBadgesResponse);
-        }
-
-        public bool Equals(CheckAwardedBadgesResponse other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Success != other.Success) return false;
-            if (!awardedBadges_.Equals(other.awardedBadges_)) return false;
-            if (!awardedBadgeLevels_.Equals(other.awardedBadgeLevels_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Success != false) hash ^= Success.GetHashCode();
-            hash ^= awardedBadges_.GetHashCode();
-            hash ^= awardedBadgeLevels_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Success != false)
-            {
-                output.WriteRawTag(8);
-                output.WriteBool(Success);
-            }
-            awardedBadges_.WriteTo(output, _repeated_awardedBadges_codec);
-            awardedBadgeLevels_.WriteTo(output, _repeated_awardedBadgeLevels_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Success != false)
-            {
-                size += 1 + 1;
-            }
-            size += awardedBadges_.CalculateSize(_repeated_awardedBadges_codec);
-            size += awardedBadgeLevels_.CalculateSize(_repeated_awardedBadgeLevels_codec);
-            return size;
-        }
-
-        public void MergeFrom(CheckAwardedBadgesResponse other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Success != false)
-            {
-                Success = other.Success;
-            }
-            awardedBadges_.Add(other.awardedBadges_);
-            awardedBadgeLevels_.Add(other.awardedBadgeLevels_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Success = input.ReadBool();
-                            break;
-                        }
-                    case 18:
-                    case 16:
-                        {
-                            awardedBadges_.AddEntriesFrom(input, _repeated_awardedBadges_codec);
-                            break;
-                        }
-                    case 26:
-                    case 24:
-                        {
-                            awardedBadgeLevels_.AddEntriesFrom(input, _repeated_awardedBadgeLevels_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EquippedBadgeSettings : pb::IMessage<EquippedBadgeSettings>
-    {
-        private static readonly pb::MessageParser<EquippedBadgeSettings> _parser = new pb::MessageParser<EquippedBadgeSettings>(() => new EquippedBadgeSettings());
-        public static pb::MessageParser<EquippedBadgeSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[66]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EquippedBadgeSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EquippedBadgeSettings(EquippedBadgeSettings other) : this()
-        {
-            equipBadgeCooldownMs_ = other.equipBadgeCooldownMs_;
-            catchProbabilityBonus_ = other.catchProbabilityBonus_.Clone();
-            fleeProbabilityBonus_ = other.fleeProbabilityBonus_.Clone();
-        }
-
-        public EquippedBadgeSettings Clone()
-        {
-            return new EquippedBadgeSettings(this);
-        }
-
-        /// <summary>Field number for the "equip_badge_cooldown_ms" field.</summary>
-        public const int EquipBadgeCooldownMsFieldNumber = 1;
-        private long equipBadgeCooldownMs_;
-        public long EquipBadgeCooldownMs
-        {
-            get { return equipBadgeCooldownMs_; }
-            set
-            {
-                equipBadgeCooldownMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "catch_probability_bonus" field.</summary>
-        public const int CatchProbabilityBonusFieldNumber = 2;
-        private static readonly pb::FieldCodec<float> _repeated_catchProbabilityBonus_codec
-            = pb::FieldCodec.ForFloat(18);
-        private readonly pbc::RepeatedField<float> catchProbabilityBonus_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> CatchProbabilityBonus
-        {
-            get { return catchProbabilityBonus_; }
-        }
-
-        /// <summary>Field number for the "flee_probability_bonus" field.</summary>
-        public const int FleeProbabilityBonusFieldNumber = 3;
-        private static readonly pb::FieldCodec<float> _repeated_fleeProbabilityBonus_codec
-            = pb::FieldCodec.ForFloat(26);
-        private readonly pbc::RepeatedField<float> fleeProbabilityBonus_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> FleeProbabilityBonus
-        {
-            get { return fleeProbabilityBonus_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EquippedBadgeSettings);
-        }
-
-        public bool Equals(EquippedBadgeSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (EquipBadgeCooldownMs != other.EquipBadgeCooldownMs) return false;
-            if (!catchProbabilityBonus_.Equals(other.catchProbabilityBonus_)) return false;
-            if (!fleeProbabilityBonus_.Equals(other.fleeProbabilityBonus_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (EquipBadgeCooldownMs != 0L) hash ^= EquipBadgeCooldownMs.GetHashCode();
-            hash ^= catchProbabilityBonus_.GetHashCode();
-            hash ^= fleeProbabilityBonus_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (EquipBadgeCooldownMs != 0L)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt64(EquipBadgeCooldownMs);
-            }
-            catchProbabilityBonus_.WriteTo(output, _repeated_catchProbabilityBonus_codec);
-            fleeProbabilityBonus_.WriteTo(output, _repeated_fleeProbabilityBonus_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (EquipBadgeCooldownMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(EquipBadgeCooldownMs);
-            }
-            size += catchProbabilityBonus_.CalculateSize(_repeated_catchProbabilityBonus_codec);
-            size += fleeProbabilityBonus_.CalculateSize(_repeated_fleeProbabilityBonus_codec);
-            return size;
-        }
-
-        public void MergeFrom(EquippedBadgeSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.EquipBadgeCooldownMs != 0L)
-            {
-                EquipBadgeCooldownMs = other.EquipBadgeCooldownMs;
-            }
-            catchProbabilityBonus_.Add(other.catchProbabilityBonus_);
-            fleeProbabilityBonus_.Add(other.fleeProbabilityBonus_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            EquipBadgeCooldownMs = input.ReadInt64();
-                            break;
-                        }
-                    case 18:
-                    case 21:
-                        {
-                            catchProbabilityBonus_.AddEntriesFrom(input, _repeated_catchProbabilityBonus_codec);
-                            break;
-                        }
-                    case 26:
-                    case 29:
-                        {
-                            fleeProbabilityBonus_.AddEntriesFrom(input, _repeated_fleeProbabilityBonus_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PokemonUpgradeSettings : pb::IMessage<PokemonUpgradeSettings>
-    {
-        private static readonly pb::MessageParser<PokemonUpgradeSettings> _parser = new pb::MessageParser<PokemonUpgradeSettings>(() => new PokemonUpgradeSettings());
-        public static pb::MessageParser<PokemonUpgradeSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[67]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PokemonUpgradeSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PokemonUpgradeSettings(PokemonUpgradeSettings other) : this()
-        {
-            upgradesPerLevel_ = other.upgradesPerLevel_;
-            allowedLevelsAbovePlayer_ = other.allowedLevelsAbovePlayer_;
-            candyCost_ = other.candyCost_.Clone();
-            stardustCost_ = other.stardustCost_.Clone();
-        }
-
-        public PokemonUpgradeSettings Clone()
-        {
-            return new PokemonUpgradeSettings(this);
-        }
-
-        /// <summary>Field number for the "upgrades_per_level" field.</summary>
-        public const int UpgradesPerLevelFieldNumber = 1;
-        private int upgradesPerLevel_;
-        public int UpgradesPerLevel
-        {
-            get { return upgradesPerLevel_; }
-            set
-            {
-                upgradesPerLevel_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "allowed_levels_above_player" field.</summary>
-        public const int AllowedLevelsAbovePlayerFieldNumber = 2;
-        private int allowedLevelsAbovePlayer_;
-        public int AllowedLevelsAbovePlayer
-        {
-            get { return allowedLevelsAbovePlayer_; }
-            set
-            {
-                allowedLevelsAbovePlayer_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "candy_cost" field.</summary>
-        public const int CandyCostFieldNumber = 3;
-        private static readonly pb::FieldCodec<int> _repeated_candyCost_codec
-            = pb::FieldCodec.ForInt32(26);
-        private readonly pbc::RepeatedField<int> candyCost_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> CandyCost
-        {
-            get { return candyCost_; }
-        }
-
-        /// <summary>Field number for the "stardust_cost" field.</summary>
-        public const int StardustCostFieldNumber = 4;
-        private static readonly pb::FieldCodec<int> _repeated_stardustCost_codec
-            = pb::FieldCodec.ForInt32(34);
-        private readonly pbc::RepeatedField<int> stardustCost_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> StardustCost
-        {
-            get { return stardustCost_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PokemonUpgradeSettings);
-        }
-
-        public bool Equals(PokemonUpgradeSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (UpgradesPerLevel != other.UpgradesPerLevel) return false;
-            if (AllowedLevelsAbovePlayer != other.AllowedLevelsAbovePlayer) return false;
-            if (!candyCost_.Equals(other.candyCost_)) return false;
-            if (!stardustCost_.Equals(other.stardustCost_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (UpgradesPerLevel != 0) hash ^= UpgradesPerLevel.GetHashCode();
-            if (AllowedLevelsAbovePlayer != 0) hash ^= AllowedLevelsAbovePlayer.GetHashCode();
-            hash ^= candyCost_.GetHashCode();
-            hash ^= stardustCost_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (UpgradesPerLevel != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(UpgradesPerLevel);
-            }
-            if (AllowedLevelsAbovePlayer != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(AllowedLevelsAbovePlayer);
-            }
-            candyCost_.WriteTo(output, _repeated_candyCost_codec);
-            stardustCost_.WriteTo(output, _repeated_stardustCost_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (UpgradesPerLevel != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(UpgradesPerLevel);
-            }
-            if (AllowedLevelsAbovePlayer != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(AllowedLevelsAbovePlayer);
-            }
-            size += candyCost_.CalculateSize(_repeated_candyCost_codec);
-            size += stardustCost_.CalculateSize(_repeated_stardustCost_codec);
-            return size;
-        }
-
-        public void MergeFrom(PokemonUpgradeSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.UpgradesPerLevel != 0)
-            {
-                UpgradesPerLevel = other.UpgradesPerLevel;
-            }
-            if (other.AllowedLevelsAbovePlayer != 0)
-            {
-                AllowedLevelsAbovePlayer = other.AllowedLevelsAbovePlayer;
-            }
-            candyCost_.Add(other.candyCost_);
-            stardustCost_.Add(other.stardustCost_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            UpgradesPerLevel = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            AllowedLevelsAbovePlayer = input.ReadInt32();
-                            break;
-                        }
-                    case 26:
-                    case 24:
-                        {
-                            candyCost_.AddEntriesFrom(input, _repeated_candyCost_codec);
-                            break;
-                        }
-                    case 34:
-                    case 32:
-                        {
-                            stardustCost_.AddEntriesFrom(input, _repeated_stardustCost_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class IapSettings : pb::IMessage<IapSettings>
-    {
-        private static readonly pb::MessageParser<IapSettings> _parser = new pb::MessageParser<IapSettings>(() => new IapSettings());
-        public static pb::MessageParser<IapSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[68]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public IapSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public IapSettings(IapSettings other) : this()
-        {
-            dailyBonusCoins_ = other.dailyBonusCoins_;
-            dailyDefenderBonusPerPokemon_ = other.dailyDefenderBonusPerPokemon_.Clone();
-            dailyDefenderBonusMaxDefenders_ = other.dailyDefenderBonusMaxDefenders_;
-            dailyDefenderBonusCurrency_ = other.dailyDefenderBonusCurrency_.Clone();
-            minTimeBetweenClaimsMs_ = other.minTimeBetweenClaimsMs_;
-            dailyBonusEnabled_ = other.dailyBonusEnabled_;
-            dailyDefenderBonusEnabled_ = other.dailyDefenderBonusEnabled_;
-        }
-
-        public IapSettings Clone()
-        {
-            return new IapSettings(this);
-        }
-
-        /// <summary>Field number for the "daily_bonus_coins" field.</summary>
-        public const int DailyBonusCoinsFieldNumber = 1;
-        private int dailyBonusCoins_;
-        public int DailyBonusCoins
-        {
-            get { return dailyBonusCoins_; }
-            set
-            {
-                dailyBonusCoins_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "daily_defender_bonus_per_pokemon" field.</summary>
-        public const int DailyDefenderBonusPerPokemonFieldNumber = 2;
-        private static readonly pb::FieldCodec<int> _repeated_dailyDefenderBonusPerPokemon_codec
-            = pb::FieldCodec.ForInt32(18);
-        private readonly pbc::RepeatedField<int> dailyDefenderBonusPerPokemon_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> DailyDefenderBonusPerPokemon
-        {
-            get { return dailyDefenderBonusPerPokemon_; }
-        }
-
-        /// <summary>Field number for the "daily_defender_bonus_max_defenders" field.</summary>
-        public const int DailyDefenderBonusMaxDefendersFieldNumber = 3;
-        private int dailyDefenderBonusMaxDefenders_;
-        public int DailyDefenderBonusMaxDefenders
-        {
-            get { return dailyDefenderBonusMaxDefenders_; }
-            set
-            {
-                dailyDefenderBonusMaxDefenders_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "daily_defender_bonus_currency" field.</summary>
-        public const int DailyDefenderBonusCurrencyFieldNumber = 4;
-        private static readonly pb::FieldCodec<string> _repeated_dailyDefenderBonusCurrency_codec
-            = pb::FieldCodec.ForString(34);
-        private readonly pbc::RepeatedField<string> dailyDefenderBonusCurrency_ = new pbc::RepeatedField<string>();
-        public pbc::RepeatedField<string> DailyDefenderBonusCurrency
-        {
-            get { return dailyDefenderBonusCurrency_; }
-        }
-
-        /// <summary>Field number for the "min_time_between_claims_ms" field.</summary>
-        public const int MinTimeBetweenClaimsMsFieldNumber = 5;
-        private long minTimeBetweenClaimsMs_;
-        public long MinTimeBetweenClaimsMs
-        {
-            get { return minTimeBetweenClaimsMs_; }
-            set
-            {
-                minTimeBetweenClaimsMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "daily_bonus_enabled" field.</summary>
-        public const int DailyBonusEnabledFieldNumber = 6;
-        private bool dailyBonusEnabled_;
-        public bool DailyBonusEnabled
-        {
-            get { return dailyBonusEnabled_; }
-            set
-            {
-                dailyBonusEnabled_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "daily_defender_bonus_enabled" field.</summary>
-        public const int DailyDefenderBonusEnabledFieldNumber = 7;
-        private bool dailyDefenderBonusEnabled_;
-        public bool DailyDefenderBonusEnabled
-        {
-            get { return dailyDefenderBonusEnabled_; }
-            set
-            {
-                dailyDefenderBonusEnabled_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as IapSettings);
-        }
-
-        public bool Equals(IapSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (DailyBonusCoins != other.DailyBonusCoins) return false;
-            if (!dailyDefenderBonusPerPokemon_.Equals(other.dailyDefenderBonusPerPokemon_)) return false;
-            if (DailyDefenderBonusMaxDefenders != other.DailyDefenderBonusMaxDefenders) return false;
-            if (!dailyDefenderBonusCurrency_.Equals(other.dailyDefenderBonusCurrency_)) return false;
-            if (MinTimeBetweenClaimsMs != other.MinTimeBetweenClaimsMs) return false;
-            if (DailyBonusEnabled != other.DailyBonusEnabled) return false;
-            if (DailyDefenderBonusEnabled != other.DailyDefenderBonusEnabled) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (DailyBonusCoins != 0) hash ^= DailyBonusCoins.GetHashCode();
-            hash ^= dailyDefenderBonusPerPokemon_.GetHashCode();
-            if (DailyDefenderBonusMaxDefenders != 0) hash ^= DailyDefenderBonusMaxDefenders.GetHashCode();
-            hash ^= dailyDefenderBonusCurrency_.GetHashCode();
-            if (MinTimeBetweenClaimsMs != 0L) hash ^= MinTimeBetweenClaimsMs.GetHashCode();
-            if (DailyBonusEnabled != false) hash ^= DailyBonusEnabled.GetHashCode();
-            if (DailyDefenderBonusEnabled != false) hash ^= DailyDefenderBonusEnabled.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (DailyBonusCoins != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(DailyBonusCoins);
-            }
-            dailyDefenderBonusPerPokemon_.WriteTo(output, _repeated_dailyDefenderBonusPerPokemon_codec);
-            if (DailyDefenderBonusMaxDefenders != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(DailyDefenderBonusMaxDefenders);
-            }
-            dailyDefenderBonusCurrency_.WriteTo(output, _repeated_dailyDefenderBonusCurrency_codec);
-            if (MinTimeBetweenClaimsMs != 0L)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt64(MinTimeBetweenClaimsMs);
-            }
-            if (DailyBonusEnabled != false)
-            {
-                output.WriteRawTag(48);
-                output.WriteBool(DailyBonusEnabled);
-            }
-            if (DailyDefenderBonusEnabled != false)
-            {
-                output.WriteRawTag(56);
-                output.WriteBool(DailyDefenderBonusEnabled);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (DailyBonusCoins != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DailyBonusCoins);
-            }
-            size += dailyDefenderBonusPerPokemon_.CalculateSize(_repeated_dailyDefenderBonusPerPokemon_codec);
-            if (DailyDefenderBonusMaxDefenders != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DailyDefenderBonusMaxDefenders);
-            }
-            size += dailyDefenderBonusCurrency_.CalculateSize(_repeated_dailyDefenderBonusCurrency_codec);
-            if (MinTimeBetweenClaimsMs != 0L)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt64Size(MinTimeBetweenClaimsMs);
-            }
-            if (DailyBonusEnabled != false)
-            {
-                size += 1 + 1;
-            }
-            if (DailyDefenderBonusEnabled != false)
-            {
-                size += 1 + 1;
-            }
-            return size;
-        }
-
-        public void MergeFrom(IapSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.DailyBonusCoins != 0)
-            {
-                DailyBonusCoins = other.DailyBonusCoins;
-            }
-            dailyDefenderBonusPerPokemon_.Add(other.dailyDefenderBonusPerPokemon_);
-            if (other.DailyDefenderBonusMaxDefenders != 0)
-            {
-                DailyDefenderBonusMaxDefenders = other.DailyDefenderBonusMaxDefenders;
-            }
-            dailyDefenderBonusCurrency_.Add(other.dailyDefenderBonusCurrency_);
-            if (other.MinTimeBetweenClaimsMs != 0L)
-            {
-                MinTimeBetweenClaimsMs = other.MinTimeBetweenClaimsMs;
-            }
-            if (other.DailyBonusEnabled != false)
-            {
-                DailyBonusEnabled = other.DailyBonusEnabled;
-            }
-            if (other.DailyDefenderBonusEnabled != false)
-            {
-                DailyDefenderBonusEnabled = other.DailyDefenderBonusEnabled;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            DailyBonusCoins = input.ReadInt32();
-                            break;
-                        }
-                    case 18:
-                    case 16:
-                        {
-                            dailyDefenderBonusPerPokemon_.AddEntriesFrom(input, _repeated_dailyDefenderBonusPerPokemon_codec);
-                            break;
-                        }
-                    case 24:
-                        {
-                            DailyDefenderBonusMaxDefenders = input.ReadInt32();
-                            break;
-                        }
-                    case 34:
-                        {
-                            dailyDefenderBonusCurrency_.AddEntriesFrom(input, _repeated_dailyDefenderBonusCurrency_codec);
-                            break;
-                        }
-                    case 40:
-                        {
-                            MinTimeBetweenClaimsMs = input.ReadInt64();
-                            break;
-                        }
-                    case 48:
-                        {
-                            DailyBonusEnabled = input.ReadBool();
-                            break;
-                        }
-                    case 56:
-                        {
-                            DailyDefenderBonusEnabled = input.ReadBool();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class IapItemDisplay : pb::IMessage<IapItemDisplay>
-    {
-        private static readonly pb::MessageParser<IapItemDisplay> _parser = new pb::MessageParser<IapItemDisplay>(() => new IapItemDisplay());
-        public static pb::MessageParser<IapItemDisplay> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[69]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public IapItemDisplay()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public IapItemDisplay(IapItemDisplay other) : this()
-        {
-            sku_ = other.sku_;
-            category_ = other.category_;
-            sortOrder_ = other.sortOrder_;
-            itemIds_ = other.itemIds_.Clone();
-            counts_ = other.counts_.Clone();
-        }
-
-        public IapItemDisplay Clone()
-        {
-            return new IapItemDisplay(this);
-        }
-
-        /// <summary>Field number for the "sku" field.</summary>
-        public const int SkuFieldNumber = 1;
-        private string sku_ = "";
-        public string Sku
-        {
-            get { return sku_; }
-            set
-            {
-                sku_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "category" field.</summary>
-        public const int CategoryFieldNumber = 2;
-        private global::AllEnum.HoloIapItemCategory category_ = 0;
-        public global::AllEnum.HoloIapItemCategory Category
-        {
-            get { return category_; }
-            set
-            {
-                category_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "sort_order" field.</summary>
-        public const int SortOrderFieldNumber = 3;
-        private int sortOrder_;
-        public int SortOrder
-        {
-            get { return sortOrder_; }
-            set
-            {
-                sortOrder_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item_ids" field.</summary>
-        public const int ItemIdsFieldNumber = 4;
-        private static readonly pb::FieldCodec<global::AllEnum.ItemId> _repeated_itemIds_codec
-            = pb::FieldCodec.ForEnum(34, x => (int)x, x => (global::AllEnum.ItemId)x);
-        private readonly pbc::RepeatedField<global::AllEnum.ItemId> itemIds_ = new pbc::RepeatedField<global::AllEnum.ItemId>();
-        public pbc::RepeatedField<global::AllEnum.ItemId> ItemIds
-        {
-            get { return itemIds_; }
-        }
-
-        /// <summary>Field number for the "counts" field.</summary>
-        public const int CountsFieldNumber = 5;
-        private static readonly pb::FieldCodec<int> _repeated_counts_codec
-            = pb::FieldCodec.ForInt32(42);
-        private readonly pbc::RepeatedField<int> counts_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> Counts
-        {
-            get { return counts_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as IapItemDisplay);
-        }
-
-        public bool Equals(IapItemDisplay other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Sku != other.Sku) return false;
-            if (Category != other.Category) return false;
-            if (SortOrder != other.SortOrder) return false;
-            if (!itemIds_.Equals(other.itemIds_)) return false;
-            if (!counts_.Equals(other.counts_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Sku.Length != 0) hash ^= Sku.GetHashCode();
-            if (Category != 0) hash ^= Category.GetHashCode();
-            if (SortOrder != 0) hash ^= SortOrder.GetHashCode();
-            hash ^= itemIds_.GetHashCode();
-            hash ^= counts_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Sku.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(Sku);
-            }
-            if (Category != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)Category);
-            }
-            if (SortOrder != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(SortOrder);
-            }
-            itemIds_.WriteTo(output, _repeated_itemIds_codec);
-            counts_.WriteTo(output, _repeated_counts_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Sku.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(Sku);
-            }
-            if (Category != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Category);
-            }
-            if (SortOrder != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(SortOrder);
-            }
-            size += itemIds_.CalculateSize(_repeated_itemIds_codec);
-            size += counts_.CalculateSize(_repeated_counts_codec);
-            return size;
-        }
-
-        public void MergeFrom(IapItemDisplay other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Sku.Length != 0)
-            {
-                Sku = other.Sku;
-            }
-            if (other.Category != 0)
-            {
-                Category = other.Category;
-            }
-            if (other.SortOrder != 0)
-            {
-                SortOrder = other.SortOrder;
-            }
-            itemIds_.Add(other.itemIds_);
-            counts_.Add(other.counts_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            Sku = input.ReadString();
-                            break;
-                        }
-                    case 16:
-                        {
-                            category_ = (global::AllEnum.HoloIapItemCategory)input.ReadEnum();
-                            break;
-                        }
-                    case 24:
-                        {
-                            SortOrder = input.ReadInt32();
-                            break;
-                        }
-                    case 34:
-                    case 32:
-                        {
-                            itemIds_.AddEntriesFrom(input, _repeated_itemIds_codec);
-                            break;
-                        }
-                    case 42:
-                    case 40:
-                        {
-                            counts_.AddEntriesFrom(input, _repeated_counts_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EncounterSettings : pb::IMessage<EncounterSettings>
-    {
-        private static readonly pb::MessageParser<EncounterSettings> _parser = new pb::MessageParser<EncounterSettings>(() => new EncounterSettings());
-        public static pb::MessageParser<EncounterSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[70]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EncounterSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EncounterSettings(EncounterSettings other) : this()
-        {
-            spinBonusThreshold_ = other.spinBonusThreshold_;
-            excellentThrowThreshold_ = other.excellentThrowThreshold_;
-            greatThrowThreshold_ = other.greatThrowThreshold_;
-            niceThrowThreshold_ = other.niceThrowThreshold_;
-            milestoneThreshold_ = other.milestoneThreshold_;
-        }
-
-        public EncounterSettings Clone()
-        {
-            return new EncounterSettings(this);
-        }
-
-        /// <summary>Field number for the "spin_bonus_threshold" field.</summary>
-        public const int SpinBonusThresholdFieldNumber = 1;
-        private float spinBonusThreshold_;
-        public float SpinBonusThreshold
-        {
-            get { return spinBonusThreshold_; }
-            set
-            {
-                spinBonusThreshold_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "excellent_throw_threshold" field.</summary>
-        public const int ExcellentThrowThresholdFieldNumber = 2;
-        private float excellentThrowThreshold_;
-        public float ExcellentThrowThreshold
-        {
-            get { return excellentThrowThreshold_; }
-            set
-            {
-                excellentThrowThreshold_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "great_throw_threshold" field.</summary>
-        public const int GreatThrowThresholdFieldNumber = 3;
-        private float greatThrowThreshold_;
-        public float GreatThrowThreshold
-        {
-            get { return greatThrowThreshold_; }
-            set
-            {
-                greatThrowThreshold_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "nice_throw_threshold" field.</summary>
-        public const int NiceThrowThresholdFieldNumber = 4;
-        private float niceThrowThreshold_;
-        public float NiceThrowThreshold
-        {
-            get { return niceThrowThreshold_; }
-            set
-            {
-                niceThrowThreshold_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "milestone_threshold" field.</summary>
-        public const int MilestoneThresholdFieldNumber = 5;
-        private int milestoneThreshold_;
-        public int MilestoneThreshold
-        {
-            get { return milestoneThreshold_; }
-            set
-            {
-                milestoneThreshold_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EncounterSettings);
-        }
-
-        public bool Equals(EncounterSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (SpinBonusThreshold != other.SpinBonusThreshold) return false;
-            if (ExcellentThrowThreshold != other.ExcellentThrowThreshold) return false;
-            if (GreatThrowThreshold != other.GreatThrowThreshold) return false;
-            if (NiceThrowThreshold != other.NiceThrowThreshold) return false;
-            if (MilestoneThreshold != other.MilestoneThreshold) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (SpinBonusThreshold != 0F) hash ^= SpinBonusThreshold.GetHashCode();
-            if (ExcellentThrowThreshold != 0F) hash ^= ExcellentThrowThreshold.GetHashCode();
-            if (GreatThrowThreshold != 0F) hash ^= GreatThrowThreshold.GetHashCode();
-            if (NiceThrowThreshold != 0F) hash ^= NiceThrowThreshold.GetHashCode();
-            if (MilestoneThreshold != 0) hash ^= MilestoneThreshold.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (SpinBonusThreshold != 0F)
-            {
-                output.WriteRawTag(13);
-                output.WriteFloat(SpinBonusThreshold);
-            }
-            if (ExcellentThrowThreshold != 0F)
-            {
-                output.WriteRawTag(21);
-                output.WriteFloat(ExcellentThrowThreshold);
-            }
-            if (GreatThrowThreshold != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(GreatThrowThreshold);
-            }
-            if (NiceThrowThreshold != 0F)
-            {
-                output.WriteRawTag(37);
-                output.WriteFloat(NiceThrowThreshold);
-            }
-            if (MilestoneThreshold != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(MilestoneThreshold);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (SpinBonusThreshold != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (ExcellentThrowThreshold != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (GreatThrowThreshold != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (NiceThrowThreshold != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (MilestoneThreshold != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MilestoneThreshold);
-            }
-            return size;
-        }
-
-        public void MergeFrom(EncounterSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.SpinBonusThreshold != 0F)
-            {
-                SpinBonusThreshold = other.SpinBonusThreshold;
-            }
-            if (other.ExcellentThrowThreshold != 0F)
-            {
-                ExcellentThrowThreshold = other.ExcellentThrowThreshold;
-            }
-            if (other.GreatThrowThreshold != 0F)
-            {
-                GreatThrowThreshold = other.GreatThrowThreshold;
-            }
-            if (other.NiceThrowThreshold != 0F)
-            {
-                NiceThrowThreshold = other.NiceThrowThreshold;
-            }
-            if (other.MilestoneThreshold != 0)
-            {
-                MilestoneThreshold = other.MilestoneThreshold;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 13:
-                        {
-                            SpinBonusThreshold = input.ReadFloat();
-                            break;
-                        }
-                    case 21:
-                        {
-                            ExcellentThrowThreshold = input.ReadFloat();
-                            break;
-                        }
-                    case 29:
-                        {
-                            GreatThrowThreshold = input.ReadFloat();
-                            break;
-                        }
-                    case 37:
-                        {
-                            NiceThrowThreshold = input.ReadFloat();
-                            break;
-                        }
-                    case 40:
-                        {
-                            MilestoneThreshold = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GymBattleSettings : pb::IMessage<GymBattleSettings>
-    {
-        private static readonly pb::MessageParser<GymBattleSettings> _parser = new pb::MessageParser<GymBattleSettings>(() => new GymBattleSettings());
-        public static pb::MessageParser<GymBattleSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[71]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GymBattleSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GymBattleSettings(GymBattleSettings other) : this()
-        {
-            energyPerSec_ = other.energyPerSec_;
-            dodgeEnergyCost_ = other.dodgeEnergyCost_;
-            retargetSeconds_ = other.retargetSeconds_;
-            enemyAttackInterval_ = other.enemyAttackInterval_;
-            attackServerInterval_ = other.attackServerInterval_;
-            roundDurationSeconds_ = other.roundDurationSeconds_;
-            bonusTimePerAllySeconds_ = other.bonusTimePerAllySeconds_;
-            maximumAttackersPerBattle_ = other.maximumAttackersPerBattle_;
-            sameTypeAttackBonusMultiplier_ = other.sameTypeAttackBonusMultiplier_;
-            maximumEnergy_ = other.maximumEnergy_;
-            energyDeltaPerHealthLost_ = other.energyDeltaPerHealthLost_;
-            dodgeDurationMs_ = other.dodgeDurationMs_;
-            minimumPlayerLevel_ = other.minimumPlayerLevel_;
-            swapDurationMs_ = other.swapDurationMs_;
-        }
-
-        public GymBattleSettings Clone()
-        {
-            return new GymBattleSettings(this);
-        }
-
-        /// <summary>Field number for the "energy_per_sec" field.</summary>
-        public const int EnergyPerSecFieldNumber = 1;
-        private float energyPerSec_;
-        public float EnergyPerSec
-        {
-            get { return energyPerSec_; }
-            set
-            {
-                energyPerSec_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "dodge_energy_cost" field.</summary>
-        public const int DodgeEnergyCostFieldNumber = 2;
-        private float dodgeEnergyCost_;
-        public float DodgeEnergyCost
-        {
-            get { return dodgeEnergyCost_; }
-            set
-            {
-                dodgeEnergyCost_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "retarget_seconds" field.</summary>
-        public const int RetargetSecondsFieldNumber = 3;
-        private float retargetSeconds_;
-        public float RetargetSeconds
-        {
-            get { return retargetSeconds_; }
-            set
-            {
-                retargetSeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "enemy_attack_interval" field.</summary>
-        public const int EnemyAttackIntervalFieldNumber = 4;
-        private float enemyAttackInterval_;
-        public float EnemyAttackInterval
-        {
-            get { return enemyAttackInterval_; }
-            set
-            {
-                enemyAttackInterval_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "attack_server_interval" field.</summary>
-        public const int AttackServerIntervalFieldNumber = 5;
-        private float attackServerInterval_;
-        public float AttackServerInterval
-        {
-            get { return attackServerInterval_; }
-            set
-            {
-                attackServerInterval_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "round_duration_seconds" field.</summary>
-        public const int RoundDurationSecondsFieldNumber = 6;
-        private float roundDurationSeconds_;
-        public float RoundDurationSeconds
-        {
-            get { return roundDurationSeconds_; }
-            set
-            {
-                roundDurationSeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "bonus_time_per_ally_seconds" field.</summary>
-        public const int BonusTimePerAllySecondsFieldNumber = 7;
-        private float bonusTimePerAllySeconds_;
-        public float BonusTimePerAllySeconds
-        {
-            get { return bonusTimePerAllySeconds_; }
-            set
-            {
-                bonusTimePerAllySeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "maximum_attackers_per_battle" field.</summary>
-        public const int MaximumAttackersPerBattleFieldNumber = 8;
-        private int maximumAttackersPerBattle_;
-        public int MaximumAttackersPerBattle
-        {
-            get { return maximumAttackersPerBattle_; }
-            set
-            {
-                maximumAttackersPerBattle_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "same_type_attack_bonus_multiplier" field.</summary>
-        public const int SameTypeAttackBonusMultiplierFieldNumber = 9;
-        private float sameTypeAttackBonusMultiplier_;
-        public float SameTypeAttackBonusMultiplier
-        {
-            get { return sameTypeAttackBonusMultiplier_; }
-            set
-            {
-                sameTypeAttackBonusMultiplier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "maximum_energy" field.</summary>
-        public const int MaximumEnergyFieldNumber = 10;
-        private int maximumEnergy_;
-        public int MaximumEnergy
-        {
-            get { return maximumEnergy_; }
-            set
-            {
-                maximumEnergy_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "energy_delta_per_health_lost" field.</summary>
-        public const int EnergyDeltaPerHealthLostFieldNumber = 11;
-        private float energyDeltaPerHealthLost_;
-        public float EnergyDeltaPerHealthLost
-        {
-            get { return energyDeltaPerHealthLost_; }
-            set
-            {
-                energyDeltaPerHealthLost_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "dodge_duration_ms" field.</summary>
-        public const int DodgeDurationMsFieldNumber = 12;
-        private int dodgeDurationMs_;
-        public int DodgeDurationMs
-        {
-            get { return dodgeDurationMs_; }
-            set
-            {
-                dodgeDurationMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "minimum_player_level" field.</summary>
-        public const int MinimumPlayerLevelFieldNumber = 13;
-        private int minimumPlayerLevel_;
-        public int MinimumPlayerLevel
-        {
-            get { return minimumPlayerLevel_; }
-            set
-            {
-                minimumPlayerLevel_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "swap_duration_ms" field.</summary>
-        public const int SwapDurationMsFieldNumber = 14;
-        private int swapDurationMs_;
-        public int SwapDurationMs
-        {
-            get { return swapDurationMs_; }
-            set
-            {
-                swapDurationMs_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GymBattleSettings);
-        }
-
-        public bool Equals(GymBattleSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (EnergyPerSec != other.EnergyPerSec) return false;
-            if (DodgeEnergyCost != other.DodgeEnergyCost) return false;
-            if (RetargetSeconds != other.RetargetSeconds) return false;
-            if (EnemyAttackInterval != other.EnemyAttackInterval) return false;
-            if (AttackServerInterval != other.AttackServerInterval) return false;
-            if (RoundDurationSeconds != other.RoundDurationSeconds) return false;
-            if (BonusTimePerAllySeconds != other.BonusTimePerAllySeconds) return false;
-            if (MaximumAttackersPerBattle != other.MaximumAttackersPerBattle) return false;
-            if (SameTypeAttackBonusMultiplier != other.SameTypeAttackBonusMultiplier) return false;
-            if (MaximumEnergy != other.MaximumEnergy) return false;
-            if (EnergyDeltaPerHealthLost != other.EnergyDeltaPerHealthLost) return false;
-            if (DodgeDurationMs != other.DodgeDurationMs) return false;
-            if (MinimumPlayerLevel != other.MinimumPlayerLevel) return false;
-            if (SwapDurationMs != other.SwapDurationMs) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (EnergyPerSec != 0F) hash ^= EnergyPerSec.GetHashCode();
-            if (DodgeEnergyCost != 0F) hash ^= DodgeEnergyCost.GetHashCode();
-            if (RetargetSeconds != 0F) hash ^= RetargetSeconds.GetHashCode();
-            if (EnemyAttackInterval != 0F) hash ^= EnemyAttackInterval.GetHashCode();
-            if (AttackServerInterval != 0F) hash ^= AttackServerInterval.GetHashCode();
-            if (RoundDurationSeconds != 0F) hash ^= RoundDurationSeconds.GetHashCode();
-            if (BonusTimePerAllySeconds != 0F) hash ^= BonusTimePerAllySeconds.GetHashCode();
-            if (MaximumAttackersPerBattle != 0) hash ^= MaximumAttackersPerBattle.GetHashCode();
-            if (SameTypeAttackBonusMultiplier != 0F) hash ^= SameTypeAttackBonusMultiplier.GetHashCode();
-            if (MaximumEnergy != 0) hash ^= MaximumEnergy.GetHashCode();
-            if (EnergyDeltaPerHealthLost != 0F) hash ^= EnergyDeltaPerHealthLost.GetHashCode();
-            if (DodgeDurationMs != 0) hash ^= DodgeDurationMs.GetHashCode();
-            if (MinimumPlayerLevel != 0) hash ^= MinimumPlayerLevel.GetHashCode();
-            if (SwapDurationMs != 0) hash ^= SwapDurationMs.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (EnergyPerSec != 0F)
-            {
-                output.WriteRawTag(13);
-                output.WriteFloat(EnergyPerSec);
-            }
-            if (DodgeEnergyCost != 0F)
-            {
-                output.WriteRawTag(21);
-                output.WriteFloat(DodgeEnergyCost);
-            }
-            if (RetargetSeconds != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(RetargetSeconds);
-            }
-            if (EnemyAttackInterval != 0F)
-            {
-                output.WriteRawTag(37);
-                output.WriteFloat(EnemyAttackInterval);
-            }
-            if (AttackServerInterval != 0F)
-            {
-                output.WriteRawTag(45);
-                output.WriteFloat(AttackServerInterval);
-            }
-            if (RoundDurationSeconds != 0F)
-            {
-                output.WriteRawTag(53);
-                output.WriteFloat(RoundDurationSeconds);
-            }
-            if (BonusTimePerAllySeconds != 0F)
-            {
-                output.WriteRawTag(61);
-                output.WriteFloat(BonusTimePerAllySeconds);
-            }
-            if (MaximumAttackersPerBattle != 0)
-            {
-                output.WriteRawTag(64);
-                output.WriteInt32(MaximumAttackersPerBattle);
-            }
-            if (SameTypeAttackBonusMultiplier != 0F)
-            {
-                output.WriteRawTag(77);
-                output.WriteFloat(SameTypeAttackBonusMultiplier);
-            }
-            if (MaximumEnergy != 0)
-            {
-                output.WriteRawTag(80);
-                output.WriteInt32(MaximumEnergy);
-            }
-            if (EnergyDeltaPerHealthLost != 0F)
-            {
-                output.WriteRawTag(93);
-                output.WriteFloat(EnergyDeltaPerHealthLost);
-            }
-            if (DodgeDurationMs != 0)
-            {
-                output.WriteRawTag(96);
-                output.WriteInt32(DodgeDurationMs);
-            }
-            if (MinimumPlayerLevel != 0)
-            {
-                output.WriteRawTag(104);
-                output.WriteInt32(MinimumPlayerLevel);
-            }
-            if (SwapDurationMs != 0)
-            {
-                output.WriteRawTag(112);
-                output.WriteInt32(SwapDurationMs);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (EnergyPerSec != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (DodgeEnergyCost != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (RetargetSeconds != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (EnemyAttackInterval != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (AttackServerInterval != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (RoundDurationSeconds != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (BonusTimePerAllySeconds != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (MaximumAttackersPerBattle != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaximumAttackersPerBattle);
-            }
-            if (SameTypeAttackBonusMultiplier != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (MaximumEnergy != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaximumEnergy);
-            }
-            if (EnergyDeltaPerHealthLost != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (DodgeDurationMs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DodgeDurationMs);
-            }
-            if (MinimumPlayerLevel != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MinimumPlayerLevel);
-            }
-            if (SwapDurationMs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(SwapDurationMs);
-            }
-            return size;
-        }
-
-        public void MergeFrom(GymBattleSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.EnergyPerSec != 0F)
-            {
-                EnergyPerSec = other.EnergyPerSec;
-            }
-            if (other.DodgeEnergyCost != 0F)
-            {
-                DodgeEnergyCost = other.DodgeEnergyCost;
-            }
-            if (other.RetargetSeconds != 0F)
-            {
-                RetargetSeconds = other.RetargetSeconds;
-            }
-            if (other.EnemyAttackInterval != 0F)
-            {
-                EnemyAttackInterval = other.EnemyAttackInterval;
-            }
-            if (other.AttackServerInterval != 0F)
-            {
-                AttackServerInterval = other.AttackServerInterval;
-            }
-            if (other.RoundDurationSeconds != 0F)
-            {
-                RoundDurationSeconds = other.RoundDurationSeconds;
-            }
-            if (other.BonusTimePerAllySeconds != 0F)
-            {
-                BonusTimePerAllySeconds = other.BonusTimePerAllySeconds;
-            }
-            if (other.MaximumAttackersPerBattle != 0)
-            {
-                MaximumAttackersPerBattle = other.MaximumAttackersPerBattle;
-            }
-            if (other.SameTypeAttackBonusMultiplier != 0F)
-            {
-                SameTypeAttackBonusMultiplier = other.SameTypeAttackBonusMultiplier;
-            }
-            if (other.MaximumEnergy != 0)
-            {
-                MaximumEnergy = other.MaximumEnergy;
-            }
-            if (other.EnergyDeltaPerHealthLost != 0F)
-            {
-                EnergyDeltaPerHealthLost = other.EnergyDeltaPerHealthLost;
-            }
-            if (other.DodgeDurationMs != 0)
-            {
-                DodgeDurationMs = other.DodgeDurationMs;
-            }
-            if (other.MinimumPlayerLevel != 0)
-            {
-                MinimumPlayerLevel = other.MinimumPlayerLevel;
-            }
-            if (other.SwapDurationMs != 0)
-            {
-                SwapDurationMs = other.SwapDurationMs;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 13:
-                        {
-                            EnergyPerSec = input.ReadFloat();
-                            break;
-                        }
-                    case 21:
-                        {
-                            DodgeEnergyCost = input.ReadFloat();
-                            break;
-                        }
-                    case 29:
-                        {
-                            RetargetSeconds = input.ReadFloat();
-                            break;
-                        }
-                    case 37:
-                        {
-                            EnemyAttackInterval = input.ReadFloat();
-                            break;
-                        }
-                    case 45:
-                        {
-                            AttackServerInterval = input.ReadFloat();
-                            break;
-                        }
-                    case 53:
-                        {
-                            RoundDurationSeconds = input.ReadFloat();
-                            break;
-                        }
-                    case 61:
-                        {
-                            BonusTimePerAllySeconds = input.ReadFloat();
-                            break;
-                        }
-                    case 64:
-                        {
-                            MaximumAttackersPerBattle = input.ReadInt32();
-                            break;
-                        }
-                    case 77:
-                        {
-                            SameTypeAttackBonusMultiplier = input.ReadFloat();
-                            break;
-                        }
-                    case 80:
-                        {
-                            MaximumEnergy = input.ReadInt32();
-                            break;
-                        }
-                    case 93:
-                        {
-                            EnergyDeltaPerHealthLost = input.ReadFloat();
-                            break;
-                        }
-                    case 96:
-                        {
-                            DodgeDurationMs = input.ReadInt32();
-                            break;
-                        }
-                    case 104:
-                        {
-                            MinimumPlayerLevel = input.ReadInt32();
-                            break;
-                        }
-                    case 112:
-                        {
-                            SwapDurationMs = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class GymLevelSettings : pb::IMessage<GymLevelSettings>
-    {
-        private static readonly pb::MessageParser<GymLevelSettings> _parser = new pb::MessageParser<GymLevelSettings>(() => new GymLevelSettings());
-        public static pb::MessageParser<GymLevelSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[72]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public GymLevelSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public GymLevelSettings(GymLevelSettings other) : this()
-        {
-            requiredExperience_ = other.requiredExperience_.Clone();
-            leaderSlots_ = other.leaderSlots_.Clone();
-            trainerSlots_ = other.trainerSlots_.Clone();
-            searchRollBonus_ = other.searchRollBonus_.Clone();
-        }
-
-        public GymLevelSettings Clone()
-        {
-            return new GymLevelSettings(this);
-        }
-
-        /// <summary>Field number for the "required_experience" field.</summary>
-        public const int RequiredExperienceFieldNumber = 1;
-        private static readonly pb::FieldCodec<int> _repeated_requiredExperience_codec
-            = pb::FieldCodec.ForInt32(10);
-        private readonly pbc::RepeatedField<int> requiredExperience_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> RequiredExperience
-        {
-            get { return requiredExperience_; }
-        }
-
-        /// <summary>Field number for the "leader_slots" field.</summary>
-        public const int LeaderSlotsFieldNumber = 2;
-        private static readonly pb::FieldCodec<int> _repeated_leaderSlots_codec
-            = pb::FieldCodec.ForInt32(18);
-        private readonly pbc::RepeatedField<int> leaderSlots_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> LeaderSlots
-        {
-            get { return leaderSlots_; }
-        }
-
-        /// <summary>Field number for the "trainer_slots" field.</summary>
-        public const int TrainerSlotsFieldNumber = 3;
-        private static readonly pb::FieldCodec<int> _repeated_trainerSlots_codec
-            = pb::FieldCodec.ForInt32(26);
-        private readonly pbc::RepeatedField<int> trainerSlots_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> TrainerSlots
-        {
-            get { return trainerSlots_; }
-        }
-
-        /// <summary>Field number for the "search_roll_bonus" field.</summary>
-        public const int SearchRollBonusFieldNumber = 4;
-        private static readonly pb::FieldCodec<int> _repeated_searchRollBonus_codec
-            = pb::FieldCodec.ForInt32(34);
-        private readonly pbc::RepeatedField<int> searchRollBonus_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> SearchRollBonus
-        {
-            get { return searchRollBonus_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as GymLevelSettings);
-        }
-
-        public bool Equals(GymLevelSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!requiredExperience_.Equals(other.requiredExperience_)) return false;
-            if (!leaderSlots_.Equals(other.leaderSlots_)) return false;
-            if (!trainerSlots_.Equals(other.trainerSlots_)) return false;
-            if (!searchRollBonus_.Equals(other.searchRollBonus_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= requiredExperience_.GetHashCode();
-            hash ^= leaderSlots_.GetHashCode();
-            hash ^= trainerSlots_.GetHashCode();
-            hash ^= searchRollBonus_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            requiredExperience_.WriteTo(output, _repeated_requiredExperience_codec);
-            leaderSlots_.WriteTo(output, _repeated_leaderSlots_codec);
-            trainerSlots_.WriteTo(output, _repeated_trainerSlots_codec);
-            searchRollBonus_.WriteTo(output, _repeated_searchRollBonus_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += requiredExperience_.CalculateSize(_repeated_requiredExperience_codec);
-            size += leaderSlots_.CalculateSize(_repeated_leaderSlots_codec);
-            size += trainerSlots_.CalculateSize(_repeated_trainerSlots_codec);
-            size += searchRollBonus_.CalculateSize(_repeated_searchRollBonus_codec);
-            return size;
-        }
-
-        public void MergeFrom(GymLevelSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            requiredExperience_.Add(other.requiredExperience_);
-            leaderSlots_.Add(other.leaderSlots_);
-            trainerSlots_.Add(other.trainerSlots_);
-            searchRollBonus_.Add(other.searchRollBonus_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                    case 8:
-                        {
-                            requiredExperience_.AddEntriesFrom(input, _repeated_requiredExperience_codec);
-                            break;
-                        }
-                    case 18:
-                    case 16:
-                        {
-                            leaderSlots_.AddEntriesFrom(input, _repeated_leaderSlots_codec);
-                            break;
-                        }
-                    case 26:
-                    case 24:
-                        {
-                            trainerSlots_.AddEntriesFrom(input, _repeated_trainerSlots_codec);
-                            break;
-                        }
-                    case 34:
-                    case 32:
-                        {
-                            searchRollBonus_.AddEntriesFrom(input, _repeated_searchRollBonus_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PlayerLevelSettings : pb::IMessage<PlayerLevelSettings>
-    {
-        private static readonly pb::MessageParser<PlayerLevelSettings> _parser = new pb::MessageParser<PlayerLevelSettings>(() => new PlayerLevelSettings());
-        public static pb::MessageParser<PlayerLevelSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[73]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PlayerLevelSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PlayerLevelSettings(PlayerLevelSettings other) : this()
-        {
-            rankNum_ = other.rankNum_.Clone();
-            requiredExperience_ = other.requiredExperience_.Clone();
-            cpMultiplier_ = other.cpMultiplier_.Clone();
-            maxEggPlayerLevel_ = other.maxEggPlayerLevel_;
-            maxEncounterPlayerLevel_ = other.maxEncounterPlayerLevel_;
-        }
-
-        public PlayerLevelSettings Clone()
-        {
-            return new PlayerLevelSettings(this);
-        }
-
-        /// <summary>Field number for the "rank_num" field.</summary>
-        public const int RankNumFieldNumber = 1;
-        private static readonly pb::FieldCodec<int> _repeated_rankNum_codec
-            = pb::FieldCodec.ForInt32(10);
-        private readonly pbc::RepeatedField<int> rankNum_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> RankNum
-        {
-            get { return rankNum_; }
-        }
-
-        /// <summary>Field number for the "required_experience" field.</summary>
-        public const int RequiredExperienceFieldNumber = 2;
-        private static readonly pb::FieldCodec<int> _repeated_requiredExperience_codec
-            = pb::FieldCodec.ForInt32(18);
-        private readonly pbc::RepeatedField<int> requiredExperience_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> RequiredExperience
-        {
-            get { return requiredExperience_; }
-        }
-
-        /// <summary>Field number for the "cp_multiplier" field.</summary>
-        public const int CpMultiplierFieldNumber = 3;
-        private static readonly pb::FieldCodec<float> _repeated_cpMultiplier_codec
-            = pb::FieldCodec.ForFloat(26);
-        private readonly pbc::RepeatedField<float> cpMultiplier_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> CpMultiplier
-        {
-            get { return cpMultiplier_; }
-        }
-
-        /// <summary>Field number for the "max_egg_player_level" field.</summary>
-        public const int MaxEggPlayerLevelFieldNumber = 4;
-        private int maxEggPlayerLevel_;
-        public int MaxEggPlayerLevel
-        {
-            get { return maxEggPlayerLevel_; }
-            set
-            {
-                maxEggPlayerLevel_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "max_encounter_player_level" field.</summary>
-        public const int MaxEncounterPlayerLevelFieldNumber = 5;
-        private int maxEncounterPlayerLevel_;
-        public int MaxEncounterPlayerLevel
-        {
-            get { return maxEncounterPlayerLevel_; }
-            set
-            {
-                maxEncounterPlayerLevel_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PlayerLevelSettings);
-        }
-
-        public bool Equals(PlayerLevelSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!rankNum_.Equals(other.rankNum_)) return false;
-            if (!requiredExperience_.Equals(other.requiredExperience_)) return false;
-            if (!cpMultiplier_.Equals(other.cpMultiplier_)) return false;
-            if (MaxEggPlayerLevel != other.MaxEggPlayerLevel) return false;
-            if (MaxEncounterPlayerLevel != other.MaxEncounterPlayerLevel) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= rankNum_.GetHashCode();
-            hash ^= requiredExperience_.GetHashCode();
-            hash ^= cpMultiplier_.GetHashCode();
-            if (MaxEggPlayerLevel != 0) hash ^= MaxEggPlayerLevel.GetHashCode();
-            if (MaxEncounterPlayerLevel != 0) hash ^= MaxEncounterPlayerLevel.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            rankNum_.WriteTo(output, _repeated_rankNum_codec);
-            requiredExperience_.WriteTo(output, _repeated_requiredExperience_codec);
-            cpMultiplier_.WriteTo(output, _repeated_cpMultiplier_codec);
-            if (MaxEggPlayerLevel != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(MaxEggPlayerLevel);
-            }
-            if (MaxEncounterPlayerLevel != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(MaxEncounterPlayerLevel);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += rankNum_.CalculateSize(_repeated_rankNum_codec);
-            size += requiredExperience_.CalculateSize(_repeated_requiredExperience_codec);
-            size += cpMultiplier_.CalculateSize(_repeated_cpMultiplier_codec);
-            if (MaxEggPlayerLevel != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxEggPlayerLevel);
-            }
-            if (MaxEncounterPlayerLevel != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxEncounterPlayerLevel);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PlayerLevelSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            rankNum_.Add(other.rankNum_);
-            requiredExperience_.Add(other.requiredExperience_);
-            cpMultiplier_.Add(other.cpMultiplier_);
-            if (other.MaxEggPlayerLevel != 0)
-            {
-                MaxEggPlayerLevel = other.MaxEggPlayerLevel;
-            }
-            if (other.MaxEncounterPlayerLevel != 0)
-            {
-                MaxEncounterPlayerLevel = other.MaxEncounterPlayerLevel;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                    case 8:
-                        {
-                            rankNum_.AddEntriesFrom(input, _repeated_rankNum_codec);
-                            break;
-                        }
-                    case 18:
-                    case 16:
-                        {
-                            requiredExperience_.AddEntriesFrom(input, _repeated_requiredExperience_codec);
-                            break;
-                        }
-                    case 26:
-                    case 29:
-                        {
-                            cpMultiplier_.AddEntriesFrom(input, _repeated_cpMultiplier_codec);
-                            break;
-                        }
-                    case 32:
-                        {
-                            MaxEggPlayerLevel = input.ReadInt32();
-                            break;
-                        }
-                    case 40:
-                        {
-                            MaxEncounterPlayerLevel = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class CameraSettings : pb::IMessage<CameraSettings>
-    {
-        private static readonly pb::MessageParser<CameraSettings> _parser = new pb::MessageParser<CameraSettings>(() => new CameraSettings());
-        public static pb::MessageParser<CameraSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[74]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public CameraSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public CameraSettings(CameraSettings other) : this()
-        {
-            nextCamera_ = other.nextCamera_;
-            interpolation_ = other.interpolation_.Clone();
-            targetType_ = other.targetType_.Clone();
-            easeInSpeed_ = other.easeInSpeed_.Clone();
-            eastOutSpeed_ = other.eastOutSpeed_.Clone();
-            durationSeconds_ = other.durationSeconds_.Clone();
-            waitSeconds_ = other.waitSeconds_.Clone();
-            transitionSeconds_ = other.transitionSeconds_.Clone();
-            angleDegree_ = other.angleDegree_.Clone();
-            angleOffsetDegree_ = other.angleOffsetDegree_.Clone();
-            pitchDegree_ = other.pitchDegree_.Clone();
-            pitchOffsetDegree_ = other.pitchOffsetDegree_.Clone();
-            rollDegree_ = other.rollDegree_.Clone();
-            distanceMeters_ = other.distanceMeters_.Clone();
-            heightPercent_ = other.heightPercent_.Clone();
-            vertCtrRatio_ = other.vertCtrRatio_.Clone();
-        }
-
-        public CameraSettings Clone()
-        {
-            return new CameraSettings(this);
-        }
-
-        /// <summary>Field number for the "next_camera" field.</summary>
-        public const int NextCameraFieldNumber = 1;
-        private string nextCamera_ = "";
-        public string NextCamera
-        {
-            get { return nextCamera_; }
-            set
-            {
-                nextCamera_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "interpolation" field.</summary>
-        public const int InterpolationFieldNumber = 2;
-        private static readonly pb::FieldCodec<global::AllEnum.CameraInterpolation> _repeated_interpolation_codec
-            = pb::FieldCodec.ForEnum(18, x => (int)x, x => (global::AllEnum.CameraInterpolation)x);
-        private readonly pbc::RepeatedField<global::AllEnum.CameraInterpolation> interpolation_ = new pbc::RepeatedField<global::AllEnum.CameraInterpolation>();
-        public pbc::RepeatedField<global::AllEnum.CameraInterpolation> Interpolation
-        {
-            get { return interpolation_; }
-        }
-
-        /// <summary>Field number for the "target_type" field.</summary>
-        public const int TargetTypeFieldNumber = 3;
-        private static readonly pb::FieldCodec<global::AllEnum.CameraTarget> _repeated_targetType_codec
-            = pb::FieldCodec.ForEnum(26, x => (int)x, x => (global::AllEnum.CameraTarget)x);
-        private readonly pbc::RepeatedField<global::AllEnum.CameraTarget> targetType_ = new pbc::RepeatedField<global::AllEnum.CameraTarget>();
-        public pbc::RepeatedField<global::AllEnum.CameraTarget> TargetType
-        {
-            get { return targetType_; }
-        }
-
-        /// <summary>Field number for the "ease_in_speed" field.</summary>
-        public const int EaseInSpeedFieldNumber = 4;
-        private static readonly pb::FieldCodec<float> _repeated_easeInSpeed_codec
-            = pb::FieldCodec.ForFloat(34);
-        private readonly pbc::RepeatedField<float> easeInSpeed_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> EaseInSpeed
-        {
-            get { return easeInSpeed_; }
-        }
-
-        /// <summary>Field number for the "east_out_speed" field.</summary>
-        public const int EastOutSpeedFieldNumber = 5;
-        private static readonly pb::FieldCodec<float> _repeated_eastOutSpeed_codec
-            = pb::FieldCodec.ForFloat(42);
-        private readonly pbc::RepeatedField<float> eastOutSpeed_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> EastOutSpeed
-        {
-            get { return eastOutSpeed_; }
-        }
-
-        /// <summary>Field number for the "duration_seconds" field.</summary>
-        public const int DurationSecondsFieldNumber = 6;
-        private static readonly pb::FieldCodec<float> _repeated_durationSeconds_codec
-            = pb::FieldCodec.ForFloat(50);
-        private readonly pbc::RepeatedField<float> durationSeconds_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> DurationSeconds
-        {
-            get { return durationSeconds_; }
-        }
-
-        /// <summary>Field number for the "wait_seconds" field.</summary>
-        public const int WaitSecondsFieldNumber = 7;
-        private static readonly pb::FieldCodec<float> _repeated_waitSeconds_codec
-            = pb::FieldCodec.ForFloat(58);
-        private readonly pbc::RepeatedField<float> waitSeconds_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> WaitSeconds
-        {
-            get { return waitSeconds_; }
-        }
-
-        /// <summary>Field number for the "transition_seconds" field.</summary>
-        public const int TransitionSecondsFieldNumber = 8;
-        private static readonly pb::FieldCodec<float> _repeated_transitionSeconds_codec
-            = pb::FieldCodec.ForFloat(66);
-        private readonly pbc::RepeatedField<float> transitionSeconds_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> TransitionSeconds
-        {
-            get { return transitionSeconds_; }
-        }
-
-        /// <summary>Field number for the "angle_degree" field.</summary>
-        public const int AngleDegreeFieldNumber = 9;
-        private static readonly pb::FieldCodec<float> _repeated_angleDegree_codec
-            = pb::FieldCodec.ForFloat(74);
-        private readonly pbc::RepeatedField<float> angleDegree_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> AngleDegree
-        {
-            get { return angleDegree_; }
-        }
-
-        /// <summary>Field number for the "angle_offset_degree" field.</summary>
-        public const int AngleOffsetDegreeFieldNumber = 10;
-        private static readonly pb::FieldCodec<float> _repeated_angleOffsetDegree_codec
-            = pb::FieldCodec.ForFloat(82);
-        private readonly pbc::RepeatedField<float> angleOffsetDegree_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> AngleOffsetDegree
-        {
-            get { return angleOffsetDegree_; }
-        }
-
-        /// <summary>Field number for the "pitch_degree" field.</summary>
-        public const int PitchDegreeFieldNumber = 11;
-        private static readonly pb::FieldCodec<float> _repeated_pitchDegree_codec
-            = pb::FieldCodec.ForFloat(90);
-        private readonly pbc::RepeatedField<float> pitchDegree_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> PitchDegree
-        {
-            get { return pitchDegree_; }
-        }
-
-        /// <summary>Field number for the "pitch_offset_degree" field.</summary>
-        public const int PitchOffsetDegreeFieldNumber = 12;
-        private static readonly pb::FieldCodec<float> _repeated_pitchOffsetDegree_codec
-            = pb::FieldCodec.ForFloat(98);
-        private readonly pbc::RepeatedField<float> pitchOffsetDegree_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> PitchOffsetDegree
-        {
-            get { return pitchOffsetDegree_; }
-        }
-
-        /// <summary>Field number for the "roll_degree" field.</summary>
-        public const int RollDegreeFieldNumber = 13;
-        private static readonly pb::FieldCodec<float> _repeated_rollDegree_codec
-            = pb::FieldCodec.ForFloat(106);
-        private readonly pbc::RepeatedField<float> rollDegree_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> RollDegree
-        {
-            get { return rollDegree_; }
-        }
-
-        /// <summary>Field number for the "distance_meters" field.</summary>
-        public const int DistanceMetersFieldNumber = 14;
-        private static readonly pb::FieldCodec<float> _repeated_distanceMeters_codec
-            = pb::FieldCodec.ForFloat(114);
-        private readonly pbc::RepeatedField<float> distanceMeters_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> DistanceMeters
-        {
-            get { return distanceMeters_; }
-        }
-
-        /// <summary>Field number for the "height_percent" field.</summary>
-        public const int HeightPercentFieldNumber = 15;
-        private static readonly pb::FieldCodec<float> _repeated_heightPercent_codec
-            = pb::FieldCodec.ForFloat(122);
-        private readonly pbc::RepeatedField<float> heightPercent_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> HeightPercent
-        {
-            get { return heightPercent_; }
-        }
-
-        /// <summary>Field number for the "vert_ctr_ratio" field.</summary>
-        public const int VertCtrRatioFieldNumber = 16;
-        private static readonly pb::FieldCodec<float> _repeated_vertCtrRatio_codec
-            = pb::FieldCodec.ForFloat(130);
-        private readonly pbc::RepeatedField<float> vertCtrRatio_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> VertCtrRatio
-        {
-            get { return vertCtrRatio_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as CameraSettings);
-        }
-
-        public bool Equals(CameraSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (NextCamera != other.NextCamera) return false;
-            if (!interpolation_.Equals(other.interpolation_)) return false;
-            if (!targetType_.Equals(other.targetType_)) return false;
-            if (!easeInSpeed_.Equals(other.easeInSpeed_)) return false;
-            if (!eastOutSpeed_.Equals(other.eastOutSpeed_)) return false;
-            if (!durationSeconds_.Equals(other.durationSeconds_)) return false;
-            if (!waitSeconds_.Equals(other.waitSeconds_)) return false;
-            if (!transitionSeconds_.Equals(other.transitionSeconds_)) return false;
-            if (!angleDegree_.Equals(other.angleDegree_)) return false;
-            if (!angleOffsetDegree_.Equals(other.angleOffsetDegree_)) return false;
-            if (!pitchDegree_.Equals(other.pitchDegree_)) return false;
-            if (!pitchOffsetDegree_.Equals(other.pitchOffsetDegree_)) return false;
-            if (!rollDegree_.Equals(other.rollDegree_)) return false;
-            if (!distanceMeters_.Equals(other.distanceMeters_)) return false;
-            if (!heightPercent_.Equals(other.heightPercent_)) return false;
-            if (!vertCtrRatio_.Equals(other.vertCtrRatio_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (NextCamera.Length != 0) hash ^= NextCamera.GetHashCode();
-            hash ^= interpolation_.GetHashCode();
-            hash ^= targetType_.GetHashCode();
-            hash ^= easeInSpeed_.GetHashCode();
-            hash ^= eastOutSpeed_.GetHashCode();
-            hash ^= durationSeconds_.GetHashCode();
-            hash ^= waitSeconds_.GetHashCode();
-            hash ^= transitionSeconds_.GetHashCode();
-            hash ^= angleDegree_.GetHashCode();
-            hash ^= angleOffsetDegree_.GetHashCode();
-            hash ^= pitchDegree_.GetHashCode();
-            hash ^= pitchOffsetDegree_.GetHashCode();
-            hash ^= rollDegree_.GetHashCode();
-            hash ^= distanceMeters_.GetHashCode();
-            hash ^= heightPercent_.GetHashCode();
-            hash ^= vertCtrRatio_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (NextCamera.Length != 0)
-            {
-                output.WriteRawTag(10);
-                output.WriteString(NextCamera);
-            }
-            interpolation_.WriteTo(output, _repeated_interpolation_codec);
-            targetType_.WriteTo(output, _repeated_targetType_codec);
-            easeInSpeed_.WriteTo(output, _repeated_easeInSpeed_codec);
-            eastOutSpeed_.WriteTo(output, _repeated_eastOutSpeed_codec);
-            durationSeconds_.WriteTo(output, _repeated_durationSeconds_codec);
-            waitSeconds_.WriteTo(output, _repeated_waitSeconds_codec);
-            transitionSeconds_.WriteTo(output, _repeated_transitionSeconds_codec);
-            angleDegree_.WriteTo(output, _repeated_angleDegree_codec);
-            angleOffsetDegree_.WriteTo(output, _repeated_angleOffsetDegree_codec);
-            pitchDegree_.WriteTo(output, _repeated_pitchDegree_codec);
-            pitchOffsetDegree_.WriteTo(output, _repeated_pitchOffsetDegree_codec);
-            rollDegree_.WriteTo(output, _repeated_rollDegree_codec);
-            distanceMeters_.WriteTo(output, _repeated_distanceMeters_codec);
-            heightPercent_.WriteTo(output, _repeated_heightPercent_codec);
-            vertCtrRatio_.WriteTo(output, _repeated_vertCtrRatio_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (NextCamera.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(NextCamera);
-            }
-            size += interpolation_.CalculateSize(_repeated_interpolation_codec);
-            size += targetType_.CalculateSize(_repeated_targetType_codec);
-            size += easeInSpeed_.CalculateSize(_repeated_easeInSpeed_codec);
-            size += eastOutSpeed_.CalculateSize(_repeated_eastOutSpeed_codec);
-            size += durationSeconds_.CalculateSize(_repeated_durationSeconds_codec);
-            size += waitSeconds_.CalculateSize(_repeated_waitSeconds_codec);
-            size += transitionSeconds_.CalculateSize(_repeated_transitionSeconds_codec);
-            size += angleDegree_.CalculateSize(_repeated_angleDegree_codec);
-            size += angleOffsetDegree_.CalculateSize(_repeated_angleOffsetDegree_codec);
-            size += pitchDegree_.CalculateSize(_repeated_pitchDegree_codec);
-            size += pitchOffsetDegree_.CalculateSize(_repeated_pitchOffsetDegree_codec);
-            size += rollDegree_.CalculateSize(_repeated_rollDegree_codec);
-            size += distanceMeters_.CalculateSize(_repeated_distanceMeters_codec);
-            size += heightPercent_.CalculateSize(_repeated_heightPercent_codec);
-            size += vertCtrRatio_.CalculateSize(_repeated_vertCtrRatio_codec);
-            return size;
-        }
-
-        public void MergeFrom(CameraSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.NextCamera.Length != 0)
-            {
-                NextCamera = other.NextCamera;
-            }
-            interpolation_.Add(other.interpolation_);
-            targetType_.Add(other.targetType_);
-            easeInSpeed_.Add(other.easeInSpeed_);
-            eastOutSpeed_.Add(other.eastOutSpeed_);
-            durationSeconds_.Add(other.durationSeconds_);
-            waitSeconds_.Add(other.waitSeconds_);
-            transitionSeconds_.Add(other.transitionSeconds_);
-            angleDegree_.Add(other.angleDegree_);
-            angleOffsetDegree_.Add(other.angleOffsetDegree_);
-            pitchDegree_.Add(other.pitchDegree_);
-            pitchOffsetDegree_.Add(other.pitchOffsetDegree_);
-            rollDegree_.Add(other.rollDegree_);
-            distanceMeters_.Add(other.distanceMeters_);
-            heightPercent_.Add(other.heightPercent_);
-            vertCtrRatio_.Add(other.vertCtrRatio_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            NextCamera = input.ReadString();
-                            break;
-                        }
-                    case 18:
-                    case 16:
-                        {
-                            interpolation_.AddEntriesFrom(input, _repeated_interpolation_codec);
-                            break;
-                        }
-                    case 26:
-                    case 24:
-                        {
-                            targetType_.AddEntriesFrom(input, _repeated_targetType_codec);
-                            break;
-                        }
-                    case 34:
-                    case 37:
-                        {
-                            easeInSpeed_.AddEntriesFrom(input, _repeated_easeInSpeed_codec);
-                            break;
-                        }
-                    case 42:
-                    case 45:
-                        {
-                            eastOutSpeed_.AddEntriesFrom(input, _repeated_eastOutSpeed_codec);
-                            break;
-                        }
-                    case 50:
-                    case 53:
-                        {
-                            durationSeconds_.AddEntriesFrom(input, _repeated_durationSeconds_codec);
-                            break;
-                        }
-                    case 58:
-                    case 61:
-                        {
-                            waitSeconds_.AddEntriesFrom(input, _repeated_waitSeconds_codec);
-                            break;
-                        }
-                    case 66:
-                    case 69:
-                        {
-                            transitionSeconds_.AddEntriesFrom(input, _repeated_transitionSeconds_codec);
-                            break;
-                        }
-                    case 74:
-                    case 77:
-                        {
-                            angleDegree_.AddEntriesFrom(input, _repeated_angleDegree_codec);
-                            break;
-                        }
-                    case 82:
-                    case 85:
-                        {
-                            angleOffsetDegree_.AddEntriesFrom(input, _repeated_angleOffsetDegree_codec);
-                            break;
-                        }
-                    case 90:
-                    case 93:
-                        {
-                            pitchDegree_.AddEntriesFrom(input, _repeated_pitchDegree_codec);
-                            break;
-                        }
-                    case 98:
-                    case 101:
-                        {
-                            pitchOffsetDegree_.AddEntriesFrom(input, _repeated_pitchOffsetDegree_codec);
-                            break;
-                        }
-                    case 106:
-                    case 109:
-                        {
-                            rollDegree_.AddEntriesFrom(input, _repeated_rollDegree_codec);
-                            break;
-                        }
-                    case 114:
-                    case 117:
-                        {
-                            distanceMeters_.AddEntriesFrom(input, _repeated_distanceMeters_codec);
-                            break;
-                        }
-                    case 122:
-                    case 125:
-                        {
-                            heightPercent_.AddEntriesFrom(input, _repeated_heightPercent_codec);
-                            break;
-                        }
-                    case 130:
-                    case 133:
-                        {
-                            vertCtrRatio_.AddEntriesFrom(input, _repeated_vertCtrRatio_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class BadgeSettings : pb::IMessage<BadgeSettings>
-    {
-        private static readonly pb::MessageParser<BadgeSettings> _parser = new pb::MessageParser<BadgeSettings>(() => new BadgeSettings());
-        public static pb::MessageParser<BadgeSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[75]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public BadgeSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public BadgeSettings(BadgeSettings other) : this()
-        {
-            badgeType_ = other.badgeType_;
-            badgeRank_ = other.badgeRank_;
-            targets_ = other.targets_.Clone();
-        }
-
-        public BadgeSettings Clone()
-        {
-            return new BadgeSettings(this);
-        }
-
-        /// <summary>Field number for the "badge_type" field.</summary>
-        public const int BadgeTypeFieldNumber = 1;
-        private global::AllEnum.BadgeType badgeType_ = 0;
-        public global::AllEnum.BadgeType BadgeType
-        {
-            get { return badgeType_; }
-            set
-            {
-                badgeType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "badge_rank" field.</summary>
-        public const int BadgeRankFieldNumber = 2;
-        private int badgeRank_;
-        public int BadgeRank
-        {
-            get { return badgeRank_; }
-            set
-            {
-                badgeRank_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "targets" field.</summary>
-        public const int TargetsFieldNumber = 3;
-        private static readonly pb::FieldCodec<int> _repeated_targets_codec
-            = pb::FieldCodec.ForInt32(26);
-        private readonly pbc::RepeatedField<int> targets_ = new pbc::RepeatedField<int>();
-        public pbc::RepeatedField<int> Targets
-        {
-            get { return targets_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as BadgeSettings);
-        }
-
-        public bool Equals(BadgeSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (BadgeType != other.BadgeType) return false;
-            if (BadgeRank != other.BadgeRank) return false;
-            if (!targets_.Equals(other.targets_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (BadgeType != 0) hash ^= BadgeType.GetHashCode();
-            if (BadgeRank != 0) hash ^= BadgeRank.GetHashCode();
-            hash ^= targets_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (BadgeType != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)BadgeType);
-            }
-            if (BadgeRank != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(BadgeRank);
-            }
-            targets_.WriteTo(output, _repeated_targets_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (BadgeType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)BadgeType);
-            }
-            if (BadgeRank != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BadgeRank);
-            }
-            size += targets_.CalculateSize(_repeated_targets_codec);
-            return size;
-        }
-
-        public void MergeFrom(BadgeSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.BadgeType != 0)
-            {
-                BadgeType = other.BadgeType;
-            }
-            if (other.BadgeRank != 0)
-            {
-                BadgeRank = other.BadgeRank;
-            }
-            targets_.Add(other.targets_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            badgeType_ = (global::AllEnum.BadgeType)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            BadgeRank = input.ReadInt32();
-                            break;
-                        }
-                    case 26:
-                    case 24:
-                        {
-                            targets_.AddEntriesFrom(input, _repeated_targets_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class TypeEffectiveSettings : pb::IMessage<TypeEffectiveSettings>
-    {
-        private static readonly pb::MessageParser<TypeEffectiveSettings> _parser = new pb::MessageParser<TypeEffectiveSettings>(() => new TypeEffectiveSettings());
-        public static pb::MessageParser<TypeEffectiveSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[76]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public TypeEffectiveSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public TypeEffectiveSettings(TypeEffectiveSettings other) : this()
-        {
-            attackScalar_ = other.attackScalar_.Clone();
-            attackType_ = other.attackType_;
-        }
-
-        public TypeEffectiveSettings Clone()
-        {
-            return new TypeEffectiveSettings(this);
-        }
-
-        /// <summary>Field number for the "attack_scalar" field.</summary>
-        public const int AttackScalarFieldNumber = 1;
-        private static readonly pb::FieldCodec<float> _repeated_attackScalar_codec
-            = pb::FieldCodec.ForFloat(10);
-        private readonly pbc::RepeatedField<float> attackScalar_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> AttackScalar
-        {
-            get { return attackScalar_; }
-        }
-
-        /// <summary>Field number for the "attack_type" field.</summary>
-        public const int AttackTypeFieldNumber = 2;
-        private global::AllEnum.PokemonType attackType_ = 0;
-        public global::AllEnum.PokemonType AttackType
-        {
-            get { return attackType_; }
-            set
-            {
-                attackType_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as TypeEffectiveSettings);
-        }
-
-        public bool Equals(TypeEffectiveSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!attackScalar_.Equals(other.attackScalar_)) return false;
-            if (AttackType != other.AttackType) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= attackScalar_.GetHashCode();
-            if (AttackType != 0) hash ^= AttackType.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            attackScalar_.WriteTo(output, _repeated_attackScalar_codec);
-            if (AttackType != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)AttackType);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += attackScalar_.CalculateSize(_repeated_attackScalar_codec);
-            if (AttackType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)AttackType);
-            }
-            return size;
-        }
-
-        public void MergeFrom(TypeEffectiveSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            attackScalar_.Add(other.attackScalar_);
-            if (other.AttackType != 0)
-            {
-                AttackType = other.AttackType;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                    case 13:
-                        {
-                            attackScalar_.AddEntriesFrom(input, _repeated_attackScalar_codec);
-                            break;
-                        }
-                    case 16:
-                        {
-                            attackType_ = (global::AllEnum.PokemonType)input.ReadEnum();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class MoveSequenceSettings : pb::IMessage<MoveSequenceSettings>
-    {
-        private static readonly pb::MessageParser<MoveSequenceSettings> _parser = new pb::MessageParser<MoveSequenceSettings>(() => new MoveSequenceSettings());
-        public static pb::MessageParser<MoveSequenceSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[77]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public MoveSequenceSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public MoveSequenceSettings(MoveSequenceSettings other) : this()
-        {
-            sequence_ = other.sequence_.Clone();
-        }
-
-        public MoveSequenceSettings Clone()
-        {
-            return new MoveSequenceSettings(this);
-        }
-
-        /// <summary>Field number for the "sequence" field.</summary>
-        public const int SequenceFieldNumber = 1;
-        private static readonly pb::FieldCodec<string> _repeated_sequence_codec
-            = pb::FieldCodec.ForString(10);
-        private readonly pbc::RepeatedField<string> sequence_ = new pbc::RepeatedField<string>();
-        public pbc::RepeatedField<string> Sequence
-        {
-            get { return sequence_; }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as MoveSequenceSettings);
-        }
-
-        public bool Equals(MoveSequenceSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!sequence_.Equals(other.sequence_)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= sequence_.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            sequence_.WriteTo(output, _repeated_sequence_codec);
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += sequence_.CalculateSize(_repeated_sequence_codec);
-            return size;
-        }
-
-        public void MergeFrom(MoveSequenceSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            sequence_.Add(other.sequence_);
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                        {
-                            sequence_.AddEntriesFrom(input, _repeated_sequence_codec);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class MoveSettings : pb::IMessage<MoveSettings>
-    {
-        private static readonly pb::MessageParser<MoveSettings> _parser = new pb::MessageParser<MoveSettings>(() => new MoveSettings());
-        public static pb::MessageParser<MoveSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[78]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public MoveSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public MoveSettings(MoveSettings other) : this()
-        {
-            movementId_ = other.movementId_;
-            animationId_ = other.animationId_;
-            pokemonType_ = other.pokemonType_;
-            power_ = other.power_;
-            accuracyChance_ = other.accuracyChance_;
-            criticalChance_ = other.criticalChance_;
-            healScalar_ = other.healScalar_;
-            staminaLossScalar_ = other.staminaLossScalar_;
-            trainerLevelMin_ = other.trainerLevelMin_;
-            trainerLevelMax_ = other.trainerLevelMax_;
-            vfxName_ = other.vfxName_;
-            durationMs_ = other.durationMs_;
-            damageWindowStartMs_ = other.damageWindowStartMs_;
-            damageWindowEndMs_ = other.damageWindowEndMs_;
-            energyDelta_ = other.energyDelta_;
-        }
-
-        public MoveSettings Clone()
-        {
-            return new MoveSettings(this);
-        }
-
-        /// <summary>Field number for the "movement_id" field.</summary>
-        public const int MovementIdFieldNumber = 1;
-        private global::AllEnum.PokemonMovementType movementId_ = 0;
-        public global::AllEnum.PokemonMovementType MovementId
-        {
-            get { return movementId_; }
-            set
-            {
-                movementId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "animation_id" field.</summary>
-        public const int AnimationIdFieldNumber = 2;
-        private int animationId_;
-        public int AnimationId
-        {
-            get { return animationId_; }
-            set
-            {
-                animationId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_type" field.</summary>
-        public const int PokemonTypeFieldNumber = 3;
-        private global::AllEnum.PokemonType pokemonType_ = 0;
-        public global::AllEnum.PokemonType PokemonType
-        {
-            get { return pokemonType_; }
-            set
-            {
-                pokemonType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "power" field.</summary>
-        public const int PowerFieldNumber = 4;
-        private float power_;
-        public float Power
-        {
-            get { return power_; }
-            set
-            {
-                power_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "accuracy_chance" field.</summary>
-        public const int AccuracyChanceFieldNumber = 5;
-        private float accuracyChance_;
-        public float AccuracyChance
-        {
-            get { return accuracyChance_; }
-            set
-            {
-                accuracyChance_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "critical_chance" field.</summary>
-        public const int CriticalChanceFieldNumber = 6;
-        private float criticalChance_;
-        public float CriticalChance
-        {
-            get { return criticalChance_; }
-            set
-            {
-                criticalChance_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "heal_scalar" field.</summary>
-        public const int HealScalarFieldNumber = 7;
-        private float healScalar_;
-        public float HealScalar
-        {
-            get { return healScalar_; }
-            set
-            {
-                healScalar_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stamina_loss_scalar" field.</summary>
-        public const int StaminaLossScalarFieldNumber = 8;
-        private float staminaLossScalar_;
-        public float StaminaLossScalar
-        {
-            get { return staminaLossScalar_; }
-            set
-            {
-                staminaLossScalar_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "trainer_level_min" field.</summary>
-        public const int TrainerLevelMinFieldNumber = 9;
-        private int trainerLevelMin_;
-        public int TrainerLevelMin
-        {
-            get { return trainerLevelMin_; }
-            set
-            {
-                trainerLevelMin_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "trainer_level_max" field.</summary>
-        public const int TrainerLevelMaxFieldNumber = 10;
-        private int trainerLevelMax_;
-        public int TrainerLevelMax
-        {
-            get { return trainerLevelMax_; }
-            set
-            {
-                trainerLevelMax_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "vfx_name" field.</summary>
-        public const int VfxNameFieldNumber = 11;
-        private string vfxName_ = "";
-        public string VfxName
-        {
-            get { return vfxName_; }
-            set
-            {
-                vfxName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
-            }
-        }
-
-        /// <summary>Field number for the "duration_ms" field.</summary>
-        public const int DurationMsFieldNumber = 12;
-        private int durationMs_;
-        public int DurationMs
-        {
-            get { return durationMs_; }
-            set
-            {
-                durationMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "damage_window_start_ms" field.</summary>
-        public const int DamageWindowStartMsFieldNumber = 13;
-        private int damageWindowStartMs_;
-        public int DamageWindowStartMs
-        {
-            get { return damageWindowStartMs_; }
-            set
-            {
-                damageWindowStartMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "damage_window_end_ms" field.</summary>
-        public const int DamageWindowEndMsFieldNumber = 14;
-        private int damageWindowEndMs_;
-        public int DamageWindowEndMs
-        {
-            get { return damageWindowEndMs_; }
-            set
-            {
-                damageWindowEndMs_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "energy_delta" field.</summary>
-        public const int EnergyDeltaFieldNumber = 15;
-        private int energyDelta_;
-        public int EnergyDelta
-        {
-            get { return energyDelta_; }
-            set
-            {
-                energyDelta_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as MoveSettings);
-        }
-
-        public bool Equals(MoveSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (MovementId != other.MovementId) return false;
-            if (AnimationId != other.AnimationId) return false;
-            if (PokemonType != other.PokemonType) return false;
-            if (Power != other.Power) return false;
-            if (AccuracyChance != other.AccuracyChance) return false;
-            if (CriticalChance != other.CriticalChance) return false;
-            if (HealScalar != other.HealScalar) return false;
-            if (StaminaLossScalar != other.StaminaLossScalar) return false;
-            if (TrainerLevelMin != other.TrainerLevelMin) return false;
-            if (TrainerLevelMax != other.TrainerLevelMax) return false;
-            if (VfxName != other.VfxName) return false;
-            if (DurationMs != other.DurationMs) return false;
-            if (DamageWindowStartMs != other.DamageWindowStartMs) return false;
-            if (DamageWindowEndMs != other.DamageWindowEndMs) return false;
-            if (EnergyDelta != other.EnergyDelta) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (MovementId != 0) hash ^= MovementId.GetHashCode();
-            if (AnimationId != 0) hash ^= AnimationId.GetHashCode();
-            if (PokemonType != 0) hash ^= PokemonType.GetHashCode();
-            if (Power != 0F) hash ^= Power.GetHashCode();
-            if (AccuracyChance != 0F) hash ^= AccuracyChance.GetHashCode();
-            if (CriticalChance != 0F) hash ^= CriticalChance.GetHashCode();
-            if (HealScalar != 0F) hash ^= HealScalar.GetHashCode();
-            if (StaminaLossScalar != 0F) hash ^= StaminaLossScalar.GetHashCode();
-            if (TrainerLevelMin != 0) hash ^= TrainerLevelMin.GetHashCode();
-            if (TrainerLevelMax != 0) hash ^= TrainerLevelMax.GetHashCode();
-            if (VfxName.Length != 0) hash ^= VfxName.GetHashCode();
-            if (DurationMs != 0) hash ^= DurationMs.GetHashCode();
-            if (DamageWindowStartMs != 0) hash ^= DamageWindowStartMs.GetHashCode();
-            if (DamageWindowEndMs != 0) hash ^= DamageWindowEndMs.GetHashCode();
-            if (EnergyDelta != 0) hash ^= EnergyDelta.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (MovementId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)MovementId);
-            }
-            if (AnimationId != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(AnimationId);
-            }
-            if (PokemonType != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteEnum((int)PokemonType);
-            }
-            if (Power != 0F)
-            {
-                output.WriteRawTag(37);
-                output.WriteFloat(Power);
-            }
-            if (AccuracyChance != 0F)
-            {
-                output.WriteRawTag(45);
-                output.WriteFloat(AccuracyChance);
-            }
-            if (CriticalChance != 0F)
-            {
-                output.WriteRawTag(53);
-                output.WriteFloat(CriticalChance);
-            }
-            if (HealScalar != 0F)
-            {
-                output.WriteRawTag(61);
-                output.WriteFloat(HealScalar);
-            }
-            if (StaminaLossScalar != 0F)
-            {
-                output.WriteRawTag(69);
-                output.WriteFloat(StaminaLossScalar);
-            }
-            if (TrainerLevelMin != 0)
-            {
-                output.WriteRawTag(72);
-                output.WriteInt32(TrainerLevelMin);
-            }
-            if (TrainerLevelMax != 0)
-            {
-                output.WriteRawTag(80);
-                output.WriteInt32(TrainerLevelMax);
-            }
-            if (VfxName.Length != 0)
-            {
-                output.WriteRawTag(90);
-                output.WriteString(VfxName);
-            }
-            if (DurationMs != 0)
-            {
-                output.WriteRawTag(96);
-                output.WriteInt32(DurationMs);
-            }
-            if (DamageWindowStartMs != 0)
-            {
-                output.WriteRawTag(104);
-                output.WriteInt32(DamageWindowStartMs);
-            }
-            if (DamageWindowEndMs != 0)
-            {
-                output.WriteRawTag(112);
-                output.WriteInt32(DamageWindowEndMs);
-            }
-            if (EnergyDelta != 0)
-            {
-                output.WriteRawTag(120);
-                output.WriteInt32(EnergyDelta);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (MovementId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)MovementId);
-            }
-            if (AnimationId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(AnimationId);
-            }
-            if (PokemonType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonType);
-            }
-            if (Power != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (AccuracyChance != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (CriticalChance != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (HealScalar != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (StaminaLossScalar != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (TrainerLevelMin != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TrainerLevelMin);
-            }
-            if (TrainerLevelMax != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TrainerLevelMax);
-            }
-            if (VfxName.Length != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeStringSize(VfxName);
-            }
-            if (DurationMs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DurationMs);
-            }
-            if (DamageWindowStartMs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DamageWindowStartMs);
-            }
-            if (DamageWindowEndMs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DamageWindowEndMs);
-            }
-            if (EnergyDelta != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EnergyDelta);
-            }
-            return size;
-        }
-
-        public void MergeFrom(MoveSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.MovementId != 0)
-            {
-                MovementId = other.MovementId;
-            }
-            if (other.AnimationId != 0)
-            {
-                AnimationId = other.AnimationId;
-            }
-            if (other.PokemonType != 0)
-            {
-                PokemonType = other.PokemonType;
-            }
-            if (other.Power != 0F)
-            {
-                Power = other.Power;
-            }
-            if (other.AccuracyChance != 0F)
-            {
-                AccuracyChance = other.AccuracyChance;
-            }
-            if (other.CriticalChance != 0F)
-            {
-                CriticalChance = other.CriticalChance;
-            }
-            if (other.HealScalar != 0F)
-            {
-                HealScalar = other.HealScalar;
-            }
-            if (other.StaminaLossScalar != 0F)
-            {
-                StaminaLossScalar = other.StaminaLossScalar;
-            }
-            if (other.TrainerLevelMin != 0)
-            {
-                TrainerLevelMin = other.TrainerLevelMin;
-            }
-            if (other.TrainerLevelMax != 0)
-            {
-                TrainerLevelMax = other.TrainerLevelMax;
-            }
-            if (other.VfxName.Length != 0)
-            {
-                VfxName = other.VfxName;
-            }
-            if (other.DurationMs != 0)
-            {
-                DurationMs = other.DurationMs;
-            }
-            if (other.DamageWindowStartMs != 0)
-            {
-                DamageWindowStartMs = other.DamageWindowStartMs;
-            }
-            if (other.DamageWindowEndMs != 0)
-            {
-                DamageWindowEndMs = other.DamageWindowEndMs;
-            }
-            if (other.EnergyDelta != 0)
-            {
-                EnergyDelta = other.EnergyDelta;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            movementId_ = (global::AllEnum.PokemonMovementType)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            AnimationId = input.ReadInt32();
-                            break;
-                        }
-                    case 24:
-                        {
-                            pokemonType_ = (global::AllEnum.PokemonType)input.ReadEnum();
-                            break;
-                        }
-                    case 37:
-                        {
-                            Power = input.ReadFloat();
-                            break;
-                        }
-                    case 45:
-                        {
-                            AccuracyChance = input.ReadFloat();
-                            break;
-                        }
-                    case 53:
-                        {
-                            CriticalChance = input.ReadFloat();
-                            break;
-                        }
-                    case 61:
-                        {
-                            HealScalar = input.ReadFloat();
-                            break;
-                        }
-                    case 69:
-                        {
-                            StaminaLossScalar = input.ReadFloat();
-                            break;
-                        }
-                    case 72:
-                        {
-                            TrainerLevelMin = input.ReadInt32();
-                            break;
-                        }
-                    case 80:
-                        {
-                            TrainerLevelMax = input.ReadInt32();
-                            break;
-                        }
-                    case 90:
-                        {
-                            VfxName = input.ReadString();
-                            break;
-                        }
-                    case 96:
-                        {
-                            DurationMs = input.ReadInt32();
-                            break;
-                        }
-                    case 104:
-                        {
-                            DamageWindowStartMs = input.ReadInt32();
-                            break;
-                        }
-                    case 112:
-                        {
-                            DamageWindowEndMs = input.ReadInt32();
-                            break;
-                        }
-                    case 120:
-                        {
-                            EnergyDelta = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PokemonSettings : pb::IMessage<PokemonSettings>
-    {
-        private static readonly pb::MessageParser<PokemonSettings> _parser = new pb::MessageParser<PokemonSettings>(() => new PokemonSettings());
-        public static pb::MessageParser<PokemonSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[79]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PokemonSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PokemonSettings(PokemonSettings other) : this()
-        {
-            pokemonId_ = other.pokemonId_;
-            modelScale_ = other.modelScale_;
-            type_ = other.type_;
-            type2_ = other.type2_;
-            Camera = other.camera_ != null ? other.Camera.Clone() : null;
-            Encounter = other.encounter_ != null ? other.Encounter.Clone() : null;
-            Stats = other.stats_ != null ? other.Stats.Clone() : null;
-            quickMoves_ = other.quickMoves_.Clone();
-            cinematicMoves_ = other.cinematicMoves_.Clone();
-            animationTime_ = other.animationTime_.Clone();
-            evolutionIds_ = other.evolutionIds_.Clone();
-            evolutionPips_ = other.evolutionPips_;
-            class_ = other.class_;
-            pokedexHeightM_ = other.pokedexHeightM_;
-            pokedexWeightKg_ = other.pokedexWeightKg_;
-            parentPokemonId_ = other.parentPokemonId_;
-            heightStdDev_ = other.heightStdDev_;
-            weightStdDev_ = other.weightStdDev_;
-            kmDistanceToHatch_ = other.kmDistanceToHatch_;
-            familyId_ = other.familyId_;
-            candyToEvolve_ = other.candyToEvolve_;
-        }
-
-        public PokemonSettings Clone()
-        {
-            return new PokemonSettings(this);
-        }
-
-        /// <summary>Field number for the "pokemon_id" field.</summary>
-        public const int PokemonIdFieldNumber = 1;
-        private global::AllEnum.PokemonId pokemonId_ = 0;
-        public global::AllEnum.PokemonId PokemonId
-        {
-            get { return pokemonId_; }
-            set
-            {
-                pokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "model_scale" field.</summary>
-        public const int ModelScaleFieldNumber = 3;
-        private float modelScale_;
-        public float ModelScale
-        {
-            get { return modelScale_; }
-            set
-            {
-                modelScale_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "type" field.</summary>
-        public const int TypeFieldNumber = 4;
-        private global::AllEnum.PokemonType type_ = 0;
-        public global::AllEnum.PokemonType Type
-        {
-            get { return type_; }
-            set
-            {
-                type_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "type_2" field.</summary>
-        public const int Type2FieldNumber = 5;
-        private global::AllEnum.PokemonType type2_ = 0;
-        public global::AllEnum.PokemonType Type2
-        {
-            get { return type2_; }
-            set
-            {
-                type2_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "camera" field.</summary>
-        public const int CameraFieldNumber = 6;
-        private global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes camera_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes Camera
-        {
-            get { return camera_; }
-            set
-            {
-                camera_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "encounter" field.</summary>
-        public const int EncounterFieldNumber = 7;
-        private global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes encounter_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes Encounter
-        {
-            get { return encounter_; }
-            set
-            {
-                encounter_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "stats" field.</summary>
-        public const int StatsFieldNumber = 8;
-        private global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes stats_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes Stats
-        {
-            get { return stats_; }
-            set
-            {
-                stats_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "quick_moves" field.</summary>
-        public const int QuickMovesFieldNumber = 9;
-        private static readonly pb::FieldCodec<global::AllEnum.PokemonMove> _repeated_quickMoves_codec
-            = pb::FieldCodec.ForEnum(74, x => (int)x, x => (global::AllEnum.PokemonMove)x);
-        private readonly pbc::RepeatedField<global::AllEnum.PokemonMove> quickMoves_ = new pbc::RepeatedField<global::AllEnum.PokemonMove>();
-        public pbc::RepeatedField<global::AllEnum.PokemonMove> QuickMoves
-        {
-            get { return quickMoves_; }
-        }
-
-        /// <summary>Field number for the "cinematic_moves" field.</summary>
-        public const int CinematicMovesFieldNumber = 10;
-        private static readonly pb::FieldCodec<global::AllEnum.PokemonMove> _repeated_cinematicMoves_codec
-            = pb::FieldCodec.ForEnum(82, x => (int)x, x => (global::AllEnum.PokemonMove)x);
-        private readonly pbc::RepeatedField<global::AllEnum.PokemonMove> cinematicMoves_ = new pbc::RepeatedField<global::AllEnum.PokemonMove>();
-        public pbc::RepeatedField<global::AllEnum.PokemonMove> CinematicMoves
-        {
-            get { return cinematicMoves_; }
-        }
-
-        /// <summary>Field number for the "animation_time" field.</summary>
-        public const int AnimationTimeFieldNumber = 11;
-        private static readonly pb::FieldCodec<float> _repeated_animationTime_codec
-            = pb::FieldCodec.ForFloat(90);
-        private readonly pbc::RepeatedField<float> animationTime_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> AnimationTime
-        {
-            get { return animationTime_; }
-        }
-
-        /// <summary>Field number for the "evolution_ids" field.</summary>
-        public const int EvolutionIdsFieldNumber = 12;
-        private static readonly pb::FieldCodec<global::AllEnum.PokemonId> _repeated_evolutionIds_codec
-            = pb::FieldCodec.ForEnum(98, x => (int)x, x => (global::AllEnum.PokemonId)x);
-        private readonly pbc::RepeatedField<global::AllEnum.PokemonId> evolutionIds_ = new pbc::RepeatedField<global::AllEnum.PokemonId>();
-        public pbc::RepeatedField<global::AllEnum.PokemonId> EvolutionIds
-        {
-            get { return evolutionIds_; }
-        }
-
-        /// <summary>Field number for the "evolution_pips" field.</summary>
-        public const int EvolutionPipsFieldNumber = 13;
-        private int evolutionPips_;
-        public int EvolutionPips
-        {
-            get { return evolutionPips_; }
-            set
-            {
-                evolutionPips_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "class" field.</summary>
-        public const int ClassFieldNumber = 14;
-        private global::AllEnum.PokemonClass class_ = 0;
-        public global::AllEnum.PokemonClass Class
-        {
-            get { return class_; }
-            set
-            {
-                class_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokedex_height_m" field.</summary>
-        public const int PokedexHeightMFieldNumber = 15;
-        private float pokedexHeightM_;
-        public float PokedexHeightM
-        {
-            get { return pokedexHeightM_; }
-            set
-            {
-                pokedexHeightM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokedex_weight_kg" field.</summary>
-        public const int PokedexWeightKgFieldNumber = 16;
-        private float pokedexWeightKg_;
-        public float PokedexWeightKg
-        {
-            get { return pokedexWeightKg_; }
-            set
-            {
-                pokedexWeightKg_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "parent_pokemon_id" field.</summary>
-        public const int ParentPokemonIdFieldNumber = 17;
-        private global::AllEnum.PokemonId parentPokemonId_ = 0;
-        public global::AllEnum.PokemonId ParentPokemonId
-        {
-            get { return parentPokemonId_; }
-            set
-            {
-                parentPokemonId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "height_std_dev" field.</summary>
-        public const int HeightStdDevFieldNumber = 18;
-        private float heightStdDev_;
-        public float HeightStdDev
-        {
-            get { return heightStdDev_; }
-            set
-            {
-                heightStdDev_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "weight_std_dev" field.</summary>
-        public const int WeightStdDevFieldNumber = 19;
-        private float weightStdDev_;
-        public float WeightStdDev
-        {
-            get { return weightStdDev_; }
-            set
-            {
-                weightStdDev_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "km_distance_to_hatch" field.</summary>
-        public const int KmDistanceToHatchFieldNumber = 20;
-        private float kmDistanceToHatch_;
-        public float KmDistanceToHatch
-        {
-            get { return kmDistanceToHatch_; }
-            set
-            {
-                kmDistanceToHatch_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "family_id" field.</summary>
-        public const int FamilyIdFieldNumber = 21;
-        private global::AllEnum.PokemonFamilyId familyId_ = 0;
-        public global::AllEnum.PokemonFamilyId FamilyId
-        {
-            get { return familyId_; }
-            set
-            {
-                familyId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "candy_to_evolve" field.</summary>
-        public const int CandyToEvolveFieldNumber = 22;
-        private int candyToEvolve_;
-        public int CandyToEvolve
-        {
-            get { return candyToEvolve_; }
-            set
-            {
-                candyToEvolve_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PokemonSettings);
-        }
-
-        public bool Equals(PokemonSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (PokemonId != other.PokemonId) return false;
-            if (ModelScale != other.ModelScale) return false;
-            if (Type != other.Type) return false;
-            if (Type2 != other.Type2) return false;
-            if (!object.Equals(Camera, other.Camera)) return false;
-            if (!object.Equals(Encounter, other.Encounter)) return false;
-            if (!object.Equals(Stats, other.Stats)) return false;
-            if (!quickMoves_.Equals(other.quickMoves_)) return false;
-            if (!cinematicMoves_.Equals(other.cinematicMoves_)) return false;
-            if (!animationTime_.Equals(other.animationTime_)) return false;
-            if (!evolutionIds_.Equals(other.evolutionIds_)) return false;
-            if (EvolutionPips != other.EvolutionPips) return false;
-            if (Class != other.Class) return false;
-            if (PokedexHeightM != other.PokedexHeightM) return false;
-            if (PokedexWeightKg != other.PokedexWeightKg) return false;
-            if (ParentPokemonId != other.ParentPokemonId) return false;
-            if (HeightStdDev != other.HeightStdDev) return false;
-            if (WeightStdDev != other.WeightStdDev) return false;
-            if (KmDistanceToHatch != other.KmDistanceToHatch) return false;
-            if (FamilyId != other.FamilyId) return false;
-            if (CandyToEvolve != other.CandyToEvolve) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (PokemonId != 0) hash ^= PokemonId.GetHashCode();
-            if (ModelScale != 0F) hash ^= ModelScale.GetHashCode();
-            if (Type != 0) hash ^= Type.GetHashCode();
-            if (Type2 != 0) hash ^= Type2.GetHashCode();
-            if (camera_ != null) hash ^= Camera.GetHashCode();
-            if (encounter_ != null) hash ^= Encounter.GetHashCode();
-            if (stats_ != null) hash ^= Stats.GetHashCode();
-            hash ^= quickMoves_.GetHashCode();
-            hash ^= cinematicMoves_.GetHashCode();
-            hash ^= animationTime_.GetHashCode();
-            hash ^= evolutionIds_.GetHashCode();
-            if (EvolutionPips != 0) hash ^= EvolutionPips.GetHashCode();
-            if (Class != 0) hash ^= Class.GetHashCode();
-            if (PokedexHeightM != 0F) hash ^= PokedexHeightM.GetHashCode();
-            if (PokedexWeightKg != 0F) hash ^= PokedexWeightKg.GetHashCode();
-            if (ParentPokemonId != 0) hash ^= ParentPokemonId.GetHashCode();
-            if (HeightStdDev != 0F) hash ^= HeightStdDev.GetHashCode();
-            if (WeightStdDev != 0F) hash ^= WeightStdDev.GetHashCode();
-            if (KmDistanceToHatch != 0F) hash ^= KmDistanceToHatch.GetHashCode();
-            if (FamilyId != 0) hash ^= FamilyId.GetHashCode();
-            if (CandyToEvolve != 0) hash ^= CandyToEvolve.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (PokemonId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)PokemonId);
-            }
-            if (ModelScale != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(ModelScale);
-            }
-            if (Type != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteEnum((int)Type);
-            }
-            if (Type2 != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteEnum((int)Type2);
-            }
-            if (camera_ != null)
-            {
-                output.WriteRawTag(50);
-                output.WriteMessage(Camera);
-            }
-            if (encounter_ != null)
-            {
-                output.WriteRawTag(58);
-                output.WriteMessage(Encounter);
-            }
-            if (stats_ != null)
-            {
-                output.WriteRawTag(66);
-                output.WriteMessage(Stats);
-            }
-            quickMoves_.WriteTo(output, _repeated_quickMoves_codec);
-            cinematicMoves_.WriteTo(output, _repeated_cinematicMoves_codec);
-            animationTime_.WriteTo(output, _repeated_animationTime_codec);
-            evolutionIds_.WriteTo(output, _repeated_evolutionIds_codec);
-            if (EvolutionPips != 0)
-            {
-                output.WriteRawTag(104);
-                output.WriteInt32(EvolutionPips);
-            }
-            if (Class != 0)
-            {
-                output.WriteRawTag(112);
-                output.WriteEnum((int)Class);
-            }
-            if (PokedexHeightM != 0F)
-            {
-                output.WriteRawTag(125);
-                output.WriteFloat(PokedexHeightM);
-            }
-            if (PokedexWeightKg != 0F)
-            {
-                output.WriteRawTag(133, 1);
-                output.WriteFloat(PokedexWeightKg);
-            }
-            if (ParentPokemonId != 0)
-            {
-                output.WriteRawTag(136, 1);
-                output.WriteEnum((int)ParentPokemonId);
-            }
-            if (HeightStdDev != 0F)
-            {
-                output.WriteRawTag(149, 1);
-                output.WriteFloat(HeightStdDev);
-            }
-            if (WeightStdDev != 0F)
-            {
-                output.WriteRawTag(157, 1);
-                output.WriteFloat(WeightStdDev);
-            }
-            if (KmDistanceToHatch != 0F)
-            {
-                output.WriteRawTag(165, 1);
-                output.WriteFloat(KmDistanceToHatch);
-            }
-            if (FamilyId != 0)
-            {
-                output.WriteRawTag(168, 1);
-                output.WriteEnum((int)FamilyId);
-            }
-            if (CandyToEvolve != 0)
-            {
-                output.WriteRawTag(176, 1);
-                output.WriteInt32(CandyToEvolve);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (PokemonId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonId);
-            }
-            if (ModelScale != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (Type != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Type);
-            }
-            if (Type2 != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Type2);
-            }
-            if (camera_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Camera);
-            }
-            if (encounter_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Encounter);
-            }
-            if (stats_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Stats);
-            }
-            size += quickMoves_.CalculateSize(_repeated_quickMoves_codec);
-            size += cinematicMoves_.CalculateSize(_repeated_cinematicMoves_codec);
-            size += animationTime_.CalculateSize(_repeated_animationTime_codec);
-            size += evolutionIds_.CalculateSize(_repeated_evolutionIds_codec);
-            if (EvolutionPips != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EvolutionPips);
-            }
-            if (Class != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Class);
-            }
-            if (PokedexHeightM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (PokedexWeightKg != 0F)
-            {
-                size += 2 + 4;
-            }
-            if (ParentPokemonId != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeEnumSize((int)ParentPokemonId);
-            }
-            if (HeightStdDev != 0F)
-            {
-                size += 2 + 4;
-            }
-            if (WeightStdDev != 0F)
-            {
-                size += 2 + 4;
-            }
-            if (KmDistanceToHatch != 0F)
-            {
-                size += 2 + 4;
-            }
-            if (FamilyId != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeEnumSize((int)FamilyId);
-            }
-            if (CandyToEvolve != 0)
-            {
-                size += 2 + pb::CodedOutputStream.ComputeInt32Size(CandyToEvolve);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PokemonSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.PokemonId != 0)
-            {
-                PokemonId = other.PokemonId;
-            }
-            if (other.ModelScale != 0F)
-            {
-                ModelScale = other.ModelScale;
-            }
-            if (other.Type != 0)
-            {
-                Type = other.Type;
-            }
-            if (other.Type2 != 0)
-            {
-                Type2 = other.Type2;
-            }
-            if (other.camera_ != null)
-            {
-                if (camera_ == null)
-                {
-                    camera_ = new global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes();
-                }
-                Camera.MergeFrom(other.Camera);
-            }
-            if (other.encounter_ != null)
-            {
-                if (encounter_ == null)
-                {
-                    encounter_ = new global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes();
-                }
-                Encounter.MergeFrom(other.Encounter);
-            }
-            if (other.stats_ != null)
-            {
-                if (stats_ == null)
-                {
-                    stats_ = new global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes();
-                }
-                Stats.MergeFrom(other.Stats);
-            }
-            quickMoves_.Add(other.quickMoves_);
-            cinematicMoves_.Add(other.cinematicMoves_);
-            animationTime_.Add(other.animationTime_);
-            evolutionIds_.Add(other.evolutionIds_);
-            if (other.EvolutionPips != 0)
-            {
-                EvolutionPips = other.EvolutionPips;
-            }
-            if (other.Class != 0)
-            {
-                Class = other.Class;
-            }
-            if (other.PokedexHeightM != 0F)
-            {
-                PokedexHeightM = other.PokedexHeightM;
-            }
-            if (other.PokedexWeightKg != 0F)
-            {
-                PokedexWeightKg = other.PokedexWeightKg;
-            }
-            if (other.ParentPokemonId != 0)
-            {
-                ParentPokemonId = other.ParentPokemonId;
-            }
-            if (other.HeightStdDev != 0F)
-            {
-                HeightStdDev = other.HeightStdDev;
-            }
-            if (other.WeightStdDev != 0F)
-            {
-                WeightStdDev = other.WeightStdDev;
-            }
-            if (other.KmDistanceToHatch != 0F)
-            {
-                KmDistanceToHatch = other.KmDistanceToHatch;
-            }
-            if (other.FamilyId != 0)
-            {
-                FamilyId = other.FamilyId;
-            }
-            if (other.CandyToEvolve != 0)
-            {
-                CandyToEvolve = other.CandyToEvolve;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            pokemonId_ = (global::AllEnum.PokemonId)input.ReadEnum();
-                            break;
-                        }
-                    case 29:
-                        {
-                            ModelScale = input.ReadFloat();
-                            break;
-                        }
-                    case 32:
-                        {
-                            type_ = (global::AllEnum.PokemonType)input.ReadEnum();
-                            break;
-                        }
-                    case 40:
-                        {
-                            type2_ = (global::AllEnum.PokemonType)input.ReadEnum();
-                            break;
-                        }
-                    case 50:
-                        {
-                            if (camera_ == null)
-                            {
-                                camera_ = new global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes();
-                            }
-                            input.ReadMessage(camera_);
-                            break;
-                        }
-                    case 58:
-                        {
-                            if (encounter_ == null)
-                            {
-                                encounter_ = new global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes();
-                            }
-                            input.ReadMessage(encounter_);
-                            break;
-                        }
-                    case 66:
-                        {
-                            if (stats_ == null)
-                            {
-                                stats_ = new global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes();
-                            }
-                            input.ReadMessage(stats_);
-                            break;
-                        }
-                    case 74:
-                    case 72:
-                        {
-                            quickMoves_.AddEntriesFrom(input, _repeated_quickMoves_codec);
-                            break;
-                        }
-                    case 82:
-                    case 80:
-                        {
-                            cinematicMoves_.AddEntriesFrom(input, _repeated_cinematicMoves_codec);
-                            break;
-                        }
-                    case 90:
-                    case 93:
-                        {
-                            animationTime_.AddEntriesFrom(input, _repeated_animationTime_codec);
-                            break;
-                        }
-                    case 98:
-                    case 96:
-                        {
-                            evolutionIds_.AddEntriesFrom(input, _repeated_evolutionIds_codec);
-                            break;
-                        }
-                    case 104:
-                        {
-                            EvolutionPips = input.ReadInt32();
-                            break;
-                        }
-                    case 112:
-                        {
-                            class_ = (global::AllEnum.PokemonClass)input.ReadEnum();
-                            break;
-                        }
-                    case 125:
-                        {
-                            PokedexHeightM = input.ReadFloat();
-                            break;
-                        }
-                    case 133:
-                        {
-                            PokedexWeightKg = input.ReadFloat();
-                            break;
-                        }
-                    case 136:
-                        {
-                            parentPokemonId_ = (global::AllEnum.PokemonId)input.ReadEnum();
-                            break;
-                        }
-                    case 149:
-                        {
-                            HeightStdDev = input.ReadFloat();
-                            break;
-                        }
-                    case 157:
-                        {
-                            WeightStdDev = input.ReadFloat();
-                            break;
-                        }
-                    case 165:
-                        {
-                            KmDistanceToHatch = input.ReadFloat();
-                            break;
-                        }
-                    case 168:
-                        {
-                            familyId_ = (global::AllEnum.PokemonFamilyId)input.ReadEnum();
-                            break;
-                        }
-                    case 176:
-                        {
-                            CandyToEvolve = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class CameraAttributes : pb::IMessage<CameraAttributes>
-    {
-        private static readonly pb::MessageParser<CameraAttributes> _parser = new pb::MessageParser<CameraAttributes>(() => new CameraAttributes());
-        public static pb::MessageParser<CameraAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[80]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public CameraAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public CameraAttributes(CameraAttributes other) : this()
-        {
-            diskRadiusM_ = other.diskRadiusM_;
-            cylinderRadiusM_ = other.cylinderRadiusM_;
-            cylinderHeightM_ = other.cylinderHeightM_;
-            cylinderGroundM_ = other.cylinderGroundM_;
-            shoulderModeScale_ = other.shoulderModeScale_;
-        }
-
-        public CameraAttributes Clone()
-        {
-            return new CameraAttributes(this);
-        }
-
-        /// <summary>Field number for the "disk_radius_m" field.</summary>
-        public const int DiskRadiusMFieldNumber = 1;
-        private float diskRadiusM_;
-        public float DiskRadiusM
-        {
-            get { return diskRadiusM_; }
-            set
-            {
-                diskRadiusM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cylinder_radius_m" field.</summary>
-        public const int CylinderRadiusMFieldNumber = 2;
-        private float cylinderRadiusM_;
-        public float CylinderRadiusM
-        {
-            get { return cylinderRadiusM_; }
-            set
-            {
-                cylinderRadiusM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cylinder_height_m" field.</summary>
-        public const int CylinderHeightMFieldNumber = 3;
-        private float cylinderHeightM_;
-        public float CylinderHeightM
-        {
-            get { return cylinderHeightM_; }
-            set
-            {
-                cylinderHeightM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "cylinder_ground_m" field.</summary>
-        public const int CylinderGroundMFieldNumber = 4;
-        private float cylinderGroundM_;
-        public float CylinderGroundM
-        {
-            get { return cylinderGroundM_; }
-            set
-            {
-                cylinderGroundM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "shoulder_mode_scale" field.</summary>
-        public const int ShoulderModeScaleFieldNumber = 5;
-        private float shoulderModeScale_;
-        public float ShoulderModeScale
-        {
-            get { return shoulderModeScale_; }
-            set
-            {
-                shoulderModeScale_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as CameraAttributes);
-        }
-
-        public bool Equals(CameraAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (DiskRadiusM != other.DiskRadiusM) return false;
-            if (CylinderRadiusM != other.CylinderRadiusM) return false;
-            if (CylinderHeightM != other.CylinderHeightM) return false;
-            if (CylinderGroundM != other.CylinderGroundM) return false;
-            if (ShoulderModeScale != other.ShoulderModeScale) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (DiskRadiusM != 0F) hash ^= DiskRadiusM.GetHashCode();
-            if (CylinderRadiusM != 0F) hash ^= CylinderRadiusM.GetHashCode();
-            if (CylinderHeightM != 0F) hash ^= CylinderHeightM.GetHashCode();
-            if (CylinderGroundM != 0F) hash ^= CylinderGroundM.GetHashCode();
-            if (ShoulderModeScale != 0F) hash ^= ShoulderModeScale.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (DiskRadiusM != 0F)
-            {
-                output.WriteRawTag(13);
-                output.WriteFloat(DiskRadiusM);
-            }
-            if (CylinderRadiusM != 0F)
-            {
-                output.WriteRawTag(21);
-                output.WriteFloat(CylinderRadiusM);
-            }
-            if (CylinderHeightM != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(CylinderHeightM);
-            }
-            if (CylinderGroundM != 0F)
-            {
-                output.WriteRawTag(37);
-                output.WriteFloat(CylinderGroundM);
-            }
-            if (ShoulderModeScale != 0F)
-            {
-                output.WriteRawTag(45);
-                output.WriteFloat(ShoulderModeScale);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (DiskRadiusM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (CylinderRadiusM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (CylinderHeightM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (CylinderGroundM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (ShoulderModeScale != 0F)
-            {
-                size += 1 + 4;
-            }
-            return size;
-        }
-
-        public void MergeFrom(CameraAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.DiskRadiusM != 0F)
-            {
-                DiskRadiusM = other.DiskRadiusM;
-            }
-            if (other.CylinderRadiusM != 0F)
-            {
-                CylinderRadiusM = other.CylinderRadiusM;
-            }
-            if (other.CylinderHeightM != 0F)
-            {
-                CylinderHeightM = other.CylinderHeightM;
-            }
-            if (other.CylinderGroundM != 0F)
-            {
-                CylinderGroundM = other.CylinderGroundM;
-            }
-            if (other.ShoulderModeScale != 0F)
-            {
-                ShoulderModeScale = other.ShoulderModeScale;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 13:
-                        {
-                            DiskRadiusM = input.ReadFloat();
-                            break;
-                        }
-                    case 21:
-                        {
-                            CylinderRadiusM = input.ReadFloat();
-                            break;
-                        }
-                    case 29:
-                        {
-                            CylinderHeightM = input.ReadFloat();
-                            break;
-                        }
-                    case 37:
-                        {
-                            CylinderGroundM = input.ReadFloat();
-                            break;
-                        }
-                    case 45:
-                        {
-                            ShoulderModeScale = input.ReadFloat();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EncounterAttributes : pb::IMessage<EncounterAttributes>
-    {
-        private static readonly pb::MessageParser<EncounterAttributes> _parser = new pb::MessageParser<EncounterAttributes>(() => new EncounterAttributes());
-        public static pb::MessageParser<EncounterAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[81]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EncounterAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EncounterAttributes(EncounterAttributes other) : this()
-        {
-            baseCaptureRate_ = other.baseCaptureRate_;
-            baseFleeRate_ = other.baseFleeRate_;
-            collisionRadiusM_ = other.collisionRadiusM_;
-            collisionHeightM_ = other.collisionHeightM_;
-            collisionHeadRadiusM_ = other.collisionHeadRadiusM_;
-            movementType_ = other.movementType_;
-            movementTimerS_ = other.movementTimerS_;
-            jumpTimeS_ = other.jumpTimeS_;
-            attackTimerS_ = other.attackTimerS_;
-        }
-
-        public EncounterAttributes Clone()
-        {
-            return new EncounterAttributes(this);
-        }
-
-        /// <summary>Field number for the "base_capture_rate" field.</summary>
-        public const int BaseCaptureRateFieldNumber = 1;
-        private float baseCaptureRate_;
-        public float BaseCaptureRate
-        {
-            get { return baseCaptureRate_; }
-            set
-            {
-                baseCaptureRate_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "base_flee_rate" field.</summary>
-        public const int BaseFleeRateFieldNumber = 2;
-        private float baseFleeRate_;
-        public float BaseFleeRate
-        {
-            get { return baseFleeRate_; }
-            set
-            {
-                baseFleeRate_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "collision_radius_m" field.</summary>
-        public const int CollisionRadiusMFieldNumber = 3;
-        private float collisionRadiusM_;
-        public float CollisionRadiusM
-        {
-            get { return collisionRadiusM_; }
-            set
-            {
-                collisionRadiusM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "collision_height_m" field.</summary>
-        public const int CollisionHeightMFieldNumber = 4;
-        private float collisionHeightM_;
-        public float CollisionHeightM
-        {
-            get { return collisionHeightM_; }
-            set
-            {
-                collisionHeightM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "collision_head_radius_m" field.</summary>
-        public const int CollisionHeadRadiusMFieldNumber = 5;
-        private float collisionHeadRadiusM_;
-        public float CollisionHeadRadiusM
-        {
-            get { return collisionHeadRadiusM_; }
-            set
-            {
-                collisionHeadRadiusM_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "movement_type" field.</summary>
-        public const int MovementTypeFieldNumber = 6;
-        private global::AllEnum.PokemonMovementType movementType_ = 0;
-        public global::AllEnum.PokemonMovementType MovementType
-        {
-            get { return movementType_; }
-            set
-            {
-                movementType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "movement_timer_s" field.</summary>
-        public const int MovementTimerSFieldNumber = 7;
-        private float movementTimerS_;
-        public float MovementTimerS
-        {
-            get { return movementTimerS_; }
-            set
-            {
-                movementTimerS_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "jump_time_s" field.</summary>
-        public const int JumpTimeSFieldNumber = 8;
-        private float jumpTimeS_;
-        public float JumpTimeS
-        {
-            get { return jumpTimeS_; }
-            set
-            {
-                jumpTimeS_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "attack_timer_s" field.</summary>
-        public const int AttackTimerSFieldNumber = 9;
-        private float attackTimerS_;
-        public float AttackTimerS
-        {
-            get { return attackTimerS_; }
-            set
-            {
-                attackTimerS_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EncounterAttributes);
-        }
-
-        public bool Equals(EncounterAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (BaseCaptureRate != other.BaseCaptureRate) return false;
-            if (BaseFleeRate != other.BaseFleeRate) return false;
-            if (CollisionRadiusM != other.CollisionRadiusM) return false;
-            if (CollisionHeightM != other.CollisionHeightM) return false;
-            if (CollisionHeadRadiusM != other.CollisionHeadRadiusM) return false;
-            if (MovementType != other.MovementType) return false;
-            if (MovementTimerS != other.MovementTimerS) return false;
-            if (JumpTimeS != other.JumpTimeS) return false;
-            if (AttackTimerS != other.AttackTimerS) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (BaseCaptureRate != 0F) hash ^= BaseCaptureRate.GetHashCode();
-            if (BaseFleeRate != 0F) hash ^= BaseFleeRate.GetHashCode();
-            if (CollisionRadiusM != 0F) hash ^= CollisionRadiusM.GetHashCode();
-            if (CollisionHeightM != 0F) hash ^= CollisionHeightM.GetHashCode();
-            if (CollisionHeadRadiusM != 0F) hash ^= CollisionHeadRadiusM.GetHashCode();
-            if (MovementType != 0) hash ^= MovementType.GetHashCode();
-            if (MovementTimerS != 0F) hash ^= MovementTimerS.GetHashCode();
-            if (JumpTimeS != 0F) hash ^= JumpTimeS.GetHashCode();
-            if (AttackTimerS != 0F) hash ^= AttackTimerS.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (BaseCaptureRate != 0F)
-            {
-                output.WriteRawTag(13);
-                output.WriteFloat(BaseCaptureRate);
-            }
-            if (BaseFleeRate != 0F)
-            {
-                output.WriteRawTag(21);
-                output.WriteFloat(BaseFleeRate);
-            }
-            if (CollisionRadiusM != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(CollisionRadiusM);
-            }
-            if (CollisionHeightM != 0F)
-            {
-                output.WriteRawTag(37);
-                output.WriteFloat(CollisionHeightM);
-            }
-            if (CollisionHeadRadiusM != 0F)
-            {
-                output.WriteRawTag(45);
-                output.WriteFloat(CollisionHeadRadiusM);
-            }
-            if (MovementType != 0)
-            {
-                output.WriteRawTag(48);
-                output.WriteEnum((int)MovementType);
-            }
-            if (MovementTimerS != 0F)
-            {
-                output.WriteRawTag(61);
-                output.WriteFloat(MovementTimerS);
-            }
-            if (JumpTimeS != 0F)
-            {
-                output.WriteRawTag(69);
-                output.WriteFloat(JumpTimeS);
-            }
-            if (AttackTimerS != 0F)
-            {
-                output.WriteRawTag(77);
-                output.WriteFloat(AttackTimerS);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (BaseCaptureRate != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (BaseFleeRate != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (CollisionRadiusM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (CollisionHeightM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (CollisionHeadRadiusM != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (MovementType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)MovementType);
-            }
-            if (MovementTimerS != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (JumpTimeS != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (AttackTimerS != 0F)
-            {
-                size += 1 + 4;
-            }
-            return size;
-        }
-
-        public void MergeFrom(EncounterAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.BaseCaptureRate != 0F)
-            {
-                BaseCaptureRate = other.BaseCaptureRate;
-            }
-            if (other.BaseFleeRate != 0F)
-            {
-                BaseFleeRate = other.BaseFleeRate;
-            }
-            if (other.CollisionRadiusM != 0F)
-            {
-                CollisionRadiusM = other.CollisionRadiusM;
-            }
-            if (other.CollisionHeightM != 0F)
-            {
-                CollisionHeightM = other.CollisionHeightM;
-            }
-            if (other.CollisionHeadRadiusM != 0F)
-            {
-                CollisionHeadRadiusM = other.CollisionHeadRadiusM;
-            }
-            if (other.MovementType != 0)
-            {
-                MovementType = other.MovementType;
-            }
-            if (other.MovementTimerS != 0F)
-            {
-                MovementTimerS = other.MovementTimerS;
-            }
-            if (other.JumpTimeS != 0F)
-            {
-                JumpTimeS = other.JumpTimeS;
-            }
-            if (other.AttackTimerS != 0F)
-            {
-                AttackTimerS = other.AttackTimerS;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 13:
-                        {
-                            BaseCaptureRate = input.ReadFloat();
-                            break;
-                        }
-                    case 21:
-                        {
-                            BaseFleeRate = input.ReadFloat();
-                            break;
-                        }
-                    case 29:
-                        {
-                            CollisionRadiusM = input.ReadFloat();
-                            break;
-                        }
-                    case 37:
-                        {
-                            CollisionHeightM = input.ReadFloat();
-                            break;
-                        }
-                    case 45:
-                        {
-                            CollisionHeadRadiusM = input.ReadFloat();
-                            break;
-                        }
-                    case 48:
-                        {
-                            movementType_ = (global::AllEnum.PokemonMovementType)input.ReadEnum();
-                            break;
-                        }
-                    case 61:
-                        {
-                            MovementTimerS = input.ReadFloat();
-                            break;
-                        }
-                    case 69:
-                        {
-                            JumpTimeS = input.ReadFloat();
-                            break;
-                        }
-                    case 77:
-                        {
-                            AttackTimerS = input.ReadFloat();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class StatsAttributes : pb::IMessage<StatsAttributes>
-    {
-        private static readonly pb::MessageParser<StatsAttributes> _parser = new pb::MessageParser<StatsAttributes>(() => new StatsAttributes());
-        public static pb::MessageParser<StatsAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[82]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public StatsAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public StatsAttributes(StatsAttributes other) : this()
-        {
-            baseStamina_ = other.baseStamina_;
-            baseAttack_ = other.baseAttack_;
-            baseDefense_ = other.baseDefense_;
-            dodgeEnergyDelta_ = other.dodgeEnergyDelta_;
-        }
-
-        public StatsAttributes Clone()
-        {
-            return new StatsAttributes(this);
-        }
-
-        /// <summary>Field number for the "base_stamina" field.</summary>
-        public const int BaseStaminaFieldNumber = 1;
-        private int baseStamina_;
-        public int BaseStamina
-        {
-            get { return baseStamina_; }
-            set
-            {
-                baseStamina_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "base_attack" field.</summary>
-        public const int BaseAttackFieldNumber = 2;
-        private int baseAttack_;
-        public int BaseAttack
-        {
-            get { return baseAttack_; }
-            set
-            {
-                baseAttack_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "base_defense" field.</summary>
-        public const int BaseDefenseFieldNumber = 3;
-        private int baseDefense_;
-        public int BaseDefense
-        {
-            get { return baseDefense_; }
-            set
-            {
-                baseDefense_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "dodge_energy_delta" field.</summary>
-        public const int DodgeEnergyDeltaFieldNumber = 8;
-        private int dodgeEnergyDelta_;
-        public int DodgeEnergyDelta
-        {
-            get { return dodgeEnergyDelta_; }
-            set
-            {
-                dodgeEnergyDelta_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as StatsAttributes);
-        }
-
-        public bool Equals(StatsAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (BaseStamina != other.BaseStamina) return false;
-            if (BaseAttack != other.BaseAttack) return false;
-            if (BaseDefense != other.BaseDefense) return false;
-            if (DodgeEnergyDelta != other.DodgeEnergyDelta) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (BaseStamina != 0) hash ^= BaseStamina.GetHashCode();
-            if (BaseAttack != 0) hash ^= BaseAttack.GetHashCode();
-            if (BaseDefense != 0) hash ^= BaseDefense.GetHashCode();
-            if (DodgeEnergyDelta != 0) hash ^= DodgeEnergyDelta.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (BaseStamina != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(BaseStamina);
-            }
-            if (BaseAttack != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(BaseAttack);
-            }
-            if (BaseDefense != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(BaseDefense);
-            }
-            if (DodgeEnergyDelta != 0)
-            {
-                output.WriteRawTag(64);
-                output.WriteInt32(DodgeEnergyDelta);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (BaseStamina != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseStamina);
-            }
-            if (BaseAttack != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseAttack);
-            }
-            if (BaseDefense != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseDefense);
-            }
-            if (DodgeEnergyDelta != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DodgeEnergyDelta);
-            }
-            return size;
-        }
-
-        public void MergeFrom(StatsAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.BaseStamina != 0)
-            {
-                BaseStamina = other.BaseStamina;
-            }
-            if (other.BaseAttack != 0)
-            {
-                BaseAttack = other.BaseAttack;
-            }
-            if (other.BaseDefense != 0)
-            {
-                BaseDefense = other.BaseDefense;
-            }
-            if (other.DodgeEnergyDelta != 0)
-            {
-                DodgeEnergyDelta = other.DodgeEnergyDelta;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            BaseStamina = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            BaseAttack = input.ReadInt32();
-                            break;
-                        }
-                    case 24:
-                        {
-                            BaseDefense = input.ReadInt32();
-                            break;
-                        }
-                    case 64:
-                        {
-                            DodgeEnergyDelta = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class ItemSettings : pb::IMessage<ItemSettings>
-    {
-        private static readonly pb::MessageParser<ItemSettings> _parser = new pb::MessageParser<ItemSettings>(() => new ItemSettings());
-        public static pb::MessageParser<ItemSettings> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[83]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public ItemSettings()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public ItemSettings(ItemSettings other) : this()
-        {
-            itemId_ = other.itemId_;
-            itemType_ = other.itemType_;
-            category_ = other.category_;
-            dropFreq_ = other.dropFreq_;
-            dropTrainerLevel_ = other.dropTrainerLevel_;
-            Pokeball = other.pokeball_ != null ? other.Pokeball.Clone() : null;
-            Potion = other.potion_ != null ? other.Potion.Clone() : null;
-            Revive = other.revive_ != null ? other.Revive.Clone() : null;
-            Battle = other.battle_ != null ? other.Battle.Clone() : null;
-            Food = other.food_ != null ? other.Food.Clone() : null;
-            InventoryUpgrade = other.inventoryUpgrade_ != null ? other.InventoryUpgrade.Clone() : null;
-            XpBoost = other.xpBoost_ != null ? other.XpBoost.Clone() : null;
-            Incense = other.incense_ != null ? other.Incense.Clone() : null;
-            EggIncubator = other.eggIncubator_ != null ? other.EggIncubator.Clone() : null;
-            FortModifier = other.fortModifier_ != null ? other.FortModifier.Clone() : null;
-        }
-
-        public ItemSettings Clone()
-        {
-            return new ItemSettings(this);
-        }
-
-        /// <summary>Field number for the "item_id" field.</summary>
-        public const int ItemIdFieldNumber = 1;
-        private global::AllEnum.ItemId itemId_ = 0;
-        public global::AllEnum.ItemId ItemId
-        {
-            get { return itemId_; }
-            set
-            {
-                itemId_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item_type" field.</summary>
-        public const int ItemTypeFieldNumber = 2;
-        private global::AllEnum.ItemType itemType_ = 0;
-        public global::AllEnum.ItemType ItemType
-        {
-            get { return itemType_; }
-            set
-            {
-                itemType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "category" field.</summary>
-        public const int CategoryFieldNumber = 3;
-        private global::AllEnum.ItemCategory category_ = 0;
-        public global::AllEnum.ItemCategory Category
-        {
-            get { return category_; }
-            set
-            {
-                category_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "drop_freq" field.</summary>
-        public const int DropFreqFieldNumber = 4;
-        private float dropFreq_;
-        public float DropFreq
-        {
-            get { return dropFreq_; }
-            set
-            {
-                dropFreq_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "drop_trainer_level" field.</summary>
-        public const int DropTrainerLevelFieldNumber = 5;
-        private int dropTrainerLevel_;
-        public int DropTrainerLevel
-        {
-            get { return dropTrainerLevel_; }
-            set
-            {
-                dropTrainerLevel_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokeball" field.</summary>
-        public const int PokeballFieldNumber = 6;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes pokeball_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes Pokeball
-        {
-            get { return pokeball_; }
-            set
-            {
-                pokeball_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "potion" field.</summary>
-        public const int PotionFieldNumber = 7;
-        private global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes potion_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes Potion
-        {
-            get { return potion_; }
-            set
-            {
-                potion_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "revive" field.</summary>
-        public const int ReviveFieldNumber = 8;
-        private global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes revive_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes Revive
-        {
-            get { return revive_; }
-            set
-            {
-                revive_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "battle" field.</summary>
-        public const int BattleFieldNumber = 9;
-        private global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes battle_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes Battle
-        {
-            get { return battle_; }
-            set
-            {
-                battle_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "food" field.</summary>
-        public const int FoodFieldNumber = 10;
-        private global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes food_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes Food
-        {
-            get { return food_; }
-            set
-            {
-                food_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "inventory_upgrade" field.</summary>
-        public const int InventoryUpgradeFieldNumber = 11;
-        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes inventoryUpgrade_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes InventoryUpgrade
-        {
-            get { return inventoryUpgrade_; }
-            set
-            {
-                inventoryUpgrade_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "xp_boost" field.</summary>
-        public const int XpBoostFieldNumber = 12;
-        private global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes xpBoost_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes XpBoost
-        {
-            get { return xpBoost_; }
-            set
-            {
-                xpBoost_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "incense" field.</summary>
-        public const int IncenseFieldNumber = 13;
-        private global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes incense_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes Incense
-        {
-            get { return incense_; }
-            set
-            {
-                incense_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "egg_incubator" field.</summary>
-        public const int EggIncubatorFieldNumber = 14;
-        private global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes eggIncubator_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes EggIncubator
-        {
-            get { return eggIncubator_; }
-            set
-            {
-                eggIncubator_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "fort_modifier" field.</summary>
-        public const int FortModifierFieldNumber = 15;
-        private global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes fortModifier_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes FortModifier
-        {
-            get { return fortModifier_; }
-            set
-            {
-                fortModifier_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as ItemSettings);
-        }
-
-        public bool Equals(ItemSettings other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ItemId != other.ItemId) return false;
-            if (ItemType != other.ItemType) return false;
-            if (Category != other.Category) return false;
-            if (DropFreq != other.DropFreq) return false;
-            if (DropTrainerLevel != other.DropTrainerLevel) return false;
-            if (!object.Equals(Pokeball, other.Pokeball)) return false;
-            if (!object.Equals(Potion, other.Potion)) return false;
-            if (!object.Equals(Revive, other.Revive)) return false;
-            if (!object.Equals(Battle, other.Battle)) return false;
-            if (!object.Equals(Food, other.Food)) return false;
-            if (!object.Equals(InventoryUpgrade, other.InventoryUpgrade)) return false;
-            if (!object.Equals(XpBoost, other.XpBoost)) return false;
-            if (!object.Equals(Incense, other.Incense)) return false;
-            if (!object.Equals(EggIncubator, other.EggIncubator)) return false;
-            if (!object.Equals(FortModifier, other.FortModifier)) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ItemId != 0) hash ^= ItemId.GetHashCode();
-            if (ItemType != 0) hash ^= ItemType.GetHashCode();
-            if (Category != 0) hash ^= Category.GetHashCode();
-            if (DropFreq != 0F) hash ^= DropFreq.GetHashCode();
-            if (DropTrainerLevel != 0) hash ^= DropTrainerLevel.GetHashCode();
-            if (pokeball_ != null) hash ^= Pokeball.GetHashCode();
-            if (potion_ != null) hash ^= Potion.GetHashCode();
-            if (revive_ != null) hash ^= Revive.GetHashCode();
-            if (battle_ != null) hash ^= Battle.GetHashCode();
-            if (food_ != null) hash ^= Food.GetHashCode();
-            if (inventoryUpgrade_ != null) hash ^= InventoryUpgrade.GetHashCode();
-            if (xpBoost_ != null) hash ^= XpBoost.GetHashCode();
-            if (incense_ != null) hash ^= Incense.GetHashCode();
-            if (eggIncubator_ != null) hash ^= EggIncubator.GetHashCode();
-            if (fortModifier_ != null) hash ^= FortModifier.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ItemId != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)ItemId);
-            }
-            if (ItemType != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)ItemType);
-            }
-            if (Category != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteEnum((int)Category);
-            }
-            if (DropFreq != 0F)
-            {
-                output.WriteRawTag(37);
-                output.WriteFloat(DropFreq);
-            }
-            if (DropTrainerLevel != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(DropTrainerLevel);
-            }
-            if (pokeball_ != null)
-            {
-                output.WriteRawTag(50);
-                output.WriteMessage(Pokeball);
-            }
-            if (potion_ != null)
-            {
-                output.WriteRawTag(58);
-                output.WriteMessage(Potion);
-            }
-            if (revive_ != null)
-            {
-                output.WriteRawTag(66);
-                output.WriteMessage(Revive);
-            }
-            if (battle_ != null)
-            {
-                output.WriteRawTag(74);
-                output.WriteMessage(Battle);
-            }
-            if (food_ != null)
-            {
-                output.WriteRawTag(82);
-                output.WriteMessage(Food);
-            }
-            if (inventoryUpgrade_ != null)
-            {
-                output.WriteRawTag(90);
-                output.WriteMessage(InventoryUpgrade);
-            }
-            if (xpBoost_ != null)
-            {
-                output.WriteRawTag(98);
-                output.WriteMessage(XpBoost);
-            }
-            if (incense_ != null)
-            {
-                output.WriteRawTag(106);
-                output.WriteMessage(Incense);
-            }
-            if (eggIncubator_ != null)
-            {
-                output.WriteRawTag(114);
-                output.WriteMessage(EggIncubator);
-            }
-            if (fortModifier_ != null)
-            {
-                output.WriteRawTag(122);
-                output.WriteMessage(FortModifier);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ItemId != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
-            }
-            if (ItemType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemType);
-            }
-            if (Category != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Category);
-            }
-            if (DropFreq != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (DropTrainerLevel != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DropTrainerLevel);
-            }
-            if (pokeball_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Pokeball);
-            }
-            if (potion_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Potion);
-            }
-            if (revive_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Revive);
-            }
-            if (battle_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Battle);
-            }
-            if (food_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Food);
-            }
-            if (inventoryUpgrade_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventoryUpgrade);
-            }
-            if (xpBoost_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(XpBoost);
-            }
-            if (incense_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Incense);
-            }
-            if (eggIncubator_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(EggIncubator);
-            }
-            if (fortModifier_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(FortModifier);
-            }
-            return size;
-        }
-
-        public void MergeFrom(ItemSettings other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ItemId != 0)
-            {
-                ItemId = other.ItemId;
-            }
-            if (other.ItemType != 0)
-            {
-                ItemType = other.ItemType;
-            }
-            if (other.Category != 0)
-            {
-                Category = other.Category;
-            }
-            if (other.DropFreq != 0F)
-            {
-                DropFreq = other.DropFreq;
-            }
-            if (other.DropTrainerLevel != 0)
-            {
-                DropTrainerLevel = other.DropTrainerLevel;
-            }
-            if (other.pokeball_ != null)
-            {
-                if (pokeball_ == null)
-                {
-                    pokeball_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes();
-                }
-                Pokeball.MergeFrom(other.Pokeball);
-            }
-            if (other.potion_ != null)
-            {
-                if (potion_ == null)
-                {
-                    potion_ = new global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes();
-                }
-                Potion.MergeFrom(other.Potion);
-            }
-            if (other.revive_ != null)
-            {
-                if (revive_ == null)
-                {
-                    revive_ = new global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes();
-                }
-                Revive.MergeFrom(other.Revive);
-            }
-            if (other.battle_ != null)
-            {
-                if (battle_ == null)
-                {
-                    battle_ = new global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes();
-                }
-                Battle.MergeFrom(other.Battle);
-            }
-            if (other.food_ != null)
-            {
-                if (food_ == null)
-                {
-                    food_ = new global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes();
-                }
-                Food.MergeFrom(other.Food);
-            }
-            if (other.inventoryUpgrade_ != null)
-            {
-                if (inventoryUpgrade_ == null)
-                {
-                    inventoryUpgrade_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes();
-                }
-                InventoryUpgrade.MergeFrom(other.InventoryUpgrade);
-            }
-            if (other.xpBoost_ != null)
-            {
-                if (xpBoost_ == null)
-                {
-                    xpBoost_ = new global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes();
-                }
-                XpBoost.MergeFrom(other.XpBoost);
-            }
-            if (other.incense_ != null)
-            {
-                if (incense_ == null)
-                {
-                    incense_ = new global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes();
-                }
-                Incense.MergeFrom(other.Incense);
-            }
-            if (other.eggIncubator_ != null)
-            {
-                if (eggIncubator_ == null)
-                {
-                    eggIncubator_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes();
-                }
-                EggIncubator.MergeFrom(other.EggIncubator);
-            }
-            if (other.fortModifier_ != null)
-            {
-                if (fortModifier_ == null)
-                {
-                    fortModifier_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes();
-                }
-                FortModifier.MergeFrom(other.FortModifier);
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            itemId_ = (global::AllEnum.ItemId)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            itemType_ = (global::AllEnum.ItemType)input.ReadEnum();
-                            break;
-                        }
-                    case 24:
-                        {
-                            category_ = (global::AllEnum.ItemCategory)input.ReadEnum();
-                            break;
-                        }
-                    case 37:
-                        {
-                            DropFreq = input.ReadFloat();
-                            break;
-                        }
-                    case 40:
-                        {
-                            DropTrainerLevel = input.ReadInt32();
-                            break;
-                        }
-                    case 50:
-                        {
-                            if (pokeball_ == null)
-                            {
-                                pokeball_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes();
-                            }
-                            input.ReadMessage(pokeball_);
-                            break;
-                        }
-                    case 58:
-                        {
-                            if (potion_ == null)
-                            {
-                                potion_ = new global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes();
-                            }
-                            input.ReadMessage(potion_);
-                            break;
-                        }
-                    case 66:
-                        {
-                            if (revive_ == null)
-                            {
-                                revive_ = new global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes();
-                            }
-                            input.ReadMessage(revive_);
-                            break;
-                        }
-                    case 74:
-                        {
-                            if (battle_ == null)
-                            {
-                                battle_ = new global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes();
-                            }
-                            input.ReadMessage(battle_);
-                            break;
-                        }
-                    case 82:
-                        {
-                            if (food_ == null)
-                            {
-                                food_ = new global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes();
-                            }
-                            input.ReadMessage(food_);
-                            break;
-                        }
-                    case 90:
-                        {
-                            if (inventoryUpgrade_ == null)
-                            {
-                                inventoryUpgrade_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes();
-                            }
-                            input.ReadMessage(inventoryUpgrade_);
-                            break;
-                        }
-                    case 98:
-                        {
-                            if (xpBoost_ == null)
-                            {
-                                xpBoost_ = new global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes();
-                            }
-                            input.ReadMessage(xpBoost_);
-                            break;
-                        }
-                    case 106:
-                        {
-                            if (incense_ == null)
-                            {
-                                incense_ = new global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes();
-                            }
-                            input.ReadMessage(incense_);
-                            break;
-                        }
-                    case 114:
-                        {
-                            if (eggIncubator_ == null)
-                            {
-                                eggIncubator_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes();
-                            }
-                            input.ReadMessage(eggIncubator_);
-                            break;
-                        }
-                    case 122:
-                        {
-                            if (fortModifier_ == null)
-                            {
-                                fortModifier_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes();
-                            }
-                            input.ReadMessage(fortModifier_);
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class BattleAttributes : pb::IMessage<BattleAttributes>
-    {
-        private static readonly pb::MessageParser<BattleAttributes> _parser = new pb::MessageParser<BattleAttributes>(() => new BattleAttributes());
-        public static pb::MessageParser<BattleAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[84]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public BattleAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public BattleAttributes(BattleAttributes other) : this()
-        {
-            staPercent_ = other.staPercent_;
-        }
-
-        public BattleAttributes Clone()
-        {
-            return new BattleAttributes(this);
-        }
-
-        /// <summary>Field number for the "sta_percent" field.</summary>
-        public const int StaPercentFieldNumber = 1;
-        private float staPercent_;
-        public float StaPercent
-        {
-            get { return staPercent_; }
-            set
-            {
-                staPercent_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as BattleAttributes);
-        }
-
-        public bool Equals(BattleAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (StaPercent != other.StaPercent) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (StaPercent != 0F) hash ^= StaPercent.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (StaPercent != 0F)
-            {
-                output.WriteRawTag(13);
-                output.WriteFloat(StaPercent);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (StaPercent != 0F)
-            {
-                size += 1 + 4;
-            }
-            return size;
-        }
-
-        public void MergeFrom(BattleAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.StaPercent != 0F)
-            {
-                StaPercent = other.StaPercent;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 13:
-                        {
-                            StaPercent = input.ReadFloat();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EggIncubatorAttributes : pb::IMessage<EggIncubatorAttributes>
-    {
-        private static readonly pb::MessageParser<EggIncubatorAttributes> _parser = new pb::MessageParser<EggIncubatorAttributes>(() => new EggIncubatorAttributes());
-        public static pb::MessageParser<EggIncubatorAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[85]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EggIncubatorAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EggIncubatorAttributes(EggIncubatorAttributes other) : this()
-        {
-            incubatorType_ = other.incubatorType_;
-            uses_ = other.uses_;
-            distanceMultiplier_ = other.distanceMultiplier_;
-        }
-
-        public EggIncubatorAttributes Clone()
-        {
-            return new EggIncubatorAttributes(this);
-        }
-
-        /// <summary>Field number for the "incubator_type" field.</summary>
-        public const int IncubatorTypeFieldNumber = 1;
-        private global::AllEnum.EggIncubatorType incubatorType_ = 0;
-        public global::AllEnum.EggIncubatorType IncubatorType
-        {
-            get { return incubatorType_; }
-            set
-            {
-                incubatorType_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "uses" field.</summary>
-        public const int UsesFieldNumber = 2;
-        private int uses_;
-        public int Uses
-        {
-            get { return uses_; }
-            set
-            {
-                uses_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "distance_multiplier" field.</summary>
-        public const int DistanceMultiplierFieldNumber = 3;
-        private float distanceMultiplier_;
-        public float DistanceMultiplier
-        {
-            get { return distanceMultiplier_; }
-            set
-            {
-                distanceMultiplier_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EggIncubatorAttributes);
-        }
-
-        public bool Equals(EggIncubatorAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (IncubatorType != other.IncubatorType) return false;
-            if (Uses != other.Uses) return false;
-            if (DistanceMultiplier != other.DistanceMultiplier) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (IncubatorType != 0) hash ^= IncubatorType.GetHashCode();
-            if (Uses != 0) hash ^= Uses.GetHashCode();
-            if (DistanceMultiplier != 0F) hash ^= DistanceMultiplier.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (IncubatorType != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)IncubatorType);
-            }
-            if (Uses != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(Uses);
-            }
-            if (DistanceMultiplier != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(DistanceMultiplier);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (IncubatorType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)IncubatorType);
-            }
-            if (Uses != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Uses);
-            }
-            if (DistanceMultiplier != 0F)
-            {
-                size += 1 + 4;
-            }
-            return size;
-        }
-
-        public void MergeFrom(EggIncubatorAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.IncubatorType != 0)
-            {
-                IncubatorType = other.IncubatorType;
-            }
-            if (other.Uses != 0)
-            {
-                Uses = other.Uses;
-            }
-            if (other.DistanceMultiplier != 0F)
-            {
-                DistanceMultiplier = other.DistanceMultiplier;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            incubatorType_ = (global::AllEnum.EggIncubatorType)input.ReadEnum();
-                            break;
-                        }
-                    case 16:
-                        {
-                            Uses = input.ReadInt32();
-                            break;
-                        }
-                    case 29:
-                        {
-                            DistanceMultiplier = input.ReadFloat();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class ExperienceBoostAttributes : pb::IMessage<ExperienceBoostAttributes>
-    {
-        private static readonly pb::MessageParser<ExperienceBoostAttributes> _parser = new pb::MessageParser<ExperienceBoostAttributes>(() => new ExperienceBoostAttributes());
-        public static pb::MessageParser<ExperienceBoostAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[86]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public ExperienceBoostAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public ExperienceBoostAttributes(ExperienceBoostAttributes other) : this()
-        {
-            xpMultiplier_ = other.xpMultiplier_;
-            boostDurationMs_ = other.boostDurationMs_;
-        }
-
-        public ExperienceBoostAttributes Clone()
-        {
-            return new ExperienceBoostAttributes(this);
-        }
-
-        /// <summary>Field number for the "xp_multiplier" field.</summary>
-        public const int XpMultiplierFieldNumber = 1;
-        private float xpMultiplier_;
-        public float XpMultiplier
-        {
-            get { return xpMultiplier_; }
-            set
-            {
-                xpMultiplier_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "boost_duration_ms" field.</summary>
-        public const int BoostDurationMsFieldNumber = 2;
-        private int boostDurationMs_;
-        public int BoostDurationMs
-        {
-            get { return boostDurationMs_; }
-            set
-            {
-                boostDurationMs_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as ExperienceBoostAttributes);
-        }
-
-        public bool Equals(ExperienceBoostAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (XpMultiplier != other.XpMultiplier) return false;
-            if (BoostDurationMs != other.BoostDurationMs) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (XpMultiplier != 0F) hash ^= XpMultiplier.GetHashCode();
-            if (BoostDurationMs != 0) hash ^= BoostDurationMs.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (XpMultiplier != 0F)
-            {
-                output.WriteRawTag(13);
-                output.WriteFloat(XpMultiplier);
-            }
-            if (BoostDurationMs != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(BoostDurationMs);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (XpMultiplier != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (BoostDurationMs != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BoostDurationMs);
-            }
-            return size;
-        }
-
-        public void MergeFrom(ExperienceBoostAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.XpMultiplier != 0F)
-            {
-                XpMultiplier = other.XpMultiplier;
-            }
-            if (other.BoostDurationMs != 0)
-            {
-                BoostDurationMs = other.BoostDurationMs;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 13:
-                        {
-                            XpMultiplier = input.ReadFloat();
-                            break;
-                        }
-                    case 16:
-                        {
-                            BoostDurationMs = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FoodAttributes : pb::IMessage<FoodAttributes>
-    {
-        private static readonly pb::MessageParser<FoodAttributes> _parser = new pb::MessageParser<FoodAttributes>(() => new FoodAttributes());
-        public static pb::MessageParser<FoodAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[87]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FoodAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FoodAttributes(FoodAttributes other) : this()
-        {
-            itemEffect_ = other.itemEffect_.Clone();
-            itemEffectPercent_ = other.itemEffectPercent_.Clone();
-            growthPercent_ = other.growthPercent_;
-        }
-
-        public FoodAttributes Clone()
-        {
-            return new FoodAttributes(this);
-        }
-
-        /// <summary>Field number for the "item_effect" field.</summary>
-        public const int ItemEffectFieldNumber = 1;
-        private static readonly pb::FieldCodec<global::AllEnum.ItemEffect> _repeated_itemEffect_codec
-            = pb::FieldCodec.ForEnum(10, x => (int)x, x => (global::AllEnum.ItemEffect)x);
-        private readonly pbc::RepeatedField<global::AllEnum.ItemEffect> itemEffect_ = new pbc::RepeatedField<global::AllEnum.ItemEffect>();
-        public pbc::RepeatedField<global::AllEnum.ItemEffect> ItemEffect
-        {
-            get { return itemEffect_; }
-        }
-
-        /// <summary>Field number for the "item_effect_percent" field.</summary>
-        public const int ItemEffectPercentFieldNumber = 2;
-        private static readonly pb::FieldCodec<float> _repeated_itemEffectPercent_codec
-            = pb::FieldCodec.ForFloat(18);
-        private readonly pbc::RepeatedField<float> itemEffectPercent_ = new pbc::RepeatedField<float>();
-        public pbc::RepeatedField<float> ItemEffectPercent
-        {
-            get { return itemEffectPercent_; }
-        }
-
-        /// <summary>Field number for the "growth_percent" field.</summary>
-        public const int GrowthPercentFieldNumber = 3;
-        private float growthPercent_;
-        public float GrowthPercent
-        {
-            get { return growthPercent_; }
-            set
-            {
-                growthPercent_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FoodAttributes);
-        }
-
-        public bool Equals(FoodAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (!itemEffect_.Equals(other.itemEffect_)) return false;
-            if (!itemEffectPercent_.Equals(other.itemEffectPercent_)) return false;
-            if (GrowthPercent != other.GrowthPercent) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            hash ^= itemEffect_.GetHashCode();
-            hash ^= itemEffectPercent_.GetHashCode();
-            if (GrowthPercent != 0F) hash ^= GrowthPercent.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            itemEffect_.WriteTo(output, _repeated_itemEffect_codec);
-            itemEffectPercent_.WriteTo(output, _repeated_itemEffectPercent_codec);
-            if (GrowthPercent != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(GrowthPercent);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            size += itemEffect_.CalculateSize(_repeated_itemEffect_codec);
-            size += itemEffectPercent_.CalculateSize(_repeated_itemEffectPercent_codec);
-            if (GrowthPercent != 0F)
-            {
-                size += 1 + 4;
-            }
-            return size;
-        }
-
-        public void MergeFrom(FoodAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            itemEffect_.Add(other.itemEffect_);
-            itemEffectPercent_.Add(other.itemEffectPercent_);
-            if (other.GrowthPercent != 0F)
-            {
-                GrowthPercent = other.GrowthPercent;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 10:
-                    case 8:
-                        {
-                            itemEffect_.AddEntriesFrom(input, _repeated_itemEffect_codec);
-                            break;
-                        }
-                    case 18:
-                    case 21:
-                        {
-                            itemEffectPercent_.AddEntriesFrom(input, _repeated_itemEffectPercent_codec);
-                            break;
-                        }
-                    case 29:
-                        {
-                            GrowthPercent = input.ReadFloat();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class FortModifierAttributes : pb::IMessage<FortModifierAttributes>
-    {
-        private static readonly pb::MessageParser<FortModifierAttributes> _parser = new pb::MessageParser<FortModifierAttributes>(() => new FortModifierAttributes());
-        public static pb::MessageParser<FortModifierAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[88]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public FortModifierAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public FortModifierAttributes(FortModifierAttributes other) : this()
-        {
-            modifierLifetimeSeconds_ = other.modifierLifetimeSeconds_;
-            troyDiskNumPokemonSpawned_ = other.troyDiskNumPokemonSpawned_;
-        }
-
-        public FortModifierAttributes Clone()
-        {
-            return new FortModifierAttributes(this);
-        }
-
-        /// <summary>Field number for the "modifier_lifetime_seconds" field.</summary>
-        public const int ModifierLifetimeSecondsFieldNumber = 1;
-        private int modifierLifetimeSeconds_;
-        public int ModifierLifetimeSeconds
-        {
-            get { return modifierLifetimeSeconds_; }
-            set
-            {
-                modifierLifetimeSeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "troy_disk_num_pokemon_spawned" field.</summary>
-        public const int TroyDiskNumPokemonSpawnedFieldNumber = 2;
-        private int troyDiskNumPokemonSpawned_;
-        public int TroyDiskNumPokemonSpawned
-        {
-            get { return troyDiskNumPokemonSpawned_; }
-            set
-            {
-                troyDiskNumPokemonSpawned_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as FortModifierAttributes);
-        }
-
-        public bool Equals(FortModifierAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ModifierLifetimeSeconds != other.ModifierLifetimeSeconds) return false;
-            if (TroyDiskNumPokemonSpawned != other.TroyDiskNumPokemonSpawned) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ModifierLifetimeSeconds != 0) hash ^= ModifierLifetimeSeconds.GetHashCode();
-            if (TroyDiskNumPokemonSpawned != 0) hash ^= TroyDiskNumPokemonSpawned.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ModifierLifetimeSeconds != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(ModifierLifetimeSeconds);
-            }
-            if (TroyDiskNumPokemonSpawned != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(TroyDiskNumPokemonSpawned);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ModifierLifetimeSeconds != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ModifierLifetimeSeconds);
-            }
-            if (TroyDiskNumPokemonSpawned != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TroyDiskNumPokemonSpawned);
-            }
-            return size;
-        }
-
-        public void MergeFrom(FortModifierAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ModifierLifetimeSeconds != 0)
-            {
-                ModifierLifetimeSeconds = other.ModifierLifetimeSeconds;
-            }
-            if (other.TroyDiskNumPokemonSpawned != 0)
-            {
-                TroyDiskNumPokemonSpawned = other.TroyDiskNumPokemonSpawned;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            ModifierLifetimeSeconds = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            TroyDiskNumPokemonSpawned = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class IncenseAttributes : pb::IMessage<IncenseAttributes>
-    {
-        private static readonly pb::MessageParser<IncenseAttributes> _parser = new pb::MessageParser<IncenseAttributes>(() => new IncenseAttributes());
-        public static pb::MessageParser<IncenseAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[89]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public IncenseAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public IncenseAttributes(IncenseAttributes other) : this()
-        {
-            incenseLifetimeSeconds_ = other.incenseLifetimeSeconds_;
-            pokemonType_ = other.pokemonType_.Clone();
-            pokemonIncenseTypeProbability_ = other.pokemonIncenseTypeProbability_;
-            standingTimeBetweenEncountersSeconds_ = other.standingTimeBetweenEncountersSeconds_;
-            movingTimeBetweenEncounterSeconds_ = other.movingTimeBetweenEncounterSeconds_;
-            distanceRequiredForShorterIntervalMeters_ = other.distanceRequiredForShorterIntervalMeters_;
-            pokemonAttractedLengthSec_ = other.pokemonAttractedLengthSec_;
-        }
-
-        public IncenseAttributes Clone()
-        {
-            return new IncenseAttributes(this);
-        }
-
-        /// <summary>Field number for the "incense_lifetime_seconds" field.</summary>
-        public const int IncenseLifetimeSecondsFieldNumber = 1;
-        private int incenseLifetimeSeconds_;
-        public int IncenseLifetimeSeconds
-        {
-            get { return incenseLifetimeSeconds_; }
-            set
-            {
-                incenseLifetimeSeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_type" field.</summary>
-        public const int PokemonTypeFieldNumber = 2;
-        private static readonly pb::FieldCodec<global::AllEnum.PokemonType> _repeated_pokemonType_codec
-            = pb::FieldCodec.ForEnum(18, x => (int)x, x => (global::AllEnum.PokemonType)x);
-        private readonly pbc::RepeatedField<global::AllEnum.PokemonType> pokemonType_ = new pbc::RepeatedField<global::AllEnum.PokemonType>();
-        public pbc::RepeatedField<global::AllEnum.PokemonType> PokemonType
-        {
-            get { return pokemonType_; }
-        }
-
-        /// <summary>Field number for the "pokemon_incense_type_probability" field.</summary>
-        public const int PokemonIncenseTypeProbabilityFieldNumber = 3;
-        private float pokemonIncenseTypeProbability_;
-        public float PokemonIncenseTypeProbability
-        {
-            get { return pokemonIncenseTypeProbability_; }
-            set
-            {
-                pokemonIncenseTypeProbability_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "standing_time_between_encounters_seconds" field.</summary>
-        public const int StandingTimeBetweenEncountersSecondsFieldNumber = 4;
-        private int standingTimeBetweenEncountersSeconds_;
-        public int StandingTimeBetweenEncountersSeconds
-        {
-            get { return standingTimeBetweenEncountersSeconds_; }
-            set
-            {
-                standingTimeBetweenEncountersSeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "moving_time_between_encounter_seconds" field.</summary>
-        public const int MovingTimeBetweenEncounterSecondsFieldNumber = 5;
-        private int movingTimeBetweenEncounterSeconds_;
-        public int MovingTimeBetweenEncounterSeconds
-        {
-            get { return movingTimeBetweenEncounterSeconds_; }
-            set
-            {
-                movingTimeBetweenEncounterSeconds_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "distance_required_for_shorter_interval_meters" field.</summary>
-        public const int DistanceRequiredForShorterIntervalMetersFieldNumber = 6;
-        private int distanceRequiredForShorterIntervalMeters_;
-        public int DistanceRequiredForShorterIntervalMeters
-        {
-            get { return distanceRequiredForShorterIntervalMeters_; }
-            set
-            {
-                distanceRequiredForShorterIntervalMeters_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "pokemon_attracted_length_sec" field.</summary>
-        public const int PokemonAttractedLengthSecFieldNumber = 7;
-        private int pokemonAttractedLengthSec_;
-        public int PokemonAttractedLengthSec
-        {
-            get { return pokemonAttractedLengthSec_; }
-            set
-            {
-                pokemonAttractedLengthSec_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as IncenseAttributes);
-        }
-
-        public bool Equals(IncenseAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (IncenseLifetimeSeconds != other.IncenseLifetimeSeconds) return false;
-            if (!pokemonType_.Equals(other.pokemonType_)) return false;
-            if (PokemonIncenseTypeProbability != other.PokemonIncenseTypeProbability) return false;
-            if (StandingTimeBetweenEncountersSeconds != other.StandingTimeBetweenEncountersSeconds) return false;
-            if (MovingTimeBetweenEncounterSeconds != other.MovingTimeBetweenEncounterSeconds) return false;
-            if (DistanceRequiredForShorterIntervalMeters != other.DistanceRequiredForShorterIntervalMeters) return false;
-            if (PokemonAttractedLengthSec != other.PokemonAttractedLengthSec) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (IncenseLifetimeSeconds != 0) hash ^= IncenseLifetimeSeconds.GetHashCode();
-            hash ^= pokemonType_.GetHashCode();
-            if (PokemonIncenseTypeProbability != 0F) hash ^= PokemonIncenseTypeProbability.GetHashCode();
-            if (StandingTimeBetweenEncountersSeconds != 0) hash ^= StandingTimeBetweenEncountersSeconds.GetHashCode();
-            if (MovingTimeBetweenEncounterSeconds != 0) hash ^= MovingTimeBetweenEncounterSeconds.GetHashCode();
-            if (DistanceRequiredForShorterIntervalMeters != 0) hash ^= DistanceRequiredForShorterIntervalMeters.GetHashCode();
-            if (PokemonAttractedLengthSec != 0) hash ^= PokemonAttractedLengthSec.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (IncenseLifetimeSeconds != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(IncenseLifetimeSeconds);
-            }
-            pokemonType_.WriteTo(output, _repeated_pokemonType_codec);
-            if (PokemonIncenseTypeProbability != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(PokemonIncenseTypeProbability);
-            }
-            if (StandingTimeBetweenEncountersSeconds != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(StandingTimeBetweenEncountersSeconds);
-            }
-            if (MovingTimeBetweenEncounterSeconds != 0)
-            {
-                output.WriteRawTag(40);
-                output.WriteInt32(MovingTimeBetweenEncounterSeconds);
-            }
-            if (DistanceRequiredForShorterIntervalMeters != 0)
-            {
-                output.WriteRawTag(48);
-                output.WriteInt32(DistanceRequiredForShorterIntervalMeters);
-            }
-            if (PokemonAttractedLengthSec != 0)
-            {
-                output.WriteRawTag(56);
-                output.WriteInt32(PokemonAttractedLengthSec);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (IncenseLifetimeSeconds != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(IncenseLifetimeSeconds);
-            }
-            size += pokemonType_.CalculateSize(_repeated_pokemonType_codec);
-            if (PokemonIncenseTypeProbability != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (StandingTimeBetweenEncountersSeconds != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(StandingTimeBetweenEncountersSeconds);
-            }
-            if (MovingTimeBetweenEncounterSeconds != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MovingTimeBetweenEncounterSeconds);
-            }
-            if (DistanceRequiredForShorterIntervalMeters != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DistanceRequiredForShorterIntervalMeters);
-            }
-            if (PokemonAttractedLengthSec != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokemonAttractedLengthSec);
-            }
-            return size;
-        }
-
-        public void MergeFrom(IncenseAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.IncenseLifetimeSeconds != 0)
-            {
-                IncenseLifetimeSeconds = other.IncenseLifetimeSeconds;
-            }
-            pokemonType_.Add(other.pokemonType_);
-            if (other.PokemonIncenseTypeProbability != 0F)
-            {
-                PokemonIncenseTypeProbability = other.PokemonIncenseTypeProbability;
-            }
-            if (other.StandingTimeBetweenEncountersSeconds != 0)
-            {
-                StandingTimeBetweenEncountersSeconds = other.StandingTimeBetweenEncountersSeconds;
-            }
-            if (other.MovingTimeBetweenEncounterSeconds != 0)
-            {
-                MovingTimeBetweenEncounterSeconds = other.MovingTimeBetweenEncounterSeconds;
-            }
-            if (other.DistanceRequiredForShorterIntervalMeters != 0)
-            {
-                DistanceRequiredForShorterIntervalMeters = other.DistanceRequiredForShorterIntervalMeters;
-            }
-            if (other.PokemonAttractedLengthSec != 0)
-            {
-                PokemonAttractedLengthSec = other.PokemonAttractedLengthSec;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            IncenseLifetimeSeconds = input.ReadInt32();
-                            break;
-                        }
-                    case 18:
-                    case 16:
-                        {
-                            pokemonType_.AddEntriesFrom(input, _repeated_pokemonType_codec);
-                            break;
-                        }
-                    case 29:
-                        {
-                            PokemonIncenseTypeProbability = input.ReadFloat();
-                            break;
-                        }
-                    case 32:
-                        {
-                            StandingTimeBetweenEncountersSeconds = input.ReadInt32();
-                            break;
-                        }
-                    case 40:
-                        {
-                            MovingTimeBetweenEncounterSeconds = input.ReadInt32();
-                            break;
-                        }
-                    case 48:
-                        {
-                            DistanceRequiredForShorterIntervalMeters = input.ReadInt32();
-                            break;
-                        }
-                    case 56:
-                        {
-                            PokemonAttractedLengthSec = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class InventoryUpgradeAttributes : pb::IMessage<InventoryUpgradeAttributes>
-    {
-        private static readonly pb::MessageParser<InventoryUpgradeAttributes> _parser = new pb::MessageParser<InventoryUpgradeAttributes>(() => new InventoryUpgradeAttributes());
-        public static pb::MessageParser<InventoryUpgradeAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[90]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public InventoryUpgradeAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public InventoryUpgradeAttributes(InventoryUpgradeAttributes other) : this()
-        {
-            additionalStorage_ = other.additionalStorage_;
-            upgradeType_ = other.upgradeType_;
-        }
-
-        public InventoryUpgradeAttributes Clone()
-        {
-            return new InventoryUpgradeAttributes(this);
-        }
-
-        /// <summary>Field number for the "additional_storage" field.</summary>
-        public const int AdditionalStorageFieldNumber = 1;
-        private int additionalStorage_;
-        public int AdditionalStorage
-        {
-            get { return additionalStorage_; }
-            set
-            {
-                additionalStorage_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "upgrade_type" field.</summary>
-        public const int UpgradeTypeFieldNumber = 2;
-        private global::AllEnum.InventoryUpgradeType upgradeType_ = 0;
-        public global::AllEnum.InventoryUpgradeType UpgradeType
-        {
-            get { return upgradeType_; }
-            set
-            {
-                upgradeType_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as InventoryUpgradeAttributes);
-        }
-
-        public bool Equals(InventoryUpgradeAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (AdditionalStorage != other.AdditionalStorage) return false;
-            if (UpgradeType != other.UpgradeType) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (AdditionalStorage != 0) hash ^= AdditionalStorage.GetHashCode();
-            if (UpgradeType != 0) hash ^= UpgradeType.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (AdditionalStorage != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(AdditionalStorage);
-            }
-            if (UpgradeType != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteEnum((int)UpgradeType);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (AdditionalStorage != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(AdditionalStorage);
-            }
-            if (UpgradeType != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)UpgradeType);
-            }
-            return size;
-        }
-
-        public void MergeFrom(InventoryUpgradeAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.AdditionalStorage != 0)
-            {
-                AdditionalStorage = other.AdditionalStorage;
-            }
-            if (other.UpgradeType != 0)
-            {
-                UpgradeType = other.UpgradeType;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            AdditionalStorage = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            upgradeType_ = (global::AllEnum.InventoryUpgradeType)input.ReadEnum();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PokeballAttributes : pb::IMessage<PokeballAttributes>
-    {
-        private static readonly pb::MessageParser<PokeballAttributes> _parser = new pb::MessageParser<PokeballAttributes>(() => new PokeballAttributes());
-        public static pb::MessageParser<PokeballAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[91]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PokeballAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PokeballAttributes(PokeballAttributes other) : this()
-        {
-            itemEffect_ = other.itemEffect_;
-            captureMulti_ = other.captureMulti_;
-            captureMultiEffect_ = other.captureMultiEffect_;
-            itemEffectMod_ = other.itemEffectMod_;
-        }
-
-        public PokeballAttributes Clone()
-        {
-            return new PokeballAttributes(this);
-        }
-
-        /// <summary>Field number for the "item_effect" field.</summary>
-        public const int ItemEffectFieldNumber = 1;
-        private global::AllEnum.ItemEffect itemEffect_ = 0;
-        public global::AllEnum.ItemEffect ItemEffect
-        {
-            get { return itemEffect_; }
-            set
-            {
-                itemEffect_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "capture_multi" field.</summary>
-        public const int CaptureMultiFieldNumber = 2;
-        private float captureMulti_;
-        public float CaptureMulti
-        {
-            get { return captureMulti_; }
-            set
-            {
-                captureMulti_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "capture_multi_effect" field.</summary>
-        public const int CaptureMultiEffectFieldNumber = 3;
-        private float captureMultiEffect_;
-        public float CaptureMultiEffect
-        {
-            get { return captureMultiEffect_; }
-            set
-            {
-                captureMultiEffect_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "item_effect_mod" field.</summary>
-        public const int ItemEffectModFieldNumber = 4;
-        private float itemEffectMod_;
-        public float ItemEffectMod
-        {
-            get { return itemEffectMod_; }
-            set
-            {
-                itemEffectMod_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PokeballAttributes);
-        }
-
-        public bool Equals(PokeballAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (ItemEffect != other.ItemEffect) return false;
-            if (CaptureMulti != other.CaptureMulti) return false;
-            if (CaptureMultiEffect != other.CaptureMultiEffect) return false;
-            if (ItemEffectMod != other.ItemEffectMod) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (ItemEffect != 0) hash ^= ItemEffect.GetHashCode();
-            if (CaptureMulti != 0F) hash ^= CaptureMulti.GetHashCode();
-            if (CaptureMultiEffect != 0F) hash ^= CaptureMultiEffect.GetHashCode();
-            if (ItemEffectMod != 0F) hash ^= ItemEffectMod.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (ItemEffect != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)ItemEffect);
-            }
-            if (CaptureMulti != 0F)
-            {
-                output.WriteRawTag(21);
-                output.WriteFloat(CaptureMulti);
-            }
-            if (CaptureMultiEffect != 0F)
-            {
-                output.WriteRawTag(29);
-                output.WriteFloat(CaptureMultiEffect);
-            }
-            if (ItemEffectMod != 0F)
-            {
-                output.WriteRawTag(37);
-                output.WriteFloat(ItemEffectMod);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (ItemEffect != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemEffect);
-            }
-            if (CaptureMulti != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (CaptureMultiEffect != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (ItemEffectMod != 0F)
-            {
-                size += 1 + 4;
-            }
-            return size;
-        }
-
-        public void MergeFrom(PokeballAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.ItemEffect != 0)
-            {
-                ItemEffect = other.ItemEffect;
-            }
-            if (other.CaptureMulti != 0F)
-            {
-                CaptureMulti = other.CaptureMulti;
-            }
-            if (other.CaptureMultiEffect != 0F)
-            {
-                CaptureMultiEffect = other.CaptureMultiEffect;
-            }
-            if (other.ItemEffectMod != 0F)
-            {
-                ItemEffectMod = other.ItemEffectMod;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            itemEffect_ = (global::AllEnum.ItemEffect)input.ReadEnum();
-                            break;
-                        }
-                    case 21:
-                        {
-                            CaptureMulti = input.ReadFloat();
-                            break;
-                        }
-                    case 29:
-                        {
-                            CaptureMultiEffect = input.ReadFloat();
-                            break;
-                        }
-                    case 37:
-                        {
-                            ItemEffectMod = input.ReadFloat();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class PotionAttributes : pb::IMessage<PotionAttributes>
-    {
-        private static readonly pb::MessageParser<PotionAttributes> _parser = new pb::MessageParser<PotionAttributes>(() => new PotionAttributes());
-        public static pb::MessageParser<PotionAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[92]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public PotionAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public PotionAttributes(PotionAttributes other) : this()
-        {
-            staPercent_ = other.staPercent_;
-            staAmount_ = other.staAmount_;
-        }
-
-        public PotionAttributes Clone()
-        {
-            return new PotionAttributes(this);
-        }
-
-        /// <summary>Field number for the "sta_percent" field.</summary>
-        public const int StaPercentFieldNumber = 1;
-        private float staPercent_;
-        public float StaPercent
-        {
-            get { return staPercent_; }
-            set
-            {
-                staPercent_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "sta_amount" field.</summary>
-        public const int StaAmountFieldNumber = 2;
-        private int staAmount_;
-        public int StaAmount
-        {
-            get { return staAmount_; }
-            set
-            {
-                staAmount_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as PotionAttributes);
-        }
-
-        public bool Equals(PotionAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (StaPercent != other.StaPercent) return false;
-            if (StaAmount != other.StaAmount) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (StaPercent != 0F) hash ^= StaPercent.GetHashCode();
-            if (StaAmount != 0) hash ^= StaAmount.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (StaPercent != 0F)
-            {
-                output.WriteRawTag(13);
-                output.WriteFloat(StaPercent);
-            }
-            if (StaAmount != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(StaAmount);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (StaPercent != 0F)
-            {
-                size += 1 + 4;
-            }
-            if (StaAmount != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(StaAmount);
-            }
-            return size;
-        }
-
-        public void MergeFrom(PotionAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.StaPercent != 0F)
-            {
-                StaPercent = other.StaPercent;
-            }
-            if (other.StaAmount != 0)
-            {
-                StaAmount = other.StaAmount;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 13:
-                        {
-                            StaPercent = input.ReadFloat();
-                            break;
-                        }
-                    case 16:
-                        {
-                            StaAmount = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class ReviveAttributes : pb::IMessage<ReviveAttributes>
-    {
-        private static readonly pb::MessageParser<ReviveAttributes> _parser = new pb::MessageParser<ReviveAttributes>(() => new ReviveAttributes());
-        public static pb::MessageParser<ReviveAttributes> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[93]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public ReviveAttributes()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public ReviveAttributes(ReviveAttributes other) : this()
-        {
-            staPercent_ = other.staPercent_;
-        }
-
-        public ReviveAttributes Clone()
-        {
-            return new ReviveAttributes(this);
-        }
-
-        /// <summary>Field number for the "sta_percent" field.</summary>
-        public const int StaPercentFieldNumber = 1;
-        private float staPercent_;
-        public float StaPercent
-        {
-            get { return staPercent_; }
-            set
-            {
-                staPercent_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as ReviveAttributes);
-        }
-
-        public bool Equals(ReviveAttributes other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (StaPercent != other.StaPercent) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (StaPercent != 0F) hash ^= StaPercent.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (StaPercent != 0F)
-            {
-                output.WriteRawTag(13);
-                output.WriteFloat(StaPercent);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (StaPercent != 0F)
-            {
-                size += 1 + 4;
-            }
-            return size;
-        }
-
-        public void MergeFrom(ReviveAttributes other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.StaPercent != 0F)
-            {
-                StaPercent = other.StaPercent;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 13:
-                        {
-                            StaPercent = input.ReadFloat();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    /// <summary>
-    ///  POKEMON TRANSFER
-    /// </summary>
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class TransferPokemon : pb::IMessage<TransferPokemon>
-    {
-        private static readonly pb::MessageParser<TransferPokemon> _parser = new pb::MessageParser<TransferPokemon>(() => new TransferPokemon());
-        public static pb::MessageParser<TransferPokemon> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[94]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public TransferPokemon()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public TransferPokemon(TransferPokemon other) : this()
-        {
-            pokemonId_ = other.pokemonId_;
-        }
-
-        public TransferPokemon Clone()
-        {
-            return new TransferPokemon(this);
-        }
-
-        /// <summary>Field number for the "PokemonId" field.</summary>
-        public const int PokemonIdFieldNumber = 1;
-        private ulong pokemonId_;
-        public ulong PokemonId
-        {
-            get { return pokemonId_; }
-            set
-            {
-                pokemonId_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as TransferPokemon);
-        }
-
-        public bool Equals(TransferPokemon other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (PokemonId != other.PokemonId) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (PokemonId != 0UL) hash ^= PokemonId.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (PokemonId != 0UL)
-            {
-                output.WriteRawTag(9);
-                output.WriteFixed64(PokemonId);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (PokemonId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(TransferPokemon other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.PokemonId != 0UL)
-            {
-                PokemonId = other.PokemonId;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            PokemonId = input.ReadFixed64();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class TransferPokemonOut : pb::IMessage<TransferPokemonOut>
-    {
-        private static readonly pb::MessageParser<TransferPokemonOut> _parser = new pb::MessageParser<TransferPokemonOut>(() => new TransferPokemonOut());
-        public static pb::MessageParser<TransferPokemonOut> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[95]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public TransferPokemonOut()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public TransferPokemonOut(TransferPokemonOut other) : this()
-        {
-            status_ = other.status_;
-            candyAwarded_ = other.candyAwarded_;
-        }
-
-        public TransferPokemonOut Clone()
-        {
-            return new TransferPokemonOut(this);
-        }
-
-        /// <summary>Field number for the "Status" field.</summary>
-        public const int StatusFieldNumber = 1;
-        private int status_;
-        public int Status
-        {
-            get { return status_; }
-            set
-            {
-                status_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "CandyAwarded" field.</summary>
-        public const int CandyAwardedFieldNumber = 2;
-        private int candyAwarded_;
-        public int CandyAwarded
-        {
-            get { return candyAwarded_; }
-            set
-            {
-                candyAwarded_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as TransferPokemonOut);
-        }
-
-        public bool Equals(TransferPokemonOut other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Status != other.Status) return false;
-            if (CandyAwarded != other.CandyAwarded) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Status != 0) hash ^= Status.GetHashCode();
-            if (CandyAwarded != 0) hash ^= CandyAwarded.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Status != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteInt32(Status);
-            }
-            if (CandyAwarded != 0)
-            {
-                output.WriteRawTag(16);
-                output.WriteInt32(CandyAwarded);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Status != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Status);
-            }
-            if (CandyAwarded != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(CandyAwarded);
-            }
-            return size;
-        }
-
-        public void MergeFrom(TransferPokemonOut other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Status != 0)
-            {
-                Status = other.Status;
-            }
-            if (other.CandyAwarded != 0)
-            {
-                CandyAwarded = other.CandyAwarded;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            Status = input.ReadInt32();
-                            break;
-                        }
-                    case 16:
-                        {
-                            CandyAwarded = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    /// <summary>
-    ///  EVOLVE
-    /// </summary>
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EvolvePokemon : pb::IMessage<EvolvePokemon>
-    {
-        private static readonly pb::MessageParser<EvolvePokemon> _parser = new pb::MessageParser<EvolvePokemon>(() => new EvolvePokemon());
-        public static pb::MessageParser<EvolvePokemon> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[96]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EvolvePokemon()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EvolvePokemon(EvolvePokemon other) : this()
-        {
-            pokemonId_ = other.pokemonId_;
-        }
-
-        public EvolvePokemon Clone()
-        {
-            return new EvolvePokemon(this);
-        }
-
-        /// <summary>Field number for the "PokemonId" field.</summary>
-        public const int PokemonIdFieldNumber = 1;
-        private ulong pokemonId_;
-        public ulong PokemonId
-        {
-            get { return pokemonId_; }
-            set
-            {
-                pokemonId_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EvolvePokemon);
-        }
-
-        public bool Equals(EvolvePokemon other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (PokemonId != other.PokemonId) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (PokemonId != 0UL) hash ^= PokemonId.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (PokemonId != 0UL)
-            {
-                output.WriteRawTag(9);
-                output.WriteFixed64(PokemonId);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (PokemonId != 0UL)
-            {
-                size += 1 + 8;
-            }
-            return size;
-        }
-
-        public void MergeFrom(EvolvePokemon other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.PokemonId != 0UL)
-            {
-                PokemonId = other.PokemonId;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 9:
-                        {
-                            PokemonId = input.ReadFixed64();
-                            break;
-                        }
-                }
-            }
-        }
-
-    }
-
-    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-    public sealed partial class EvolvePokemonOut : pb::IMessage<EvolvePokemonOut>
-    {
-        private static readonly pb::MessageParser<EvolvePokemonOut> _parser = new pb::MessageParser<EvolvePokemonOut>(() => new EvolvePokemonOut());
-        public static pb::MessageParser<EvolvePokemonOut> Parser { get { return _parser; } }
-
-        public static pbr::MessageDescriptor Descriptor
-        {
-            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[97]; }
-        }
-
-        pbr::MessageDescriptor pb::IMessage.Descriptor
-        {
-            get { return Descriptor; }
-        }
-
-        public EvolvePokemonOut()
-        {
-            OnConstruction();
-        }
-
-        partial void OnConstruction();
-
-        public EvolvePokemonOut(EvolvePokemonOut other) : this()
-        {
-            result_ = other.result_;
-            EvolvedPokemon = other.evolvedPokemon_ != null ? other.EvolvedPokemon.Clone() : null;
-            expAwarded_ = other.expAwarded_;
-            candyAwarded_ = other.candyAwarded_;
-        }
-
-        public EvolvePokemonOut Clone()
-        {
-            return new EvolvePokemonOut(this);
-        }
-
-        /// <summary>Field number for the "Result" field.</summary>
-        public const int ResultFieldNumber = 1;
-        private global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Types.EvolvePokemonStatus result_ = 0;
-        public global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Types.EvolvePokemonStatus Result
-        {
-            get { return result_; }
-            set
-            {
-                result_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "EvolvedPokemon" field.</summary>
-        public const int EvolvedPokemonFieldNumber = 2;
-        private global::PokemonGo.RocketAPI.GeneratedCode.Pokemon evolvedPokemon_;
-        public global::PokemonGo.RocketAPI.GeneratedCode.Pokemon EvolvedPokemon
-        {
-            get { return evolvedPokemon_; }
-            set
-            {
-                evolvedPokemon_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "ExpAwarded" field.</summary>
-        public const int ExpAwardedFieldNumber = 3;
-        private int expAwarded_;
-        public int ExpAwarded
-        {
-            get { return expAwarded_; }
-            set
-            {
-                expAwarded_ = value;
-            }
-        }
-
-        /// <summary>Field number for the "CandyAwarded" field.</summary>
-        public const int CandyAwardedFieldNumber = 4;
-        private int candyAwarded_;
-        public int CandyAwarded
-        {
-            get { return candyAwarded_; }
-            set
-            {
-                candyAwarded_ = value;
-            }
-        }
-
-        public override bool Equals(object other)
-        {
-            return Equals(other as EvolvePokemonOut);
-        }
-
-        public bool Equals(EvolvePokemonOut other)
-        {
-            if (ReferenceEquals(other, null))
-            {
-                return false;
-            }
-            if (ReferenceEquals(other, this))
-            {
-                return true;
-            }
-            if (Result != other.Result) return false;
-            if (!object.Equals(EvolvedPokemon, other.EvolvedPokemon)) return false;
-            if (ExpAwarded != other.ExpAwarded) return false;
-            if (CandyAwarded != other.CandyAwarded) return false;
-            return true;
-        }
-
-        public override int GetHashCode()
-        {
-            int hash = 1;
-            if (Result != 0) hash ^= Result.GetHashCode();
-            if (evolvedPokemon_ != null) hash ^= EvolvedPokemon.GetHashCode();
-            if (ExpAwarded != 0) hash ^= ExpAwarded.GetHashCode();
-            if (CandyAwarded != 0) hash ^= CandyAwarded.GetHashCode();
-            return hash;
-        }
-
-        public override string ToString()
-        {
-            return pb::JsonFormatter.ToDiagnosticString(this);
-        }
-
-        public void WriteTo(pb::CodedOutputStream output)
-        {
-            if (Result != 0)
-            {
-                output.WriteRawTag(8);
-                output.WriteEnum((int)Result);
-            }
-            if (evolvedPokemon_ != null)
-            {
-                output.WriteRawTag(18);
-                output.WriteMessage(EvolvedPokemon);
-            }
-            if (ExpAwarded != 0)
-            {
-                output.WriteRawTag(24);
-                output.WriteInt32(ExpAwarded);
-            }
-            if (CandyAwarded != 0)
-            {
-                output.WriteRawTag(32);
-                output.WriteInt32(CandyAwarded);
-            }
-        }
-
-        public int CalculateSize()
-        {
-            int size = 0;
-            if (Result != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Result);
-            }
-            if (evolvedPokemon_ != null)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeMessageSize(EvolvedPokemon);
-            }
-            if (ExpAwarded != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ExpAwarded);
-            }
-            if (CandyAwarded != 0)
-            {
-                size += 1 + pb::CodedOutputStream.ComputeInt32Size(CandyAwarded);
-            }
-            return size;
-        }
-
-        public void MergeFrom(EvolvePokemonOut other)
-        {
-            if (other == null)
-            {
-                return;
-            }
-            if (other.Result != 0)
-            {
-                Result = other.Result;
-            }
-            if (other.evolvedPokemon_ != null)
-            {
-                if (evolvedPokemon_ == null)
-                {
-                    evolvedPokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.Pokemon();
-                }
-                EvolvedPokemon.MergeFrom(other.EvolvedPokemon);
-            }
-            if (other.ExpAwarded != 0)
-            {
-                ExpAwarded = other.ExpAwarded;
-            }
-            if (other.CandyAwarded != 0)
-            {
-                CandyAwarded = other.CandyAwarded;
-            }
-        }
-
-        public void MergeFrom(pb::CodedInputStream input)
-        {
-            uint tag;
-            while ((tag = input.ReadTag()) != 0)
-            {
-                switch (tag)
-                {
-                    default:
-                        input.SkipLastField();
-                        break;
-                    case 8:
-                        {
-                            result_ = (global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Types.EvolvePokemonStatus)input.ReadEnum();
-                            break;
-                        }
-                    case 18:
-                        {
-                            if (evolvedPokemon_ == null)
-                            {
-                                evolvedPokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.Pokemon();
-                            }
-                            input.ReadMessage(evolvedPokemon_);
-                            break;
-                        }
-                    case 24:
-                        {
-                            ExpAwarded = input.ReadInt32();
-                            break;
-                        }
-                    case 32:
-                        {
-                            CandyAwarded = input.ReadInt32();
-                            break;
-                        }
-                }
-            }
-        }
-
-        #region Nested types
-        /// <summary>Container for nested types declared in the EvolvePokemonOut message type.</summary>
-        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
-        public static partial class Types
-        {
-            public enum EvolvePokemonStatus
-            {
-                [pbr::OriginalName("POKEMON_EVOLVED_UNSET")]
-                PokemonEvolvedUnset = 0,
-                [pbr::OriginalName("POKEMON_EVOLVED_SUCCESS")]
-                PokemonEvolvedSuccess = 1,
-                [pbr::OriginalName("FAILED_POKEMON_MISSING")]
-                FailedPokemonMissing = 2,
-                [pbr::OriginalName("FAILED_INSUFFICIENT_RESOURCES")]
-                FailedInsufficientResources = 3,
-                [pbr::OriginalName("FAILED_POKEMON_CANNOT_EVOLVE")]
-                FailedPokemonCannotEvolve = 4,
-                [pbr::OriginalName("FAILED_POKEMON_IS_DEPLOYED")]
-                FailedPokemonIsDeployed = 5,
-            }
-
-        }
-        #endregion
-
-    }
-
-    #endregion
-
-}
-
+#pragma warning disable 1591, 0612, 3021
+
+#region Designer generated code
+
+#region
+
+using pb = global::Google.Protobuf;
+using pbc = global::Google.Protobuf.Collections;
+using pbr = global::Google.Protobuf.Reflection;
+using scg = global::System.Collections.Generic;
+
+#endregion
+
+namespace PokemonGo.RocketAPI.GeneratedCode
+{
+    /// <summary>Holder for reflection information generated from Payloads.proto</summary>
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public static partial class PayloadsReflection
+    {
+        #region Descriptor
+
+        /// <summary>File descriptor for Payloads.proto</summary>
+        public static pbr::FileDescriptor Descriptor
+        {
+            get { return descriptor; }
+        }
+
+        private static pbr::FileDescriptor descriptor;
+
+        static PayloadsReflection()
+        {
+            var descriptorData = global::System.Convert.FromBase64String(
+                string.Concat(
+                    "Cg5QYXlsb2Fkcy5wcm90bxIhUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0",
+                    "ZWRDb2RlGg1BbGxFbnVtLnByb3RvImIKEUdldFBsYXllclJlc3BvbnNlEhAK",
+                    "CHVua25vd24xGAEgASgFEjsKB3Byb2ZpbGUYAiABKAsyKi5Qb2tlbW9uR28u",
+                    "Um9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUHJvZmlsZSL9AgoHUHJvZmlsZRIV",
+                    "Cg1jcmVhdGlvbl90aW1lGAEgASgDEhAKCHVzZXJuYW1lGAIgASgJEiAKBHRl",
+                    "YW0YBSABKA4yEi5BbGxFbnVtLlRlYW1Db2xvchIQCgh0dXRvcmlhbBgHIAEo",
+                    "DBJACgZhdmF0YXIYCCABKAsyMC5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVy",
+                    "YXRlZENvZGUuQXZhdGFyRGV0YWlscxIUCgxwb2tlX3N0b3JhZ2UYCSABKAUS",
+                    "FAoMaXRlbV9zdG9yYWdlGAogASgFEkIKC2RhaWx5X2JvbnVzGAsgASgLMi0u",
+                    "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkRhaWx5Qm9udXMS",
+                    "EQoJdW5rbm93bjEyGAwgASgMEhEKCXVua25vd24xMxgNIAEoDBI9CghjdXJy",
+                    "ZW5jeRgOIAMoCzIrLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29k",
+                    "ZS5DdXJyZW5jeSJZCgpEYWlseUJvbnVzEh4KFk5leHRDb2xsZWN0VGltZXN0",
+                    "YW1wTXMYASABKAMSKwojTmV4dERlZmVuZGVyQm9udXNDb2xsZWN0VGltZXN0",
+                    "YW1wTXMYAiABKAMiKAoIQ3VycmVuY3kSDAoEdHlwZRgBIAEoCRIOCgZhbW91",
+                    "bnQYAiABKAUiWAoNQXZhdGFyRGV0YWlscxIQCgh1bmtub3duMhgCIAEoBRIQ",
+                    "Cgh1bmtub3duMxgDIAEoBRIQCgh1bmtub3duORgJIAEoBRIRCgl1bmtub3du",
+                    "MTAYCiABKAUiJwoXRG93bmxvYWRTZXR0aW5nc1JlcXVlc3QSDAoEaGFzaBgB",
+                    "IAEoCSJzChRHZXRJbnZlbnRvcnlSZXNwb25zZRIPCgdzdWNjZXNzGAEgASgI",
+                    "EkoKD2ludmVudG9yeV9kZWx0YRgCIAEoCzIxLlBva2Vtb25Hby5Sb2NrZXRB",
+                    "UEkuR2VuZXJhdGVkQ29kZS5JbnZlbnRvcnlEZWx0YSKUAQoOSW52ZW50b3J5",
+                    "RGVsdGESHQoVb3JpZ2luYWxfdGltZXN0YW1wX21zGAEgASgDEhgKEG5ld190",
+                    "aW1lc3RhbXBfbXMYAiABKAMSSQoPaW52ZW50b3J5X2l0ZW1zGAMgAygLMjAu",
+                    "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkludmVudG9yeUl0",
+                    "ZW0imwEKDUludmVudG9yeUl0ZW0SHQoVbW9kaWZpZWRfdGltZXN0YW1wX21z",
+                    "GAEgASgDEhgKEGRlbGV0ZWRfaXRlbV9rZXkYAiABKAMSUQoTaW52ZW50b3J5",
+                    "X2l0ZW1fZGF0YRgDIAEoCzI0LlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJh",
+                    "dGVkQ29kZS5JbnZlbnRvcnlJdGVtRGF0YSLbBQoRSW52ZW50b3J5SXRlbURh",
+                    "dGESPwoHcG9rZW1vbhgBIAEoCzIuLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2Vu",
+                    "ZXJhdGVkQ29kZS5Qb2tlbW9uRGF0YRI1CgRpdGVtGAIgASgLMicuUG9rZW1v",
+                    "bkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkl0ZW0SRgoNcG9rZWRleF9l",
+                    "bnRyeRgDIAEoCzIvLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29k",
+                    "ZS5Qb2tlZGV4RW50cnkSRAoMcGxheWVyX3N0YXRzGAQgASgLMi4uUG9rZW1v",
+                    "bkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlBsYXllclN0YXRzEkoKD3Bs",
+                    "YXllcl9jdXJyZW5jeRgFIAEoCzIxLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2Vu",
+                    "ZXJhdGVkQ29kZS5QbGF5ZXJDdXJyZW5jeRJGCg1wbGF5ZXJfY2FtZXJhGAYg",
+                    "ASgLMi8uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlBsYXll",
+                    "ckNhbWVyYRJQChJpbnZlbnRvcnlfdXBncmFkZXMYByABKAsyNC5Qb2tlbW9u",
+                    "R28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuSW52ZW50b3J5VXBncmFkZXMS",
+                    "RgoNYXBwbGllZF9pdGVtcxgIIAEoCzIvLlBva2Vtb25Hby5Sb2NrZXRBUEku",
+                    "R2VuZXJhdGVkQ29kZS5BcHBsaWVkSXRlbXMSSAoOZWdnX2luY3ViYXRvcnMY",
+                    "CSABKAsyMC5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuRWdn",
+                    "SW5jdWJhdG9ycxJICg5wb2tlbW9uX2ZhbWlseRgKIAEoCzIwLlBva2Vtb25H",
+                    "by5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5Qb2tlbW9uRmFtaWx5IkcKFFJl",
+                    "Y3ljbGVJbnZlbnRvcnlJdGVtEiAKB2l0ZW1faWQYASABKA4yDy5BbGxFbnVt",
+                    "Lkl0ZW1JZBINCgVjb3VudBgCIAEoBSLYBQoHUG9rZW1vbhIKCgJpZBgBIAEo",
+                    "BRIoCgxwb2tlbW9uX3R5cGUYAiABKA4yEi5BbGxFbnVtLlBva2Vtb25JZBIK",
+                    "CgJjcBgDIAEoBRIPCgdzdGFtaW5hGAQgASgFEhMKC3N0YW1pbmFfbWF4GAUg",
+                    "ASgFEiQKBm1vdmVfMRgGIAEoDjIULkFsbEVudW0uUG9rZW1vbk1vdmUSJAoG",
+                    "bW92ZV8yGAcgASgOMhQuQWxsRW51bS5Qb2tlbW9uTW92ZRIYChBkZXBsb3ll",
+                    "ZF9mb3J0X2lkGAggASgFEhIKCm93bmVyX25hbWUYCSABKAkSDgoGaXNfZWdn",
+                    "GAogASgIEhwKFGVnZ19rbV93YWxrZWRfdGFyZ2V0GAsgASgFEhsKE2VnZ19r",
+                    "bV93YWxrZWRfc3RhcnQYDCABKAUSDgoGb3JpZ2luGA4gASgFEhAKCGhlaWdo",
+                    "dF9tGA8gASgCEhEKCXdlaWdodF9rZxgQIAEoAhIZChFpbmRpdmlkdWFsX2F0",
+                    "dGFjaxgRIAEoBRIaChJpbmRpdmlkdWFsX2RlZmVuc2UYEiABKAUSGgoSaW5k",
+                    "aXZpZHVhbF9zdGFtaW5hGBMgASgFEhUKDWNwX211bHRpcGxpZXIYFCABKAUS",
+                    "EAoIcG9rZWJhbGwYFSABKAUSGAoQY2FwdHVyZWRfY2VsbF9pZBgWIAEoBBIY",
+                    "ChBiYXR0bGVzX2F0dGFja2VkGBcgASgFEhgKEGJhdHRsZXNfZGVmZW5kZWQY",
+                    "GCABKAUSGAoQZWdnX2luY3ViYXRvcl9pZBgZIAEoBRIYChBjcmVhdGlvbl90",
+                    "aW1lX21zGBogASgEEhQKDG51bV91cGdyYWRlcxgbIAEoBRIgChhhZGRpdGlv",
+                    "bmFsX2NwX211bHRpcGxpZXIYHCABKAUSEAoIZmF2b3JpdGUYHSABKAUSEAoI",
+                    "bmlja25hbWUYHiABKAkSEQoJZnJvbV9mb3J0GB8gASgFIkYKBEl0ZW0SHwoE",
+                    "aXRlbRgBIAEoDjIRLkFsbEVudW0uSXRlbVR5cGUSDQoFY291bnQYAiABKAUS",
+                    "DgoGdW5zZWVuGAMgASgIIpkBCgxQb2tlZGV4RW50cnkSHAoUcG9rZWRleF9l",
+                    "bnRyeV9udW1iZXIYASABKAUSGQoRdGltZXNfZW5jb3VudGVyZWQYAiABKAUS",
+                    "FgoOdGltZXNfY2FwdHVyZWQYAyABKAUSHgoWZXZvbHV0aW9uX3N0b25lX3Bp",
+                    "ZWNlcxgEIAEoBRIYChBldm9sdXRpb25fc3RvbmVzGAUgASgFIu0ECgtQbGF5",
+                    "ZXJTdGF0cxINCgVsZXZlbBgBIAEoBRISCgpleHBlcmllbmNlGAIgASgDEhUK",
+                    "DXByZXZfbGV2ZWxfeHAYAyABKAMSFQoNbmV4dF9sZXZlbF94cBgEIAEoAxIR",
+                    "CglrbV93YWxrZWQYBSABKAISHAoUcG9rZW1vbnNfZW5jb3VudGVyZWQYBiAB",
+                    "KAUSHgoWdW5pcXVlX3Bva2VkZXhfZW50cmllcxgHIAEoBRIZChFwb2tlbW9u",
+                    "c19jYXB0dXJlZBgIIAEoBRISCgpldm9sdXRpb25zGAkgASgFEhgKEHBva2Vf",
+                    "c3RvcF92aXNpdHMYCiABKAUSGAoQcG9rZWJhbGxzX3Rocm93bhgLIAEoBRIU",
+                    "CgxlZ2dzX2hhdGNoZWQYDCABKAUSGwoTYmlnX21hZ2lrYXJwX2NhdWdodBgN",
+                    "IAEoBRIZChFiYXR0bGVfYXR0YWNrX3dvbhgOIAEoBRIbChNiYXR0bGVfYXR0",
+                    "YWNrX3RvdGFsGA8gASgFEhsKE2JhdHRsZV9kZWZlbmRlZF93b24YECABKAUS",
+                    "GwoTYmF0dGxlX3RyYWluaW5nX3dvbhgRIAEoBRIdChViYXR0bGVfdHJhaW5p",
+                    "bmdfdG90YWwYEiABKAUSHQoVcHJlc3RpZ2VfcmFpc2VkX3RvdGFsGBMgASgF",
+                    "Eh4KFnByZXN0aWdlX2Ryb3BwZWRfdG90YWwYFCABKAUSGAoQcG9rZW1vbl9k",
+                    "ZXBsb3llZBgVIAEoBRIeChZwb2tlbW9uX2NhdWdodF9ieV90eXBlGBYgASgM",
+                    "EhwKFHNtYWxsX3JhdHRhdGFfY2F1Z2h0GBcgASgFIh4KDlBsYXllckN1cnJl",
+                    "bmN5EgwKBGdlbXMYASABKAUiKQoMUGxheWVyQ2FtZXJhEhkKEWlzX2RlZmF1",
+                    "bHRfY2FtZXJhGAEgASgIImQKEUludmVudG9yeVVwZ3JhZGVzEk8KEmludmVu",
+                    "dG9yeV91cGdyYWRlcxgBIAMoCzIzLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2Vu",
+                    "ZXJhdGVkQ29kZS5JbnZlbnRvcnlVcGdyYWRlIoQBChBJbnZlbnRvcnlVcGdy",
+                    "YWRlEh8KBGl0ZW0YASABKA4yES5BbGxFbnVtLkl0ZW1UeXBlEjMKDHVwZ3Jh",
+                    "ZGVfdHlwZRgCIAEoDjIdLkFsbEVudW0uSW52ZW50b3J5VXBncmFkZVR5cGUS",
+                    "GgoSYWRkaXRpb25hbF9zdG9yYWdlGAMgASgFIkwKDEFwcGxpZWRJdGVtcxI8",
+                    "CgRpdGVtGAQgASgLMi4uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRD",
+                    "b2RlLkFwcGxpZWRJdGVtIocBCgtBcHBsaWVkSXRlbRIiCglpdGVtX3R5cGUY",
+                    "ASABKA4yDy5BbGxFbnVtLkl0ZW1JZBItChJpdGVtX3R5cGVfY2F0ZWdvcnkY",
+                    "AiABKA4yES5BbGxFbnVtLkl0ZW1UeXBlEhEKCWV4cGlyZV9tcxgDIAEoAxIS",
+                    "CgphcHBsaWVkX21zGAQgASgDIlcKDUVnZ0luY3ViYXRvcnMSRgoNZWdnX2lu",
+                    "Y3ViYXRvchgBIAEoCzIvLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVk",
+                    "Q29kZS5FZ2dJbmN1YmF0b3Ii1wEKDEVnZ0luY3ViYXRvchIPCgdpdGVtX2lk",
+                    "GAEgASgJEiQKCWl0ZW1fdHlwZRgCIAEoDjIRLkFsbEVudW0uSXRlbVR5cGUS",
+                    "MQoOaW5jdWJhdG9yX3R5cGUYAyABKA4yGS5BbGxFbnVtLkVnZ0luY3ViYXRv",
+                    "clR5cGUSFgoOdXNlc19yZW1haW5pbmcYBCABKAUSEgoKcG9rZW1vbl9pZBgF",
+                    "IAEoAxIXCg9zdGFydF9rbV93YWxrZWQYBiABKAESGAoQdGFyZ2V0X2ttX3dh",
+                    "bGtlZBgHIAEoASJLCg1Qb2tlbW9uRmFtaWx5EisKCWZhbWlseV9pZBgBIAEo",
+                    "DjIYLkFsbEVudW0uUG9rZW1vbkZhbWlseUlkEg0KBWNhbmR5GAIgASgFImgK",
+                    "FEdldE1hcE9iamVjdHNSZXF1ZXN0Eg8KB2NlbGxfaWQYASABKAwSGgoSc2lu",
+                    "Y2VfdGltZXN0YW1wX21zGAIgASgMEhAKCGxhdGl0dWRlGAMgASgBEhEKCWxv",
+                    "bmdpdHVkZRgEIAEoASKBAQoVR2V0TWFwT2JqZWN0c1Jlc3BvbnNlEj0KCW1h",
+                    "cF9jZWxscxgBIAMoCzIqLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVk",
+                    "Q29kZS5NYXBDZWxsEikKBnN0YXR1cxgCIAEoDjIZLkFsbEVudW0uTWFwT2Jq",
+                    "ZWN0c1N0YXR1cyLkBAoHTWFwQ2VsbBISCgpzMl9jZWxsX2lkGAEgASgEEhwK",
+                    "FGN1cnJlbnRfdGltZXN0YW1wX21zGAIgASgDEjoKBWZvcnRzGAMgAygLMisu",
+                    "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkZvcnREYXRhEkMK",
+                    "DHNwYXduX3BvaW50cxgEIAMoCzItLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2Vu",
+                    "ZXJhdGVkQ29kZS5TcGF3blBvaW50EhcKD2RlbGV0ZWRfb2JqZWN0cxgGIAMo",
+                    "CRIZChFpc190cnVuY2F0ZWRfbGlzdBgHIAEoCBJGCg5mb3J0X3N1bW1hcmll",
+                    "cxgIIAMoCzIuLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5G",
+                    "b3J0U3VtbWFyeRJNChZkZWNpbWF0ZWRfc3Bhd25fcG9pbnRzGAkgAygLMi0u",
+                    "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlNwYXduUG9pbnQS",
+                    "RQoNd2lsZF9wb2tlbW9ucxgFIAMoCzIuLlBva2Vtb25Hby5Sb2NrZXRBUEku",
+                    "R2VuZXJhdGVkQ29kZS5XaWxkUG9rZW1vbhJJChJjYXRjaGFibGVfcG9rZW1v",
+                    "bnMYCiADKAsyLS5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUu",
+                    "TWFwUG9rZW1vbhJJCg9uZWFyYnlfcG9rZW1vbnMYCyADKAsyMC5Qb2tlbW9u",
+                    "R28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuTmVhcmJ5UG9rZW1vbiKTBAoI",
+                    "Rm9ydERhdGESCgoCaWQYASABKAkSIgoabGFzdF9tb2RpZmllZF90aW1lc3Rh",
+                    "bXBfbXMYAiABKAMSEAoIbGF0aXR1ZGUYAyABKAESEQoJbG9uZ2l0dWRlGAQg",
+                    "ASgBEg8KB2VuYWJsZWQYCCABKAgSHwoEdHlwZRgJIAEoDjIRLkFsbEVudW0u",
+                    "Rm9ydFR5cGUSKQoNb3duZWRfYnlfdGVhbRgFIAEoDjISLkFsbEVudW0uVGVh",
+                    "bUNvbG9yEiwKEGd1YXJkX3Bva2Vtb25faWQYBiABKA4yEi5BbGxFbnVtLlBv",
+                    "a2Vtb25JZBIYChBndWFyZF9wb2tlbW9uX2NwGAcgASgFEhIKCmd5bV9wb2lu",
+                    "dHMYCiABKAMSFAoMaXNfaW5fYmF0dGxlGAsgASgIEiYKHmNvb2xkb3duX2Nv",
+                    "bXBsZXRlX3RpbWVzdGFtcF9tcxgOIAEoAxIlCgdzcG9uc29yGA8gASgOMhQu",
+                    "QWxsRW51bS5Gb3J0U3BvbnNvchIyCg5yZW5kZXJpbmdfdHlwZRgQIAEoDjIa",
+                    "LkFsbEVudW0uRm9ydFJlbmRlcmluZ1R5cGUSHAoUYWN0aXZlX2ZvcnRfbW9k",
+                    "aWZpZXIYDCABKAwSQgoJbHVyZV9pbmZvGA0gASgLMi8uUG9rZW1vbkdvLlJv",
+                    "Y2tldEFQSS5HZW5lcmF0ZWRDb2RlLkZvcnRMdXJlSW5mbyKDAQoMRm9ydEx1",
+                    "cmVJbmZvEg8KB2ZvcnRfaWQYASABKAkSEAoIdW5rbm93bjIYAiABKAESLQoR",
+                    "YWN0aXZlX3Bva2Vtb25faWQYAyABKA4yEi5BbGxFbnVtLlBva2Vtb25JZBIh",
+                    "ChlsdXJlX2V4cGlyZXNfdGltZXN0YW1wX21zGAQgASgDIjEKClNwYXduUG9p",
+                    "bnQSEAoIbGF0aXR1ZGUYAiABKAESEQoJbG9uZ2l0dWRlGAMgASgBIm8KC0Zv",
+                    "cnRTdW1tYXJ5EhcKD2ZvcnRfc3VtbWFyeV9pZBgBIAEoBRIiChpsYXN0X21v",
+                    "ZGlmaWVkX3RpbWVzdGFtcF9tcxgCIAEoBRIQCghsYXRpdHVkZRgDIAEoBRIR",
+                    "Cglsb25naXR1ZGUYBCABKAUi5gEKC1dpbGRQb2tlbW9uEhQKDGVuY291bnRl",
+                    "cl9pZBgBIAEoBhIiChpsYXN0X21vZGlmaWVkX3RpbWVzdGFtcF9tcxgCIAEo",
+                    "AxIQCghsYXRpdHVkZRgDIAEoARIRCglsb25naXR1ZGUYBCABKAESFQoNc3Bh",
+                    "d25wb2ludF9pZBgFIAEoCRJECgxwb2tlbW9uX2RhdGEYByABKAsyLi5Qb2tl",
+                    "bW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG9rZW1vbkRhdGESGwoT",
+                    "dGltZV90aWxsX2hpZGRlbl9tcxgLIAEoBSLaBQoLUG9rZW1vbkRhdGESCgoC",
+                    "aWQYASABKAYSJgoKcG9rZW1vbl9pZBgCIAEoDjISLkFsbEVudW0uUG9rZW1v",
+                    "bklkEgoKAmNwGAMgASgFEg8KB3N0YW1pbmEYBCABKAUSEwoLc3RhbWluYV9t",
+                    "YXgYBSABKAUSJAoGbW92ZV8xGAYgASgOMhQuQWxsRW51bS5Qb2tlbW9uTW92",
+                    "ZRIkCgZtb3ZlXzIYByABKA4yFC5BbGxFbnVtLlBva2Vtb25Nb3ZlEhgKEGRl",
+                    "cGxveWVkX2ZvcnRfaWQYCCABKAUSEgoKb3duZXJfbmFtZRgJIAEoCRIOCgZp",
+                    "c19lZ2cYCiABKAgSHAoUZWdnX2ttX3dhbGtlZF90YXJnZXQYCyABKAUSGwoT",
+                    "ZWdnX2ttX3dhbGtlZF9zdGFydBgMIAEoBRIOCgZvcmlnaW4YDiABKAUSEAoI",
+                    "aGVpZ2h0X20YDyABKAISEQoJd2VpZ2h0X2tnGBAgASgCEhkKEWluZGl2aWR1",
+                    "YWxfYXR0YWNrGBEgASgFEhoKEmluZGl2aWR1YWxfZGVmZW5zZRgSIAEoBRIa",
+                    "ChJpbmRpdmlkdWFsX3N0YW1pbmEYEyABKAUSFQoNY3BfbXVsdGlwbGllchgU",
+                    "IAEoBRIQCghwb2tlYmFsbBgVIAEoBRIYChBjYXB0dXJlZF9jZWxsX2lkGBYg",
+                    "ASgEEhgKEGJhdHRsZXNfYXR0YWNrZWQYFyABKAUSGAoQYmF0dGxlc19kZWZl",
+                    "bmRlZBgYIAEoBRIYChBlZ2dfaW5jdWJhdG9yX2lkGBkgASgFEhgKEGNyZWF0",
+                    "aW9uX3RpbWVfbXMYGiABKAQSFAoMbnVtX3VwZ3JhZGVzGBsgASgFEiAKGGFk",
+                    "ZGl0aW9uYWxfY3BfbXVsdGlwbGllchgcIAEoBRIQCghmYXZvcml0ZRgdIAEo",
+                    "BRIQCghuaWNrbmFtZRgeIAEoCRIRCglmcm9tX2ZvcnQYHyABKAUipwEKCk1h",
+                    "cFBva2Vtb24SFQoNc3Bhd25wb2ludF9pZBgBIAEoCRIUCgxlbmNvdW50ZXJf",
+                    "aWQYAiABKAYSJgoKcG9rZW1vbl9pZBgDIAEoDjISLkFsbEVudW0uUG9rZW1v",
+                    "bklkEh8KF2V4cGlyYXRpb25fdGltZXN0YW1wX21zGAQgASgDEhAKCGxhdGl0",
+                    "dWRlGAUgASgBEhEKCWxvbmdpdHVkZRgGIAEoASJpCg1OZWFyYnlQb2tlbW9u",
+                    "EiYKCnBva2Vtb25faWQYASABKA4yEi5BbGxFbnVtLlBva2Vtb25JZBIaChJk",
+                    "aXN0YW5jZV9pbl9tZXRlcnMYAiABKAISFAoMZW5jb3VudGVyX2lkGAMgASgG",
+                    "InwKGERvd25sb2FkU2V0dGluZ3NSZXNwb25zZRINCgVlcnJvchgBIAEoCRIM",
+                    "CgRoYXNoGAIgASgJEkMKCHNldHRpbmdzGAMgASgLMjEuUG9rZW1vbkdvLlJv",
+                    "Y2tldEFQSS5HZW5lcmF0ZWRDb2RlLkdsb2JhbFNldHRpbmdzItoCCg5HbG9i",
+                    "YWxTZXR0aW5ncxJGCg1mb3J0X3NldHRpbmdzGAIgASgLMi8uUG9rZW1vbkdv",
+                    "LlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkZvcnRTZXR0aW5ncxJECgxtYXBf",
+                    "c2V0dGluZ3MYAyABKAsyLi5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRl",
+                    "ZENvZGUuTWFwU2V0dGluZ3MSSAoObGV2ZWxfc2V0dGluZ3MYBCABKAsyMC5Q",
+                    "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuTGV2ZWxTZXR0aW5n",
+                    "cxJQChJpbnZlbnRvcnlfc2V0dGluZ3MYBSABKAsyNC5Qb2tlbW9uR28uUm9j",
+                    "a2V0QVBJLkdlbmVyYXRlZENvZGUuSW52ZW50b3J5U2V0dGluZ3MSHgoWbWlu",
+                    "aW11bV9jbGllbnRfdmVyc2lvbhgGIAEoCSLkAQoMRm9ydFNldHRpbmdzEiAK",
+                    "GGludGVyYWN0aW9uX3JhbmdlX21ldGVycxgBIAEoARIiChptYXhfdG90YWxf",
+                    "ZGVwbG95ZWRfcG9rZW1vbhgCIAEoBRIjChttYXhfcGxheWVyX2RlcGxveWVk",
+                    "X3Bva2Vtb24YAyABKAUSIQoZZGVwbG95X3N0YW1pbmFfbXVsdGlwbGllchgE",
+                    "IAEoARIgChhkZXBsb3lfYXR0YWNrX211bHRpcGxpZXIYBSABKAESJAocZmFy",
+                    "X2ludGVyYWN0aW9uX3JhbmdlX21ldGVycxgGIAEoASKPAgoLTWFwU2V0dGlu",
+                    "Z3MSHQoVcG9rZW1vbl92aXNpYmxlX3JhbmdlGAEgASgBEh0KFXBva2VfbmF2",
+                    "X3JhbmdlX21ldGVycxgCIAEoARIeChZlbmNvdW50ZXJfcmFuZ2VfbWV0ZXJz",
+                    "GAMgASgBEisKI2dldF9tYXBfb2JqZWN0c19taW5fcmVmcmVzaF9zZWNvbmRz",
+                    "GAQgASgCEisKI2dldF9tYXBfb2JqZWN0c19tYXhfcmVmcmVzaF9zZWNvbmRz",
+                    "GAUgASgCEisKI2dldF9tYXBfb2JqZWN0c19taW5fZGlzdGFuY2VfbWV0ZXJz",
+                    "GAYgASgCEhsKE2dvb2dsZV9tYXBzX2FwaV9rZXkYByABKAkiUQoNTGV2ZWxT",
+                    "ZXR0aW5ncxIbChN0cmFpbmVyX2NwX21vZGlmaWVyGAIgASgBEiMKG3RyYWlu",
+                    "ZXJfZGlmZmljdWx0eV9tb2RpZmllchgDIAEoASKAAQoRSW52ZW50b3J5U2V0",
+                    "dGluZ3MSEwoLbWF4X3Bva2Vtb24YASABKAUSFQoNbWF4X2JhZ19pdGVtcxgC",
+                    "IAEoBRIUCgxiYXNlX3Bva2Vtb24YAyABKAUSFgoOYmFzZV9iYWdfaXRlbXMY",
+                    "BCABKAUSEQoJYmFzZV9lZ2dzGAUgASgFIjoKE1BsYXllclVwZGF0ZVJlcXVl",
+                    "c3QSEAoIbGF0aXR1ZGUYASABKAESEQoJbG9uZ2l0dWRlGAIgASgBIq8BChRQ",
+                    "bGF5ZXJVcGRhdGVSZXNwb25zZRJFCg13aWxkX3Bva2Vtb25zGAEgAygLMi4u",
+                    "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLldpbGRQb2tlbW9u",
+                    "EjoKBWZvcnRzGAIgAygLMisuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0",
+                    "ZWRDb2RlLkZvcnREYXRhEhQKDGZvcnRzX25lYXJieRgDIAEoBSIeChxEb3du",
+                    "bG9hZEl0ZW1UZW1wbGF0ZXNSZXF1ZXN0ItsKCh1Eb3dubG9hZEl0ZW1UZW1w",
+                    "bGF0ZXNSZXNwb25zZRIPCgdzdWNjZXNzGAEgASgIEmUKDml0ZW1fdGVtcGxh",
+                    "dGVzGAIgAygLMk0uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2Rl",
+                    "LkRvd25sb2FkSXRlbVRlbXBsYXRlc1Jlc3BvbnNlLkl0ZW1UZW1wbGF0ZRIU",
+                    "Cgx0aW1lc3RhbXBfbXMYAyABKAQaqwkKDEl0ZW1UZW1wbGF0ZRITCgt0ZW1w",
+                    "bGF0ZV9pZBgBIAEoCRJMChBwb2tlbW9uX3NldHRpbmdzGAIgASgLMjIuUG9r",
+                    "ZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlBva2Vtb25TZXR0aW5n",
+                    "cxJGCg1pdGVtX3NldHRpbmdzGAMgASgLMi8uUG9rZW1vbkdvLlJvY2tldEFQ",
+                    "SS5HZW5lcmF0ZWRDb2RlLkl0ZW1TZXR0aW5ncxJGCg1tb3ZlX3NldHRpbmdz",
+                    "GAQgASgLMi8uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLk1v",
+                    "dmVTZXR0aW5ncxJXChZtb3ZlX3NlcXVlbmNlX3NldHRpbmdzGAUgASgLMjcu",
+                    "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLk1vdmVTZXF1ZW5j",
+                    "ZVNldHRpbmdzElAKDnR5cGVfZWZmZWN0aXZlGAggASgLMjguUG9rZW1vbkdv",
+                    "LlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLlR5cGVFZmZlY3RpdmVTZXR0aW5n",
+                    "cxJICg5iYWRnZV9zZXR0aW5ncxgKIAEoCzIwLlBva2Vtb25Hby5Sb2NrZXRB",
+                    "UEkuR2VuZXJhdGVkQ29kZS5CYWRnZVNldHRpbmdzEkEKBmNhbWVyYRgLIAEo",
+                    "CzIxLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5DYW1lcmFT",
+                    "ZXR0aW5ncxJMCgxwbGF5ZXJfbGV2ZWwYDCABKAsyNi5Qb2tlbW9uR28uUm9j",
+                    "a2V0QVBJLkdlbmVyYXRlZENvZGUuUGxheWVyTGV2ZWxTZXR0aW5ncxJGCgln",
+                    "eW1fbGV2ZWwYDSABKAsyMy5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRl",
+                    "ZENvZGUuR3ltTGV2ZWxTZXR0aW5ncxJNCg9iYXR0bGVfc2V0dGluZ3MYDiAB",
+                    "KAsyNC5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuR3ltQmF0",
+                    "dGxlU2V0dGluZ3MSUAoSZW5jb3VudGVyX3NldHRpbmdzGA8gASgLMjQuUG9r",
+                    "ZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkVuY291bnRlclNldHRp",
+                    "bmdzEksKEGlhcF9pdGVtX2Rpc3BsYXkYECABKAsyMS5Qb2tlbW9uR28uUm9j",
+                    "a2V0QVBJLkdlbmVyYXRlZENvZGUuSWFwSXRlbURpc3BsYXkSRAoMaWFwX3Nl",
+                    "dHRpbmdzGBEgASgLMi4uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRD",
+                    "b2RlLklhcFNldHRpbmdzElMKEHBva2Vtb25fdXBncmFkZXMYEiABKAsyOS5Q",
+                    "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG9rZW1vblVwZ3Jh",
+                    "ZGVTZXR0aW5ncxJRCg9lcXVpcHBlZF9iYWRnZXMYEyABKAsyOC5Qb2tlbW9u",
+                    "R28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuRXF1aXBwZWRCYWRnZVNldHRp",
+                    "bmdzImkKFVVzZUl0ZW1DYXB0dXJlUmVxdWVzdBIgCgdpdGVtX2lkGAEgASgO",
+                    "Mg8uQWxsRW51bS5JdGVtSWQSFAoMZW5jb3VudGVyX2lkGAIgASgGEhgKEHNw",
+                    "YXduX3BvaW50X2d1aWQYAyABKAkisQEKFlVzZUl0ZW1DYXB0dXJlUmVzcG9u",
+                    "c2USDwoHc3VjY2VzcxgBIAEoCBIZChFpdGVtX2NhcHR1cmVfbXVsdBgCIAEo",
+                    "ARIWCg5pdGVtX2ZsZWVfbXVsdBgDIAEoARIVCg1zdG9wX21vdmVtZW50GAQg",
+                    "ASgIEhMKC3N0b3BfYXR0YWNrGAUgASgIEhIKCnRhcmdldF9tYXgYBiABKAgS",
+                    "EwoLdGFyZ2V0X3Nsb3cYByABKAgiKwoVUmVsZWFzZVBva2Vtb25SZXF1ZXN0",
+                    "EhIKCnBva2Vtb25faWQYASABKAYi3wEKFlJlbGVhc2VQb2tlbW9uUmVzcG9u",
+                    "c2USUAoGcmVzdWx0GAEgASgOMkAuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5l",
+                    "cmF0ZWRDb2RlLlJlbGVhc2VQb2tlbW9uUmVzcG9uc2UuUmVzdWx0EhUKDWNh",
+                    "bmR5X2F3YXJkZWQYAiABKAUiXAoGUmVzdWx0EgkKBVVOU0VUEAASCwoHU1VD",
+                    "Q0VTUxABEhQKEFBPS0VNT05fREVQTE9ZRUQQAhIKCgZGQUlMRUQQAxIYChRF",
+                    "UlJPUl9QT0tFTU9OX0lTX0VHRxAEIhcKFUdldEhhdGNoZWRFZ2dzUmVxdWVz",
+                    "dCKOAQoWR2V0SGF0Y2hlZEVnZ3NSZXNwb25zZRIPCgdzdWNjZXNzGAEgASgI",
+                    "EhYKCnBva2Vtb25faWQYAiADKARCAhABEhoKEmV4cGVyaWVuY2VfYXdhcmRl",
+                    "ZBgDIAMoBRIVCg1jYW5keV9hd2FyZGVkGAQgAygFEhgKEHN0YXJkdXN0X2F3",
+                    "YXJkZWQYBSADKAUihgEKEUZvcnRTZWFyY2hSZXF1ZXN0Eg8KB2ZvcnRfaWQY",
+                    "ASABKAkSFwoPcGxheWVyX2xhdGl0dWRlGAIgASgBEhgKEHBsYXllcl9sb25n",
+                    "aXR1ZGUYAyABKAESFQoNZm9ydF9sYXRpdHVkZRgEIAEoARIWCg5mb3J0X2xv",
+                    "bmdpdHVkZRgFIAEoASKtBAoSRm9ydFNlYXJjaFJlc3BvbnNlEkwKBnJlc3Vs",
+                    "dBgBIAEoDjI8LlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5G",
+                    "b3J0U2VhcmNoUmVzcG9uc2UuUmVzdWx0ElYKDWl0ZW1zX2F3YXJkZWQYAiAD",
+                    "KAsyPy5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuRm9ydFNl",
+                    "YXJjaFJlc3BvbnNlLkl0ZW1Bd2FyZBIUCgxnZW1zX2F3YXJkZWQYAyABKAUS",
+                    "SAoQcG9rZW1vbl9kYXRhX2VnZxgEIAEoCzIuLlBva2Vtb25Hby5Sb2NrZXRB",
+                    "UEkuR2VuZXJhdGVkQ29kZS5Qb2tlbW9uRGF0YRIaChJleHBlcmllbmNlX2F3",
+                    "YXJkZWQYBSABKAUSJgoeY29vbGRvd25fY29tcGxldGVfdGltZXN0YW1wX21z",
+                    "GAYgASgDEiIKGmNoYWluX2hhY2tfc2VxdWVuY2VfbnVtYmVyGAcgASgFGkEK",
+                    "CUl0ZW1Bd2FyZBIgCgdpdGVtX2lkGAEgASgOMg8uQWxsRW51bS5JdGVtSWQS",
+                    "EgoKaXRlbV9jb3VudBgCIAEoBSJmCgZSZXN1bHQSEQoNTk9fUkVTVUxUX1NF",
+                    "VBAAEgsKB1NVQ0NFU1MQARIQCgxPVVRfT0ZfUkFOR0UQAhIWChJJTl9DT09M",
+                    "RE9XTl9QRVJJT0QQAxISCg5JTlZFTlRPUllfRlVMTBAEIkoKEkZvcnREZXRh",
+                    "aWxzUmVxdWVzdBIPCgdmb3J0X2lkGAEgASgJEhAKCGxhdGl0dWRlGAIgASgB",
+                    "EhEKCWxvbmdpdHVkZRgDIAEoASKHAwoTRm9ydERldGFpbHNSZXNwb25zZRIP",
+                    "Cgdmb3J0X2lkGAEgASgJEiYKCnRlYW1fY29sb3IYAiABKA4yEi5BbGxFbnVt",
+                    "LlRlYW1Db2xvchJECgxwb2tlbW9uX2RhdGEYAyABKAsyLi5Qb2tlbW9uR28u",
+                    "Um9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG9rZW1vbkRhdGESDAoEbmFtZRgE",
+                    "IAEoCRISCgppbWFnZV91cmxzGAUgAygJEgoKAmZwGAYgASgFEg8KB3N0YW1p",
+                    "bmEYByABKAUSEwoLbWF4X3N0YW1pbmEYCCABKAUSHwoEdHlwZRgJIAEoDjIR",
+                    "LkFsbEVudW0uRm9ydFR5cGUSEAoIbGF0aXR1ZGUYCiABKAESEQoJbG9uZ2l0",
+                    "dWRlGAsgASgBEhMKC2Rlc2NyaXB0aW9uGAwgASgJEkIKCW1vZGlmaWVycxgN",
+                    "IAMoCzIvLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5Gb3J0",
+                    "TW9kaWZpZXIicwoMRm9ydE1vZGlmaWVyEiAKB2l0ZW1faWQYASABKA4yDy5B",
+                    "bGxFbnVtLkl0ZW1JZBIfChdleHBpcmF0aW9uX3RpbWVzdGFtcF9tcxgCIAEo",
+                    "AxIgChhkZXBsb3llcl9wbGF5ZXJfY29kZW5hbWUYAyABKAkicgoQRW5jb3Vu",
+                    "dGVyUmVxdWVzdBIUCgxlbmNvdW50ZXJfaWQYASABKAYSFQoNc3Bhd25wb2lu",
+                    "dF9pZBgCIAEoCRIXCg9wbGF5ZXJfbGF0aXR1ZGUYAyABKAESGAoQcGxheWVy",
+                    "X2xvbmdpdHVkZRgEIAEoASLNBAoRRW5jb3VudGVyUmVzcG9uc2USRAoMd2ls",
+                    "ZF9wb2tlbW9uGAEgASgLMi4uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0",
+                    "ZWRDb2RlLldpbGRQb2tlbW9uElMKCmJhY2tncm91bmQYAiABKA4yPy5Qb2tl",
+                    "bW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuRW5jb3VudGVyUmVzcG9u",
+                    "c2UuQmFja2dyb3VuZBJLCgZzdGF0dXMYAyABKA4yOy5Qb2tlbW9uR28uUm9j",
+                    "a2V0QVBJLkdlbmVyYXRlZENvZGUuRW5jb3VudGVyUmVzcG9uc2UuU3RhdHVz",
+                    "ElIKE2NhcHR1cmVfcHJvYmFiaWxpdHkYBCABKAsyNS5Qb2tlbW9uR28uUm9j",
+                    "a2V0QVBJLkdlbmVyYXRlZENvZGUuQ2FwdHVyZVByb2JhYmlsaXR5IiIKCkJh",
+                    "Y2tncm91bmQSCAoEUEFSSxAAEgoKBkRFU0VSVBABItcBCgZTdGF0dXMSEwoP",
+                    "RU5DT1VOVEVSX0VSUk9SEAASFQoRRU5DT1VOVEVSX1NVQ0NFU1MQARIXChNF",
+                    "TkNPVU5URVJfTk9UX0ZPVU5EEAISFAoQRU5DT1VOVEVSX0NMT1NFRBADEhoK",
+                    "FkVOQ09VTlRFUl9QT0tFTU9OX0ZMRUQQBBIaChZFTkNPVU5URVJfTk9UX0lO",
+                    "X1JBTkdFEAUSHgoaRU5DT1VOVEVSX0FMUkVBRFlfSEFQUEVORUQQBhIaChZQ",
+                    "T0tFTU9OX0lOVkVOVE9SWV9GVUxMEAciewoSQ2FwdHVyZVByb2JhYmlsaXR5",
+                    "EiYKDXBva2ViYWxsX3R5cGUYASADKA4yDy5BbGxFbnVtLkl0ZW1JZBIbChNj",
+                    "YXB0dXJlX3Byb2JhYmlsaXR5GAIgAygCEiAKGHJldGljbGVfZGlmZmljdWx0",
+                    "eV9zY2FsZRgMIAEoASJwChREaXNrRW5jb3VudGVyUmVxdWVzdBIUCgxlbmNv",
+                    "dW50ZXJfaWQYASABKAYSDwoHZm9ydF9pZBgCIAEoCRIXCg9wbGF5ZXJfbGF0",
+                    "aXR1ZGUYAyABKAESGAoQcGxheWVyX2xvbmdpdHVkZRgEIAEoASKIAwoVRGlz",
+                    "a0VuY291bnRlclJlc3BvbnNlEk8KBnJlc3VsdBgBIAEoDjI/LlBva2Vtb25H",
+                    "by5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5EaXNrRW5jb3VudGVyUmVzcG9u",
+                    "c2UuUmVzdWx0EkQKDHBva2Vtb25fZGF0YRgCIAEoCzIuLlBva2Vtb25Hby5S",
+                    "b2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5Qb2tlbW9uRGF0YRJSChNjYXB0dXJl",
+                    "X3Byb2JhYmlsaXR5GAMgASgLMjUuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5l",
+                    "cmF0ZWRDb2RlLkNhcHR1cmVQcm9iYWJpbGl0eSKDAQoGUmVzdWx0EgsKB1VO",
+                    "S05PV04QABILCgdTVUNDRVNTEAESEQoNTk9UX0FWQUlMQUJMRRACEhAKDE5P",
+                    "VF9JTl9SQU5HRRADEh4KGkVOQ09VTlRFUl9BTFJFQURZX0ZJTklTSEVEEAQS",
+                    "GgoWUE9LRU1PTl9JTlZFTlRPUllfRlVMTBAFIsMBChNDYXRjaFBva2Vtb25S",
+                    "ZXF1ZXN0EhQKDGVuY291bnRlcl9pZBgBIAEoBhIQCghwb2tlYmFsbBgCIAEo",
+                    "BRIfChdub3JtYWxpemVkX3JldGljbGVfc2l6ZRgDIAEoARIYChBzcGF3bl9w",
+                    "b2ludF9ndWlkGAQgASgJEhMKC2hpdF9wb2tlbW9uGAUgASgIEhUKDXNwaW5f",
+                    "bW9kaWZpZXIYBiABKAESHQoVTm9ybWFsaXplZEhpdFBvc2l0aW9uGAcgASgB",
+                    "IsYCChRDYXRjaFBva2Vtb25SZXNwb25zZRJTCgZzdGF0dXMYASABKA4yQy5Q",
+                    "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuQ2F0Y2hQb2tlbW9u",
+                    "UmVzcG9uc2UuQ2F0Y2hTdGF0dXMSFAoMbWlzc19wZXJjZW50GAIgASgBEhsK",
+                    "E2NhcHR1cmVkX3Bva2Vtb25faWQYAyABKAQSPwoGc2NvcmVzGAQgASgLMi8u",
+                    "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkNhcHR1cmVTY29y",
+                    "ZSJlCgtDYXRjaFN0YXR1cxIPCgtDQVRDSF9FUlJPUhAAEhEKDUNBVENIX1NV",
+                    "Q0NFU1MQARIQCgxDQVRDSF9FU0NBUEUQAhIOCgpDQVRDSF9GTEVFEAMSEAoM",
+                    "Q0FUQ0hfTUlTU0VEEAQiaQoMQ2FwdHVyZVNjb3JlEiwKDWFjdGl2aXR5X3R5",
+                    "cGUYASADKA4yFS5BbGxFbnVtLkFjdGl2aXR5VHlwZRIKCgJ4cBgCIAMoBRIN",
+                    "CgVjYW5keRgDIAMoBRIQCghzdGFyZHVzdBgEIAMoBSIbChlDaGVja0F3YXJk",
+                    "ZWRCYWRnZXNSZXF1ZXN0IncKGkNoZWNrQXdhcmRlZEJhZGdlc1Jlc3BvbnNl",
+                    "Eg8KB3N1Y2Nlc3MYASABKAgSKgoOYXdhcmRlZF9iYWRnZXMYAiADKA4yEi5B",
+                    "bGxFbnVtLkJhZGdlVHlwZRIcChRhd2FyZGVkX2JhZGdlX2xldmVscxgDIAMo",
+                    "BSJ5ChVFcXVpcHBlZEJhZGdlU2V0dGluZ3MSHwoXZXF1aXBfYmFkZ2VfY29v",
+                    "bGRvd25fbXMYASABKAMSHwoXY2F0Y2hfcHJvYmFiaWxpdHlfYm9udXMYAiAD",
+                    "KAISHgoWZmxlZV9wcm9iYWJpbGl0eV9ib251cxgDIAMoAiKEAQoWUG9rZW1v",
+                    "blVwZ3JhZGVTZXR0aW5ncxIaChJ1cGdyYWRlc19wZXJfbGV2ZWwYASABKAUS",
+                    "IwobYWxsb3dlZF9sZXZlbHNfYWJvdmVfcGxheWVyGAIgASgFEhIKCmNhbmR5",
+                    "X2Nvc3QYAyADKAUSFQoNc3RhcmR1c3RfY29zdBgEIAMoBSKMAgoLSWFwU2V0",
+                    "dGluZ3MSGQoRZGFpbHlfYm9udXNfY29pbnMYASABKAUSKAogZGFpbHlfZGVm",
+                    "ZW5kZXJfYm9udXNfcGVyX3Bva2Vtb24YAiADKAUSKgoiZGFpbHlfZGVmZW5k",
+                    "ZXJfYm9udXNfbWF4X2RlZmVuZGVycxgDIAEoBRIlCh1kYWlseV9kZWZlbmRl",
+                    "cl9ib251c19jdXJyZW5jeRgEIAMoCRIiChptaW5fdGltZV9iZXR3ZWVuX2Ns",
+                    "YWltc19tcxgFIAEoAxIbChNkYWlseV9ib251c19lbmFibGVkGAYgASgIEiQK",
+                    "HGRhaWx5X2RlZmVuZGVyX2JvbnVzX2VuYWJsZWQYByABKAgilAEKDklhcEl0",
+                    "ZW1EaXNwbGF5EgsKA3NrdRgBIAEoCRIuCghjYXRlZ29yeRgCIAEoDjIcLkFs",
+                    "bEVudW0uSG9sb0lhcEl0ZW1DYXRlZ29yeRISCgpzb3J0X29yZGVyGAMgASgF",
+                    "EiEKCGl0ZW1faWRzGAQgAygOMg8uQWxsRW51bS5JdGVtSWQSDgoGY291bnRz",
+                    "GAUgAygFIq4BChFFbmNvdW50ZXJTZXR0aW5ncxIcChRzcGluX2JvbnVzX3Ro",
+                    "cmVzaG9sZBgBIAEoAhIhChlleGNlbGxlbnRfdGhyb3dfdGhyZXNob2xkGAIg",
+                    "ASgCEh0KFWdyZWF0X3Rocm93X3RocmVzaG9sZBgDIAEoAhIcChRuaWNlX3Ro",
+                    "cm93X3RocmVzaG9sZBgEIAEoAhIbChNtaWxlc3RvbmVfdGhyZXNob2xkGAUg",
+                    "ASgFIsYDChFHeW1CYXR0bGVTZXR0aW5ncxIWCg5lbmVyZ3lfcGVyX3NlYxgB",
+                    "IAEoAhIZChFkb2RnZV9lbmVyZ3lfY29zdBgCIAEoAhIYChByZXRhcmdldF9z",
+                    "ZWNvbmRzGAMgASgCEh0KFWVuZW15X2F0dGFja19pbnRlcnZhbBgEIAEoAhIe",
+                    "ChZhdHRhY2tfc2VydmVyX2ludGVydmFsGAUgASgCEh4KFnJvdW5kX2R1cmF0",
+                    "aW9uX3NlY29uZHMYBiABKAISIwobYm9udXNfdGltZV9wZXJfYWxseV9zZWNv",
+                    "bmRzGAcgASgCEiQKHG1heGltdW1fYXR0YWNrZXJzX3Blcl9iYXR0bGUYCCAB",
+                    "KAUSKQohc2FtZV90eXBlX2F0dGFja19ib251c19tdWx0aXBsaWVyGAkgASgC",
+                    "EhYKDm1heGltdW1fZW5lcmd5GAogASgFEiQKHGVuZXJneV9kZWx0YV9wZXJf",
+                    "aGVhbHRoX2xvc3QYCyABKAISGQoRZG9kZ2VfZHVyYXRpb25fbXMYDCABKAUS",
+                    "HAoUbWluaW11bV9wbGF5ZXJfbGV2ZWwYDSABKAUSGAoQc3dhcF9kdXJhdGlv",
+                    "bl9tcxgOIAEoBSJ3ChBHeW1MZXZlbFNldHRpbmdzEhsKE3JlcXVpcmVkX2V4",
+                    "cGVyaWVuY2UYASADKAUSFAoMbGVhZGVyX3Nsb3RzGAIgAygFEhUKDXRyYWlu",
+                    "ZXJfc2xvdHMYAyADKAUSGQoRc2VhcmNoX3JvbGxfYm9udXMYBCADKAUinQEK",
+                    "E1BsYXllckxldmVsU2V0dGluZ3MSEAoIcmFua19udW0YASADKAUSGwoTcmVx",
+                    "dWlyZWRfZXhwZXJpZW5jZRgCIAMoBRIVCg1jcF9tdWx0aXBsaWVyGAMgAygC",
+                    "EhwKFG1heF9lZ2dfcGxheWVyX2xldmVsGAQgASgFEiIKGm1heF9lbmNvdW50",
+                    "ZXJfcGxheWVyX2xldmVsGAUgASgFIsUDCg5DYW1lcmFTZXR0aW5ncxITCgtu",
+                    "ZXh0X2NhbWVyYRgBIAEoCRIzCg1pbnRlcnBvbGF0aW9uGAIgAygOMhwuQWxs",
+                    "RW51bS5DYW1lcmFJbnRlcnBvbGF0aW9uEioKC3RhcmdldF90eXBlGAMgAygO",
+                    "MhUuQWxsRW51bS5DYW1lcmFUYXJnZXQSFQoNZWFzZV9pbl9zcGVlZBgEIAMo",
+                    "AhIWCg5lYXN0X291dF9zcGVlZBgFIAMoAhIYChBkdXJhdGlvbl9zZWNvbmRz",
+                    "GAYgAygCEhQKDHdhaXRfc2Vjb25kcxgHIAMoAhIaChJ0cmFuc2l0aW9uX3Nl",
+                    "Y29uZHMYCCADKAISFAoMYW5nbGVfZGVncmVlGAkgAygCEhsKE2FuZ2xlX29m",
+                    "ZnNldF9kZWdyZWUYCiADKAISFAoMcGl0Y2hfZGVncmVlGAsgAygCEhsKE3Bp",
+                    "dGNoX29mZnNldF9kZWdyZWUYDCADKAISEwoLcm9sbF9kZWdyZWUYDSADKAIS",
+                    "FwoPZGlzdGFuY2VfbWV0ZXJzGA4gAygCEhYKDmhlaWdodF9wZXJjZW50GA8g",
+                    "AygCEhYKDnZlcnRfY3RyX3JhdGlvGBAgAygCIlwKDUJhZGdlU2V0dGluZ3MS",
+                    "JgoKYmFkZ2VfdHlwZRgBIAEoDjISLkFsbEVudW0uQmFkZ2VUeXBlEhIKCmJh",
+                    "ZGdlX3JhbmsYAiABKAUSDwoHdGFyZ2V0cxgDIAMoBSJZChVUeXBlRWZmZWN0",
+                    "aXZlU2V0dGluZ3MSFQoNYXR0YWNrX3NjYWxhchgBIAMoAhIpCgthdHRhY2tf",
+                    "dHlwZRgCIAEoDjIULkFsbEVudW0uUG9rZW1vblR5cGUiKAoUTW92ZVNlcXVl",
+                    "bmNlU2V0dGluZ3MSEAoIc2VxdWVuY2UYASADKAkipwMKDE1vdmVTZXR0aW5n",
+                    "cxIxCgttb3ZlbWVudF9pZBgBIAEoDjIcLkFsbEVudW0uUG9rZW1vbk1vdmVt",
+                    "ZW50VHlwZRIUCgxhbmltYXRpb25faWQYAiABKAUSKgoMcG9rZW1vbl90eXBl",
+                    "GAMgASgOMhQuQWxsRW51bS5Qb2tlbW9uVHlwZRINCgVwb3dlchgEIAEoAhIX",
+                    "Cg9hY2N1cmFjeV9jaGFuY2UYBSABKAISFwoPY3JpdGljYWxfY2hhbmNlGAYg",
+                    "ASgCEhMKC2hlYWxfc2NhbGFyGAcgASgCEhsKE3N0YW1pbmFfbG9zc19zY2Fs",
+                    "YXIYCCABKAISGQoRdHJhaW5lcl9sZXZlbF9taW4YCSABKAUSGQoRdHJhaW5l",
+                    "cl9sZXZlbF9tYXgYCiABKAUSEAoIdmZ4X25hbWUYCyABKAkSEwoLZHVyYXRp",
+                    "b25fbXMYDCABKAUSHgoWZGFtYWdlX3dpbmRvd19zdGFydF9tcxgNIAEoBRIc",
+                    "ChRkYW1hZ2Vfd2luZG93X2VuZF9tcxgOIAEoBRIUCgxlbmVyZ3lfZGVsdGEY",
+                    "DyABKAUivgYKD1Bva2Vtb25TZXR0aW5ncxImCgpwb2tlbW9uX2lkGAEgASgO",
+                    "MhIuQWxsRW51bS5Qb2tlbW9uSWQSEwoLbW9kZWxfc2NhbGUYAyABKAISIgoE",
+                    "dHlwZRgEIAEoDjIULkFsbEVudW0uUG9rZW1vblR5cGUSJAoGdHlwZV8yGAUg",
+                    "ASgOMhQuQWxsRW51bS5Qb2tlbW9uVHlwZRJDCgZjYW1lcmEYBiABKAsyMy5Q",
+                    "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuQ2FtZXJhQXR0cmli",
+                    "dXRlcxJJCgllbmNvdW50ZXIYByABKAsyNi5Qb2tlbW9uR28uUm9ja2V0QVBJ",
+                    "LkdlbmVyYXRlZENvZGUuRW5jb3VudGVyQXR0cmlidXRlcxJBCgVzdGF0cxgI",
+                    "IAEoCzIyLlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5TdGF0",
+                    "c0F0dHJpYnV0ZXMSKQoLcXVpY2tfbW92ZXMYCSADKA4yFC5BbGxFbnVtLlBv",
+                    "a2Vtb25Nb3ZlEi0KD2NpbmVtYXRpY19tb3ZlcxgKIAMoDjIULkFsbEVudW0u",
+                    "UG9rZW1vbk1vdmUSFgoOYW5pbWF0aW9uX3RpbWUYCyADKAISKQoNZXZvbHV0",
+                    "aW9uX2lkcxgMIAMoDjISLkFsbEVudW0uUG9rZW1vbklkEhYKDmV2b2x1dGlv",
+                    "bl9waXBzGA0gASgFEiQKBWNsYXNzGA4gASgOMhUuQWxsRW51bS5Qb2tlbW9u",
+                    "Q2xhc3MSGAoQcG9rZWRleF9oZWlnaHRfbRgPIAEoAhIZChFwb2tlZGV4X3dl",
+                    "aWdodF9rZxgQIAEoAhItChFwYXJlbnRfcG9rZW1vbl9pZBgRIAEoDjISLkFs",
+                    "bEVudW0uUG9rZW1vbklkEhYKDmhlaWdodF9zdGRfZGV2GBIgASgCEhYKDndl",
+                    "aWdodF9zdGRfZGV2GBMgASgCEhwKFGttX2Rpc3RhbmNlX3RvX2hhdGNoGBQg",
+                    "ASgCEisKCWZhbWlseV9pZBgVIAEoDjIYLkFsbEVudW0uUG9rZW1vbkZhbWls",
+                    "eUlkEhcKD2NhbmR5X3RvX2V2b2x2ZRgWIAEoBSKXAQoQQ2FtZXJhQXR0cmli",
+                    "dXRlcxIVCg1kaXNrX3JhZGl1c19tGAEgASgCEhkKEWN5bGluZGVyX3JhZGl1",
+                    "c19tGAIgASgCEhkKEWN5bGluZGVyX2hlaWdodF9tGAMgASgCEhkKEWN5bGlu",
+                    "ZGVyX2dyb3VuZF9tGAQgASgCEhsKE3Nob3VsZGVyX21vZGVfc2NhbGUYBSAB",
+                    "KAIinQIKE0VuY291bnRlckF0dHJpYnV0ZXMSGQoRYmFzZV9jYXB0dXJlX3Jh",
+                    "dGUYASABKAISFgoOYmFzZV9mbGVlX3JhdGUYAiABKAISGgoSY29sbGlzaW9u",
+                    "X3JhZGl1c19tGAMgASgCEhoKEmNvbGxpc2lvbl9oZWlnaHRfbRgEIAEoAhIf",
+                    "Chdjb2xsaXNpb25faGVhZF9yYWRpdXNfbRgFIAEoAhIzCg1tb3ZlbWVudF90",
+                    "eXBlGAYgASgOMhwuQWxsRW51bS5Qb2tlbW9uTW92ZW1lbnRUeXBlEhgKEG1v",
+                    "dmVtZW50X3RpbWVyX3MYByABKAISEwoLanVtcF90aW1lX3MYCCABKAISFgoO",
+                    "YXR0YWNrX3RpbWVyX3MYCSABKAIibgoPU3RhdHNBdHRyaWJ1dGVzEhQKDGJh",
+                    "c2Vfc3RhbWluYRgBIAEoBRITCgtiYXNlX2F0dGFjaxgCIAEoBRIUCgxiYXNl",
+                    "X2RlZmVuc2UYAyABKAUSGgoSZG9kZ2VfZW5lcmd5X2RlbHRhGAggASgFIpwH",
+                    "CgxJdGVtU2V0dGluZ3MSIAoHaXRlbV9pZBgBIAEoDjIPLkFsbEVudW0uSXRl",
+                    "bUlkEiQKCWl0ZW1fdHlwZRgCIAEoDjIRLkFsbEVudW0uSXRlbVR5cGUSJwoI",
+                    "Y2F0ZWdvcnkYAyABKA4yFS5BbGxFbnVtLkl0ZW1DYXRlZ29yeRIRCglkcm9w",
+                    "X2ZyZXEYBCABKAISGgoSZHJvcF90cmFpbmVyX2xldmVsGAUgASgFEkcKCHBv",
+                    "a2ViYWxsGAYgASgLMjUuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRD",
+                    "b2RlLlBva2ViYWxsQXR0cmlidXRlcxJDCgZwb3Rpb24YByABKAsyMy5Qb2tl",
+                    "bW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG90aW9uQXR0cmlidXRl",
+                    "cxJDCgZyZXZpdmUYCCABKAsyMy5Qb2tlbW9uR28uUm9ja2V0QVBJLkdlbmVy",
+                    "YXRlZENvZGUuUmV2aXZlQXR0cmlidXRlcxJDCgZiYXR0bGUYCSABKAsyMy5Q",
+                    "b2tlbW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuQmF0dGxlQXR0cmli",
+                    "dXRlcxI/CgRmb29kGAogASgLMjEuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5l",
+                    "cmF0ZWRDb2RlLkZvb2RBdHRyaWJ1dGVzElgKEWludmVudG9yeV91cGdyYWRl",
+                    "GAsgASgLMj0uUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLklu",
+                    "dmVudG9yeVVwZ3JhZGVBdHRyaWJ1dGVzEk4KCHhwX2Jvb3N0GAwgASgLMjwu",
+                    "UG9rZW1vbkdvLlJvY2tldEFQSS5HZW5lcmF0ZWRDb2RlLkV4cGVyaWVuY2VC",
+                    "b29zdEF0dHJpYnV0ZXMSRQoHaW5jZW5zZRgNIAEoCzI0LlBva2Vtb25Hby5S",
+                    "b2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5JbmNlbnNlQXR0cmlidXRlcxJQCg1l",
+                    "Z2dfaW5jdWJhdG9yGA4gASgLMjkuUG9rZW1vbkdvLlJvY2tldEFQSS5HZW5l",
+                    "cmF0ZWRDb2RlLkVnZ0luY3ViYXRvckF0dHJpYnV0ZXMSUAoNZm9ydF9tb2Rp",
+                    "ZmllchgPIAEoCzI5LlBva2Vtb25Hby5Sb2NrZXRBUEkuR2VuZXJhdGVkQ29k",
+                    "ZS5Gb3J0TW9kaWZpZXJBdHRyaWJ1dGVzIicKEEJhdHRsZUF0dHJpYnV0ZXMS",
+                    "EwoLc3RhX3BlcmNlbnQYASABKAIidgoWRWdnSW5jdWJhdG9yQXR0cmlidXRl",
+                    "cxIxCg5pbmN1YmF0b3JfdHlwZRgBIAEoDjIZLkFsbEVudW0uRWdnSW5jdWJh",
+                    "dG9yVHlwZRIMCgR1c2VzGAIgASgFEhsKE2Rpc3RhbmNlX211bHRpcGxpZXIY",
+                    "AyABKAIiTQoZRXhwZXJpZW5jZUJvb3N0QXR0cmlidXRlcxIVCg14cF9tdWx0",
+                    "aXBsaWVyGAEgASgCEhkKEWJvb3N0X2R1cmF0aW9uX21zGAIgASgFIm8KDkZv",
+                    "b2RBdHRyaWJ1dGVzEigKC2l0ZW1fZWZmZWN0GAEgAygOMhMuQWxsRW51bS5J",
+                    "dGVtRWZmZWN0EhsKE2l0ZW1fZWZmZWN0X3BlcmNlbnQYAiADKAISFgoOZ3Jv",
+                    "d3RoX3BlcmNlbnQYAyABKAIiYgoWRm9ydE1vZGlmaWVyQXR0cmlidXRlcxIh",
+                    "Chltb2RpZmllcl9saWZldGltZV9zZWNvbmRzGAEgASgFEiUKHXRyb3lfZGlz",
+                    "a19udW1fcG9rZW1vbl9zcGF3bmVkGAIgASgFIskCChFJbmNlbnNlQXR0cmli",
+                    "dXRlcxIgChhpbmNlbnNlX2xpZmV0aW1lX3NlY29uZHMYASABKAUSKgoMcG9r",
+                    "ZW1vbl90eXBlGAIgAygOMhQuQWxsRW51bS5Qb2tlbW9uVHlwZRIoCiBwb2tl",
+                    "bW9uX2luY2Vuc2VfdHlwZV9wcm9iYWJpbGl0eRgDIAEoAhIwCihzdGFuZGlu",
+                    "Z190aW1lX2JldHdlZW5fZW5jb3VudGVyc19zZWNvbmRzGAQgASgFEi0KJW1v",
+                    "dmluZ190aW1lX2JldHdlZW5fZW5jb3VudGVyX3NlY29uZHMYBSABKAUSNQot",
+                    "ZGlzdGFuY2VfcmVxdWlyZWRfZm9yX3Nob3J0ZXJfaW50ZXJ2YWxfbWV0ZXJz",
+                    "GAYgASgFEiQKHHBva2Vtb25fYXR0cmFjdGVkX2xlbmd0aF9zZWMYByABKAUi",
+                    "bQoaSW52ZW50b3J5VXBncmFkZUF0dHJpYnV0ZXMSGgoSYWRkaXRpb25hbF9z",
+                    "dG9yYWdlGAEgASgFEjMKDHVwZ3JhZGVfdHlwZRgCIAEoDjIdLkFsbEVudW0u",
+                    "SW52ZW50b3J5VXBncmFkZVR5cGUijAEKElBva2ViYWxsQXR0cmlidXRlcxIo",
+                    "CgtpdGVtX2VmZmVjdBgBIAEoDjITLkFsbEVudW0uSXRlbUVmZmVjdBIVCg1j",
+                    "YXB0dXJlX211bHRpGAIgASgCEhwKFGNhcHR1cmVfbXVsdGlfZWZmZWN0GAMg",
+                    "ASgCEhcKD2l0ZW1fZWZmZWN0X21vZBgEIAEoAiI7ChBQb3Rpb25BdHRyaWJ1",
+                    "dGVzEhMKC3N0YV9wZXJjZW50GAEgASgCEhIKCnN0YV9hbW91bnQYAiABKAUi",
+                    "JwoQUmV2aXZlQXR0cmlidXRlcxITCgtzdGFfcGVyY2VudBgBIAEoAiIkCg9U",
+                    "cmFuc2ZlclBva2Vtb24SEQoJUG9rZW1vbklkGAEgASgGIjoKElRyYW5zZmVy",
+                    "UG9rZW1vbk91dBIOCgZTdGF0dXMYASABKAUSFAoMQ2FuZHlBd2FyZGVkGAIg",
+                    "ASgFIiIKDUV2b2x2ZVBva2Vtb24SEQoJUG9rZW1vbklkGAEgASgGIqoDChBF",
+                    "dm9sdmVQb2tlbW9uT3V0ElcKBlJlc3VsdBgBIAEoDjJHLlBva2Vtb25Hby5S",
+                    "b2NrZXRBUEkuR2VuZXJhdGVkQ29kZS5Fdm9sdmVQb2tlbW9uT3V0LkV2b2x2",
+                    "ZVBva2Vtb25TdGF0dXMSQgoORXZvbHZlZFBva2Vtb24YAiABKAsyKi5Qb2tl",
+                    "bW9uR28uUm9ja2V0QVBJLkdlbmVyYXRlZENvZGUuUG9rZW1vbhISCgpFeHBB",
+                    "d2FyZGVkGAMgASgFEhQKDENhbmR5QXdhcmRlZBgEIAEoBSLOAQoTRXZvbHZl",
+                    "UG9rZW1vblN0YXR1cxIZChVQT0tFTU9OX0VWT0xWRURfVU5TRVQQABIbChdQ",
+                    "T0tFTU9OX0VWT0xWRURfU1VDQ0VTUxABEhoKFkZBSUxFRF9QT0tFTU9OX01J",
+                    "U1NJTkcQAhIhCh1GQUlMRURfSU5TVUZGSUNJRU5UX1JFU09VUkNFUxADEiAK",
+                    "HEZBSUxFRF9QT0tFTU9OX0NBTk5PVF9FVk9MVkUQBBIeChpGQUlMRURfUE9L",
+                    "RU1PTl9JU19ERVBMT1lFRBAFYgZwcm90bzM="));
+            descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
+                new pbr::FileDescriptor[] { global::PokemonGo.RocketAPI.GeneratedCode.AllEnumReflection.Descriptor, },
+                new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[]
+                {
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetPlayerResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GetPlayerResponse.Parser,
+                        new[] {"Unknown1", "Profile"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.Profile),
+                        global::PokemonGo.RocketAPI.GeneratedCode.Profile.Parser,
+                        new[]
+                        {
+                            "CreationTime", "Username", "Team", "Tutorial", "Avatar", "PokeStorage", "ItemStorage",
+                            "DailyBonus", "Unknown12", "Unknown13", "Currency"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus),
+                        global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus.Parser,
+                        new[] {"NextCollectTimestampMs", "NextDefenderBonusCollectTimestampMs"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.Currency),
+                        global::PokemonGo.RocketAPI.GeneratedCode.Currency.Parser, new[] {"Type", "Amount"}, null, null,
+                        null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails),
+                        global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails.Parser,
+                        new[] {"Unknown2", "Unknown3", "Unknown9", "Unknown10"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadSettingsRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.DownloadSettingsRequest.Parser, new[] {"Hash"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetInventoryResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GetInventoryResponse.Parser,
+                        new[] {"Success", "InventoryDelta"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta),
+                        global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta.Parser,
+                        new[] {"OriginalTimestampMs", "NewTimestampMs", "InventoryItems"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem),
+                        global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem.Parser,
+                        new[] {"ModifiedTimestampMs", "DeletedItemKey", "InventoryItemData"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData),
+                        global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData.Parser,
+                        new[]
+                        {
+                            "Pokemon", "Item", "PokedexEntry", "PlayerStats", "PlayerCurrency", "PlayerCamera",
+                            "InventoryUpgrades", "AppliedItems", "EggIncubators", "PokemonFamily"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.RecycleInventoryItem),
+                        global::PokemonGo.RocketAPI.GeneratedCode.RecycleInventoryItem.Parser, new[] {"ItemId", "Count"},
+                        null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.Pokemon),
+                        global::PokemonGo.RocketAPI.GeneratedCode.Pokemon.Parser,
+                        new[]
+                        {
+                            "Id", "PokemonType", "Cp", "Stamina", "StaminaMax", "Move1", "Move2", "DeployedFortId",
+                            "OwnerName", "IsEgg", "EggKmWalkedTarget", "EggKmWalkedStart", "Origin", "HeightM",
+                            "WeightKg", "IndividualAttack", "IndividualDefense", "IndividualStamina", "CpMultiplier",
+                            "Pokeball", "CapturedCellId", "BattlesAttacked", "BattlesDefended", "EggIncubatorId",
+                            "CreationTimeMs", "NumUpgrades", "AdditionalCpMultiplier", "Favorite", "Nickname",
+                            "FromFort"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.Item),
+                        global::PokemonGo.RocketAPI.GeneratedCode.Item.Parser, new[] {"Item_", "Count", "Unseen"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry.Parser,
+                        new[]
+                        {
+                            "PokedexEntryNumber", "TimesEncountered", "TimesCaptured", "EvolutionStonePieces",
+                            "EvolutionStones"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats.Parser,
+                        new[]
+                        {
+                            "Level", "Experience", "PrevLevelXp", "NextLevelXp", "KmWalked", "PokemonsEncountered",
+                            "UniquePokedexEntries", "PokemonsCaptured", "Evolutions", "PokeStopVisits",
+                            "PokeballsThrown", "EggsHatched", "BigMagikarpCaught", "BattleAttackWon",
+                            "BattleAttackTotal", "BattleDefendedWon", "BattleTrainingWon", "BattleTrainingTotal",
+                            "PrestigeRaisedTotal", "PrestigeDroppedTotal", "PokemonDeployed", "PokemonCaughtByType",
+                            "SmallRattataCaught"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency.Parser, new[] {"Gems"}, null, null,
+                        null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera.Parser, new[] {"IsDefaultCamera"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades),
+                        global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades.Parser, new[] {"InventoryUpgrades_"},
+                        null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade),
+                        global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade.Parser,
+                        new[] {"Item", "UpgradeType", "AdditionalStorage"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems),
+                        global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems.Parser, new[] {"Item"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem),
+                        global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem.Parser,
+                        new[] {"ItemType", "ItemTypeCategory", "ExpireMs", "AppliedMs"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators.Parser, new[] {"EggIncubator"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator.Parser,
+                        new[]
+                        {
+                            "ItemId", "ItemType", "IncubatorType", "UsesRemaining", "PokemonId", "StartKmWalked",
+                            "TargetKmWalked"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily.Parser, new[] {"FamilyId", "Candy"},
+                        null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetMapObjectsRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GetMapObjectsRequest.Parser,
+                        new[] {"CellId", "SinceTimestampMs", "Latitude", "Longitude"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetMapObjectsResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GetMapObjectsResponse.Parser,
+                        new[] {"MapCells", "Status"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MapCell),
+                        global::PokemonGo.RocketAPI.GeneratedCode.MapCell.Parser,
+                        new[]
+                        {
+                            "S2CellId", "CurrentTimestampMs", "Forts", "SpawnPoints", "DeletedObjects", "IsTruncatedList",
+                            "FortSummaries", "DecimatedSpawnPoints", "WildPokemons", "CatchablePokemons",
+                            "NearbyPokemons"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortData),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortData.Parser,
+                        new[]
+                        {
+                            "Id", "LastModifiedTimestampMs", "Latitude", "Longitude", "Enabled", "Type", "OwnedByTeam",
+                            "GuardPokemonId", "GuardPokemonCp", "GymPoints", "IsInBattle", "CooldownCompleteTimestampMs",
+                            "Sponsor", "RenderingType", "ActiveFortModifier", "LureInfo"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo.Parser,
+                        new[] {"FortId", "Unknown2", "ActivePokemonId", "LureExpiresTimestampMs"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint),
+                        global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint.Parser, new[] {"Latitude", "Longitude"},
+                        null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSummary),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortSummary.Parser,
+                        new[] {"FortSummaryId", "LastModifiedTimestampMs", "Latitude", "Longitude"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon),
+                        global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon.Parser,
+                        new[]
+                        {
+                            "EncounterId", "LastModifiedTimestampMs", "Latitude", "Longitude", "SpawnpointId",
+                            "PokemonData", "TimeTillHiddenMs"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonData),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PokemonData.Parser,
+                        new[]
+                        {
+                            "Id", "PokemonId", "Cp", "Stamina", "StaminaMax", "Move1", "Move2", "DeployedFortId",
+                            "OwnerName", "IsEgg", "EggKmWalkedTarget", "EggKmWalkedStart", "Origin", "HeightM",
+                            "WeightKg", "IndividualAttack", "IndividualDefense", "IndividualStamina", "CpMultiplier",
+                            "Pokeball", "CapturedCellId", "BattlesAttacked", "BattlesDefended", "EggIncubatorId",
+                            "CreationTimeMs", "NumUpgrades", "AdditionalCpMultiplier", "Favorite", "Nickname",
+                            "FromFort"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon),
+                        global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon.Parser,
+                        new[]
+                        {"SpawnpointId", "EncounterId", "PokemonId", "ExpirationTimestampMs", "Latitude", "Longitude"},
+                        null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon),
+                        global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon.Parser,
+                        new[] {"PokemonId", "DistanceInMeters", "EncounterId"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadSettingsResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.DownloadSettingsResponse.Parser,
+                        new[] {"Error", "Hash", "Settings"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings.Parser,
+                        new[]
+                        {"FortSettings", "MapSettings", "LevelSettings", "InventorySettings", "MinimumClientVersion"},
+                        null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortSettings.Parser,
+                        new[]
+                        {
+                            "InteractionRangeMeters", "MaxTotalDeployedPokemon", "MaxPlayerDeployedPokemon",
+                            "DeployStaminaMultiplier", "DeployAttackMultiplier", "FarInteractionRangeMeters"
+                        }, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MapSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.MapSettings.Parser,
+                        new[]
+                        {
+                            "PokemonVisibleRange", "PokeNavRangeMeters", "EncounterRangeMeters",
+                            "GetMapObjectsMinRefreshSeconds", "GetMapObjectsMaxRefreshSeconds",
+                            "GetMapObjectsMinDistanceMeters", "GoogleMapsApiKey"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings.Parser,
+                        new[] {"TrainerCpModifier", "TrainerDifficultyModifier"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings.Parser,
+                        new[] {"MaxPokemon", "MaxBagItems", "BasePokemon", "BaseBagItems", "BaseEggs"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerUpdateRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PlayerUpdateRequest.Parser,
+                        new[] {"Latitude", "Longitude"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerUpdateResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PlayerUpdateResponse.Parser,
+                        new[] {"WildPokemons", "Forts", "FortsNearby"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesRequest.Parser, null, null, null,
+                        null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Parser,
+                        new[] {"Success", "ItemTemplates", "TimestampMs"}, null, null,
+                        new pbr::GeneratedClrTypeInfo[]
+                        {
+                            new pbr::GeneratedClrTypeInfo(
+                                typeof(
+                                    global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.
+                                        ItemTemplate),
+                                global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types
+                                    .ItemTemplate.Parser,
+                                new[]
+                                {
+                                    "TemplateId", "PokemonSettings", "ItemSettings", "MoveSettings", "MoveSequenceSettings",
+                                    "TypeEffective", "BadgeSettings", "Camera", "PlayerLevel", "GymLevel",
+                                    "BattleSettings", "EncounterSettings", "IapItemDisplay", "IapSettings",
+                                    "PokemonUpgrades", "EquippedBadges"
+                                }, null, null, null)
+                        }),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.UseItemCaptureRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.UseItemCaptureRequest.Parser,
+                        new[] {"ItemId", "EncounterId", "SpawnPointGuid"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.UseItemCaptureResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.UseItemCaptureResponse.Parser,
+                        new[]
+                        {
+                            "Success", "ItemCaptureMult", "ItemFleeMult", "StopMovement", "StopAttack", "TargetMax",
+                            "TargetSlow"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonRequest.Parser, new[] {"PokemonId"},
+                        null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Parser,
+                        new[] {"Result", "CandyAwarded"}, null,
+                        new[] {typeof(global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Types.Result)},
+                        null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetHatchedEggsRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GetHatchedEggsRequest.Parser, null, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.GetHatchedEggsResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GetHatchedEggsResponse.Parser,
+                        new[] {"Success", "PokemonId", "ExperienceAwarded", "CandyAwarded", "StardustAwarded"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSearchRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortSearchRequest.Parser,
+                        new[] {"FortId", "PlayerLatitude", "PlayerLongitude", "FortLatitude", "FortLongitude"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Parser,
+                        new[]
+                        {
+                            "Result", "ItemsAwarded", "GemsAwarded", "PokemonDataEgg", "ExperienceAwarded",
+                            "CooldownCompleteTimestampMs", "ChainHackSequenceNumber"
+                        }, null,
+                        new[] {typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.Result)},
+                        new pbr::GeneratedClrTypeInfo[]
+                        {
+                            new pbr::GeneratedClrTypeInfo(
+                                typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward),
+                                global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward.Parser,
+                                new[] {"ItemId", "ItemCount"}, null, null, null)
+                        }),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortDetailsRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortDetailsRequest.Parser,
+                        new[] {"FortId", "Latitude", "Longitude"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortDetailsResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortDetailsResponse.Parser,
+                        new[]
+                        {
+                            "FortId", "TeamColor", "PokemonData", "Name", "ImageUrls", "Fp", "Stamina", "MaxStamina",
+                            "Type", "Latitude", "Longitude", "Description", "Modifiers"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortModifier),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortModifier.Parser,
+                        new[] {"ItemId", "ExpirationTimestampMs", "DeployerPlayerCodename"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EncounterRequest.Parser,
+                        new[] {"EncounterId", "SpawnpointId", "PlayerLatitude", "PlayerLongitude"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Parser,
+                        new[] {"WildPokemon", "Background", "Status", "CaptureProbability"}, null,
+                        new[]
+                        {
+                            typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Background),
+                            typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Status)
+                        }, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability),
+                        global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability.Parser,
+                        new[] {"PokeballType", "CaptureProbability_", "ReticleDifficultyScale"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterRequest.Parser,
+                        new[] {"EncounterId", "FortId", "PlayerLatitude", "PlayerLongitude"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Parser,
+                        new[] {"Result", "PokemonData", "CaptureProbability"}, null,
+                        new[] {typeof(global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Types.Result)},
+                        null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonRequest.Parser,
+                        new[]
+                        {
+                            "EncounterId", "Pokeball", "NormalizedReticleSize", "SpawnPointGuid", "HitPokemon",
+                            "SpinModifier", "NormalizedHitPosition"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Parser,
+                        new[] {"Status", "MissPercent", "CapturedPokemonId", "Scores"}, null,
+                        new[] {typeof(global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Types.CatchStatus)},
+                        null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore),
+                        global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore.Parser,
+                        new[] {"ActivityType", "Xp", "Candy", "Stardust"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.CheckAwardedBadgesRequest),
+                        global::PokemonGo.RocketAPI.GeneratedCode.CheckAwardedBadgesRequest.Parser, null, null, null,
+                        null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.CheckAwardedBadgesResponse),
+                        global::PokemonGo.RocketAPI.GeneratedCode.CheckAwardedBadgesResponse.Parser,
+                        new[] {"Success", "AwardedBadges", "AwardedBadgeLevels"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings.Parser,
+                        new[] {"EquipBadgeCooldownMs", "CatchProbabilityBonus", "FleeProbabilityBonus"}, null, null,
+                        null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings.Parser,
+                        new[] {"UpgradesPerLevel", "AllowedLevelsAbovePlayer", "CandyCost", "StardustCost"}, null, null,
+                        null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.IapSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.IapSettings.Parser,
+                        new[]
+                        {
+                            "DailyBonusCoins", "DailyDefenderBonusPerPokemon", "DailyDefenderBonusMaxDefenders",
+                            "DailyDefenderBonusCurrency", "MinTimeBetweenClaimsMs", "DailyBonusEnabled",
+                            "DailyDefenderBonusEnabled"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay),
+                        global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay.Parser,
+                        new[] {"Sku", "Category", "SortOrder", "ItemIds", "Counts"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings.Parser,
+                        new[]
+                        {
+                            "SpinBonusThreshold", "ExcellentThrowThreshold", "GreatThrowThreshold", "NiceThrowThreshold",
+                            "MilestoneThreshold"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings.Parser,
+                        new[]
+                        {
+                            "EnergyPerSec", "DodgeEnergyCost", "RetargetSeconds", "EnemyAttackInterval",
+                            "AttackServerInterval", "RoundDurationSeconds", "BonusTimePerAllySeconds",
+                            "MaximumAttackersPerBattle", "SameTypeAttackBonusMultiplier", "MaximumEnergy",
+                            "EnergyDeltaPerHealthLost", "DodgeDurationMs", "MinimumPlayerLevel", "SwapDurationMs"
+                        }, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings.Parser,
+                        new[] {"RequiredExperience", "LeaderSlots", "TrainerSlots", "SearchRollBonus"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings.Parser,
+                        new[]
+                        {
+                            "RankNum", "RequiredExperience", "CpMultiplier", "MaxEggPlayerLevel", "MaxEncounterPlayerLevel"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings.Parser,
+                        new[]
+                        {
+                            "NextCamera", "Interpolation", "TargetType", "EaseInSpeed", "EastOutSpeed", "DurationSeconds",
+                            "WaitSeconds", "TransitionSeconds", "AngleDegree", "AngleOffsetDegree", "PitchDegree",
+                            "PitchOffsetDegree", "RollDegree", "DistanceMeters", "HeightPercent", "VertCtrRatio"
+                        }, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings.Parser,
+                        new[] {"BadgeType", "BadgeRank", "Targets"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings.Parser,
+                        new[] {"AttackScalar", "AttackType"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings.Parser, new[] {"Sequence"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings.Parser,
+                        new[]
+                        {
+                            "MovementId", "AnimationId", "PokemonType", "Power", "AccuracyChance", "CriticalChance",
+                            "HealScalar", "StaminaLossScalar", "TrainerLevelMin", "TrainerLevelMax", "VfxName",
+                            "DurationMs", "DamageWindowStartMs", "DamageWindowEndMs", "EnergyDelta"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings.Parser,
+                        new[]
+                        {
+                            "PokemonId", "ModelScale", "Type", "Type2", "Camera", "Encounter", "Stats", "QuickMoves",
+                            "CinematicMoves", "AnimationTime", "EvolutionIds", "EvolutionPips", "Class",
+                            "PokedexHeightM", "PokedexWeightKg", "ParentPokemonId", "HeightStdDev", "WeightStdDev",
+                            "KmDistanceToHatch", "FamilyId", "CandyToEvolve"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes.Parser,
+                        new[]
+                        {"DiskRadiusM", "CylinderRadiusM", "CylinderHeightM", "CylinderGroundM", "ShoulderModeScale"},
+                        null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes.Parser,
+                        new[]
+                        {
+                            "BaseCaptureRate", "BaseFleeRate", "CollisionRadiusM", "CollisionHeightM",
+                            "CollisionHeadRadiusM", "MovementType", "MovementTimerS", "JumpTimeS", "AttackTimerS"
+                        }, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes.Parser,
+                        new[] {"BaseStamina", "BaseAttack", "BaseDefense", "DodgeEnergyDelta"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings),
+                        global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings.Parser,
+                        new[]
+                        {
+                            "ItemId", "ItemType", "Category", "DropFreq", "DropTrainerLevel", "Pokeball", "Potion",
+                            "Revive", "Battle", "Food", "InventoryUpgrade", "XpBoost", "Incense", "EggIncubator",
+                            "FortModifier"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes.Parser, new[] {"StaPercent"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes.Parser,
+                        new[] {"IncubatorType", "Uses", "DistanceMultiplier"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes.Parser,
+                        new[] {"XpMultiplier", "BoostDurationMs"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes.Parser,
+                        new[] {"ItemEffect", "ItemEffectPercent", "GrowthPercent"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes.Parser,
+                        new[] {"ModifierLifetimeSeconds", "TroyDiskNumPokemonSpawned"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes.Parser,
+                        new[]
+                        {
+                            "IncenseLifetimeSeconds", "PokemonType", "PokemonIncenseTypeProbability",
+                            "StandingTimeBetweenEncountersSeconds", "MovingTimeBetweenEncounterSeconds",
+                            "DistanceRequiredForShorterIntervalMeters", "PokemonAttractedLengthSec"
+                        }, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(
+                        typeof(global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes.Parser,
+                        new[] {"AdditionalStorage", "UpgradeType"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes.Parser,
+                        new[] {"ItemEffect", "CaptureMulti", "CaptureMultiEffect", "ItemEffectMod"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes.Parser,
+                        new[] {"StaPercent", "StaAmount"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes),
+                        global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes.Parser, new[] {"StaPercent"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.TransferPokemon),
+                        global::PokemonGo.RocketAPI.GeneratedCode.TransferPokemon.Parser, new[] {"PokemonId"}, null,
+                        null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.TransferPokemonOut),
+                        global::PokemonGo.RocketAPI.GeneratedCode.TransferPokemonOut.Parser,
+                        new[] {"Status", "CandyAwarded"}, null, null, null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemon),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemon.Parser, new[] {"PokemonId"}, null, null,
+                        null),
+                    new pbr::GeneratedClrTypeInfo(typeof(global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut),
+                        global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Parser,
+                        new[] {"Result", "EvolvedPokemon", "ExpAwarded", "CandyAwarded"}, null,
+                        new[]
+                        {typeof(global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Types.EvolvePokemonStatus)},
+                        null)
+                }));
+        }
+
+        #endregion
+    }
+
+    #region Messages
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GetPlayerResponse : pb::IMessage<GetPlayerResponse>
+    {
+        /// <summary>Field number for the "unknown1" field.</summary>
+        public const int Unknown1FieldNumber = 1;
+
+        /// <summary>Field number for the "profile" field.</summary>
+        public const int ProfileFieldNumber = 2;
+
+        private static readonly pb::MessageParser<GetPlayerResponse> _parser =
+            new pb::MessageParser<GetPlayerResponse>(() => new GetPlayerResponse());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.Profile profile_;
+        private int unknown1_;
+
+        public GetPlayerResponse()
+        {
+            OnConstruction();
+        }
+
+        public GetPlayerResponse(GetPlayerResponse other) : this()
+        {
+            unknown1_ = other.unknown1_;
+            Profile = other.profile_ != null ? other.Profile.Clone() : null;
+        }
+
+        public static pb::MessageParser<GetPlayerResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[0]; }
+        }
+
+        public int Unknown1
+        {
+            get { return unknown1_; }
+            set { unknown1_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.Profile Profile
+        {
+            get { return profile_; }
+            set { profile_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GetPlayerResponse Clone()
+        {
+            return new GetPlayerResponse(this);
+        }
+
+        public bool Equals(GetPlayerResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Unknown1 != other.Unknown1) return false;
+            if (!Equals(Profile, other.Profile)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Unknown1 != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(Unknown1);
+            }
+            if (profile_ != null)
+            {
+                output.WriteRawTag(18);
+                output.WriteMessage(Profile);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Unknown1 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown1);
+            }
+            if (profile_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Profile);
+            }
+            return size;
+        }
+
+        public void MergeFrom(GetPlayerResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Unknown1 != 0)
+            {
+                Unknown1 = other.Unknown1;
+            }
+            if (other.profile_ != null)
+            {
+                if (profile_ == null)
+                {
+                    profile_ = new global::PokemonGo.RocketAPI.GeneratedCode.Profile();
+                }
+                Profile.MergeFrom(other.Profile);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Unknown1 = input.ReadInt32();
+                            break;
+                        }
+                    case 18:
+                        {
+                            if (profile_ == null)
+                            {
+                                profile_ = new global::PokemonGo.RocketAPI.GeneratedCode.Profile();
+                            }
+                            input.ReadMessage(profile_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GetPlayerResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Unknown1 != 0) hash ^= Unknown1.GetHashCode();
+            if (profile_ != null) hash ^= Profile.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class Profile : pb::IMessage<Profile>
+    {
+        /// <summary>Field number for the "creation_time" field.</summary>
+        public const int CreationTimeFieldNumber = 1;
+
+        /// <summary>Field number for the "username" field.</summary>
+        public const int UsernameFieldNumber = 2;
+
+        /// <summary>Field number for the "team" field.</summary>
+        public const int TeamFieldNumber = 5;
+
+        /// <summary>Field number for the "tutorial" field.</summary>
+        public const int TutorialFieldNumber = 7;
+
+        /// <summary>Field number for the "avatar" field.</summary>
+        public const int AvatarFieldNumber = 8;
+
+        /// <summary>Field number for the "poke_storage" field.</summary>
+        public const int PokeStorageFieldNumber = 9;
+
+        /// <summary>Field number for the "item_storage" field.</summary>
+        public const int ItemStorageFieldNumber = 10;
+
+        /// <summary>Field number for the "daily_bonus" field.</summary>
+        public const int DailyBonusFieldNumber = 11;
+
+        /// <summary>Field number for the "unknown12" field.</summary>
+        public const int Unknown12FieldNumber = 12;
+
+        /// <summary>Field number for the "unknown13" field.</summary>
+        public const int Unknown13FieldNumber = 13;
+
+        /// <summary>Field number for the "currency" field.</summary>
+        public const int CurrencyFieldNumber = 14;
+
+        private static readonly pb::MessageParser<Profile> _parser = new pb::MessageParser<Profile>(() => new Profile());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.Currency>
+            _repeated_currency_codec
+                = pb::FieldCodec.ForMessage(114, global::PokemonGo.RocketAPI.GeneratedCode.Currency.Parser);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.Currency> currency_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.Currency>();
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails avatar_;
+        private long creationTime_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus dailyBonus_;
+        private int itemStorage_;
+        private int pokeStorage_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.TeamColor team_ = 0;
+        private pb::ByteString tutorial_ = pb::ByteString.Empty;
+        private pb::ByteString unknown12_ = pb::ByteString.Empty;
+        private pb::ByteString unknown13_ = pb::ByteString.Empty;
+        private string username_ = "";
+
+        public Profile()
+        {
+            OnConstruction();
+        }
+
+        public Profile(Profile other) : this()
+        {
+            creationTime_ = other.creationTime_;
+            username_ = other.username_;
+            team_ = other.team_;
+            tutorial_ = other.tutorial_;
+            Avatar = other.avatar_ != null ? other.Avatar.Clone() : null;
+            pokeStorage_ = other.pokeStorage_;
+            itemStorage_ = other.itemStorage_;
+            DailyBonus = other.dailyBonus_ != null ? other.DailyBonus.Clone() : null;
+            unknown12_ = other.unknown12_;
+            unknown13_ = other.unknown13_;
+            currency_ = other.currency_.Clone();
+        }
+
+        public static pb::MessageParser<Profile> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[1]; }
+        }
+
+        public long CreationTime
+        {
+            get { return creationTime_; }
+            set { creationTime_ = value; }
+        }
+
+        public string Username
+        {
+            get { return username_; }
+            set { username_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.TeamColor Team
+        {
+            get { return team_; }
+            set { team_ = value; }
+        }
+
+        public pb::ByteString Tutorial
+        {
+            get { return tutorial_; }
+            set { tutorial_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails Avatar
+        {
+            get { return avatar_; }
+            set { avatar_ = value; }
+        }
+
+        public int PokeStorage
+        {
+            get { return pokeStorage_; }
+            set { pokeStorage_ = value; }
+        }
+
+        public int ItemStorage
+        {
+            get { return itemStorage_; }
+            set { itemStorage_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus DailyBonus
+        {
+            get { return dailyBonus_; }
+            set { dailyBonus_ = value; }
+        }
+
+        public pb::ByteString Unknown12
+        {
+            get { return unknown12_; }
+            set { unknown12_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public pb::ByteString Unknown13
+        {
+            get { return unknown13_; }
+            set { unknown13_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.Currency> Currency
+        {
+            get { return currency_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public Profile Clone()
+        {
+            return new Profile(this);
+        }
+
+        public bool Equals(Profile other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (CreationTime != other.CreationTime) return false;
+            if (Username != other.Username) return false;
+            if (Team != other.Team) return false;
+            if (Tutorial != other.Tutorial) return false;
+            if (!Equals(Avatar, other.Avatar)) return false;
+            if (PokeStorage != other.PokeStorage) return false;
+            if (ItemStorage != other.ItemStorage) return false;
+            if (!Equals(DailyBonus, other.DailyBonus)) return false;
+            if (Unknown12 != other.Unknown12) return false;
+            if (Unknown13 != other.Unknown13) return false;
+            if (!currency_.Equals(other.currency_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (CreationTime != 0L)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt64(CreationTime);
+            }
+            if (Username.Length != 0)
+            {
+                output.WriteRawTag(18);
+                output.WriteString(Username);
+            }
+            if (Team != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteEnum((int)Team);
+            }
+            if (Tutorial.Length != 0)
+            {
+                output.WriteRawTag(58);
+                output.WriteBytes(Tutorial);
+            }
+            if (avatar_ != null)
+            {
+                output.WriteRawTag(66);
+                output.WriteMessage(Avatar);
+            }
+            if (PokeStorage != 0)
+            {
+                output.WriteRawTag(72);
+                output.WriteInt32(PokeStorage);
+            }
+            if (ItemStorage != 0)
+            {
+                output.WriteRawTag(80);
+                output.WriteInt32(ItemStorage);
+            }
+            if (dailyBonus_ != null)
+            {
+                output.WriteRawTag(90);
+                output.WriteMessage(DailyBonus);
+            }
+            if (Unknown12.Length != 0)
+            {
+                output.WriteRawTag(98);
+                output.WriteBytes(Unknown12);
+            }
+            if (Unknown13.Length != 0)
+            {
+                output.WriteRawTag(106);
+                output.WriteBytes(Unknown13);
+            }
+            currency_.WriteTo(output, _repeated_currency_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (CreationTime != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(CreationTime);
+            }
+            if (Username.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Username);
+            }
+            if (Team != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Team);
+            }
+            if (Tutorial.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeBytesSize(Tutorial);
+            }
+            if (avatar_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Avatar);
+            }
+            if (PokeStorage != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokeStorage);
+            }
+            if (ItemStorage != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ItemStorage);
+            }
+            if (dailyBonus_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(DailyBonus);
+            }
+            if (Unknown12.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeBytesSize(Unknown12);
+            }
+            if (Unknown13.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeBytesSize(Unknown13);
+            }
+            size += currency_.CalculateSize(_repeated_currency_codec);
+            return size;
+        }
+
+        public void MergeFrom(Profile other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.CreationTime != 0L)
+            {
+                CreationTime = other.CreationTime;
+            }
+            if (other.Username.Length != 0)
+            {
+                Username = other.Username;
+            }
+            if (other.Team != 0)
+            {
+                Team = other.Team;
+            }
+            if (other.Tutorial.Length != 0)
+            {
+                Tutorial = other.Tutorial;
+            }
+            if (other.avatar_ != null)
+            {
+                if (avatar_ == null)
+                {
+                    avatar_ = new global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails();
+                }
+                Avatar.MergeFrom(other.Avatar);
+            }
+            if (other.PokeStorage != 0)
+            {
+                PokeStorage = other.PokeStorage;
+            }
+            if (other.ItemStorage != 0)
+            {
+                ItemStorage = other.ItemStorage;
+            }
+            if (other.dailyBonus_ != null)
+            {
+                if (dailyBonus_ == null)
+                {
+                    dailyBonus_ = new global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus();
+                }
+                DailyBonus.MergeFrom(other.DailyBonus);
+            }
+            if (other.Unknown12.Length != 0)
+            {
+                Unknown12 = other.Unknown12;
+            }
+            if (other.Unknown13.Length != 0)
+            {
+                Unknown13 = other.Unknown13;
+            }
+            currency_.Add(other.currency_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            CreationTime = input.ReadInt64();
+                            break;
+                        }
+                    case 18:
+                        {
+                            Username = input.ReadString();
+                            break;
+                        }
+                    case 40:
+                        {
+                            team_ = (global::PokemonGo.RocketAPI.GeneratedCode.TeamColor)input.ReadEnum();
+                            break;
+                        }
+                    case 58:
+                        {
+                            Tutorial = input.ReadBytes();
+                            break;
+                        }
+                    case 66:
+                        {
+                            if (avatar_ == null)
+                            {
+                                avatar_ = new global::PokemonGo.RocketAPI.GeneratedCode.AvatarDetails();
+                            }
+                            input.ReadMessage(avatar_);
+                            break;
+                        }
+                    case 72:
+                        {
+                            PokeStorage = input.ReadInt32();
+                            break;
+                        }
+                    case 80:
+                        {
+                            ItemStorage = input.ReadInt32();
+                            break;
+                        }
+                    case 90:
+                        {
+                            if (dailyBonus_ == null)
+                            {
+                                dailyBonus_ = new global::PokemonGo.RocketAPI.GeneratedCode.DailyBonus();
+                            }
+                            input.ReadMessage(dailyBonus_);
+                            break;
+                        }
+                    case 98:
+                        {
+                            Unknown12 = input.ReadBytes();
+                            break;
+                        }
+                    case 106:
+                        {
+                            Unknown13 = input.ReadBytes();
+                            break;
+                        }
+                    case 114:
+                        {
+                            currency_.AddEntriesFrom(input, _repeated_currency_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as Profile);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (CreationTime != 0L) hash ^= CreationTime.GetHashCode();
+            if (Username.Length != 0) hash ^= Username.GetHashCode();
+            if (Team != 0) hash ^= Team.GetHashCode();
+            if (Tutorial.Length != 0) hash ^= Tutorial.GetHashCode();
+            if (avatar_ != null) hash ^= Avatar.GetHashCode();
+            if (PokeStorage != 0) hash ^= PokeStorage.GetHashCode();
+            if (ItemStorage != 0) hash ^= ItemStorage.GetHashCode();
+            if (dailyBonus_ != null) hash ^= DailyBonus.GetHashCode();
+            if (Unknown12.Length != 0) hash ^= Unknown12.GetHashCode();
+            if (Unknown13.Length != 0) hash ^= Unknown13.GetHashCode();
+            hash ^= currency_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class DailyBonus : pb::IMessage<DailyBonus>
+    {
+        /// <summary>Field number for the "NextCollectTimestampMs" field.</summary>
+        public const int NextCollectTimestampMsFieldNumber = 1;
+
+        /// <summary>Field number for the "NextDefenderBonusCollectTimestampMs" field.</summary>
+        public const int NextDefenderBonusCollectTimestampMsFieldNumber = 2;
+
+        private static readonly pb::MessageParser<DailyBonus> _parser =
+            new pb::MessageParser<DailyBonus>(() => new DailyBonus());
+
+        private long nextCollectTimestampMs_;
+        private long nextDefenderBonusCollectTimestampMs_;
+
+        public DailyBonus()
+        {
+            OnConstruction();
+        }
+
+        public DailyBonus(DailyBonus other) : this()
+        {
+            nextCollectTimestampMs_ = other.nextCollectTimestampMs_;
+            nextDefenderBonusCollectTimestampMs_ = other.nextDefenderBonusCollectTimestampMs_;
+        }
+
+        public static pb::MessageParser<DailyBonus> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[2]; }
+        }
+
+        public long NextCollectTimestampMs
+        {
+            get { return nextCollectTimestampMs_; }
+            set { nextCollectTimestampMs_ = value; }
+        }
+
+        public long NextDefenderBonusCollectTimestampMs
+        {
+            get { return nextDefenderBonusCollectTimestampMs_; }
+            set { nextDefenderBonusCollectTimestampMs_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public DailyBonus Clone()
+        {
+            return new DailyBonus(this);
+        }
+
+        public bool Equals(DailyBonus other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (NextCollectTimestampMs != other.NextCollectTimestampMs) return false;
+            if (NextDefenderBonusCollectTimestampMs != other.NextDefenderBonusCollectTimestampMs) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (NextCollectTimestampMs != 0L)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt64(NextCollectTimestampMs);
+            }
+            if (NextDefenderBonusCollectTimestampMs != 0L)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt64(NextDefenderBonusCollectTimestampMs);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (NextCollectTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(NextCollectTimestampMs);
+            }
+            if (NextDefenderBonusCollectTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(NextDefenderBonusCollectTimestampMs);
+            }
+            return size;
+        }
+
+        public void MergeFrom(DailyBonus other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.NextCollectTimestampMs != 0L)
+            {
+                NextCollectTimestampMs = other.NextCollectTimestampMs;
+            }
+            if (other.NextDefenderBonusCollectTimestampMs != 0L)
+            {
+                NextDefenderBonusCollectTimestampMs = other.NextDefenderBonusCollectTimestampMs;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            NextCollectTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 16:
+                        {
+                            NextDefenderBonusCollectTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as DailyBonus);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (NextCollectTimestampMs != 0L) hash ^= NextCollectTimestampMs.GetHashCode();
+            if (NextDefenderBonusCollectTimestampMs != 0L) hash ^= NextDefenderBonusCollectTimestampMs.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class Currency : pb::IMessage<Currency>
+    {
+        /// <summary>Field number for the "type" field.</summary>
+        public const int TypeFieldNumber = 1;
+
+        /// <summary>Field number for the "amount" field.</summary>
+        public const int AmountFieldNumber = 2;
+
+        private static readonly pb::MessageParser<Currency> _parser =
+            new pb::MessageParser<Currency>(() => new Currency());
+
+        private int amount_;
+        private string type_ = "";
+
+        public Currency()
+        {
+            OnConstruction();
+        }
+
+        public Currency(Currency other) : this()
+        {
+            type_ = other.type_;
+            amount_ = other.amount_;
+        }
+
+        public static pb::MessageParser<Currency> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[3]; }
+        }
+
+        public string Type
+        {
+            get { return type_; }
+            set { type_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public int Amount
+        {
+            get { return amount_; }
+            set { amount_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public Currency Clone()
+        {
+            return new Currency(this);
+        }
+
+        public bool Equals(Currency other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Type != other.Type) return false;
+            if (Amount != other.Amount) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Type.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(Type);
+            }
+            if (Amount != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(Amount);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Type.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Type);
+            }
+            if (Amount != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Amount);
+            }
+            return size;
+        }
+
+        public void MergeFrom(Currency other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Type.Length != 0)
+            {
+                Type = other.Type;
+            }
+            if (other.Amount != 0)
+            {
+                Amount = other.Amount;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            Type = input.ReadString();
+                            break;
+                        }
+                    case 16:
+                        {
+                            Amount = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as Currency);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Type.Length != 0) hash ^= Type.GetHashCode();
+            if (Amount != 0) hash ^= Amount.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class AvatarDetails : pb::IMessage<AvatarDetails>
+    {
+        /// <summary>Field number for the "unknown2" field.</summary>
+        public const int Unknown2FieldNumber = 2;
+
+        /// <summary>Field number for the "unknown3" field.</summary>
+        public const int Unknown3FieldNumber = 3;
+
+        /// <summary>Field number for the "unknown9" field.</summary>
+        public const int Unknown9FieldNumber = 9;
+
+        /// <summary>Field number for the "unknown10" field.</summary>
+        public const int Unknown10FieldNumber = 10;
+
+        private static readonly pb::MessageParser<AvatarDetails> _parser =
+            new pb::MessageParser<AvatarDetails>(() => new AvatarDetails());
+
+        private int unknown10_;
+        private int unknown2_;
+        private int unknown3_;
+        private int unknown9_;
+
+        public AvatarDetails()
+        {
+            OnConstruction();
+        }
+
+        public AvatarDetails(AvatarDetails other) : this()
+        {
+            unknown2_ = other.unknown2_;
+            unknown3_ = other.unknown3_;
+            unknown9_ = other.unknown9_;
+            unknown10_ = other.unknown10_;
+        }
+
+        public static pb::MessageParser<AvatarDetails> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[4]; }
+        }
+
+        public int Unknown2
+        {
+            get { return unknown2_; }
+            set { unknown2_ = value; }
+        }
+
+        public int Unknown3
+        {
+            get { return unknown3_; }
+            set { unknown3_ = value; }
+        }
+
+        public int Unknown9
+        {
+            get { return unknown9_; }
+            set { unknown9_ = value; }
+        }
+
+        public int Unknown10
+        {
+            get { return unknown10_; }
+            set { unknown10_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public AvatarDetails Clone()
+        {
+            return new AvatarDetails(this);
+        }
+
+        public bool Equals(AvatarDetails other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Unknown2 != other.Unknown2) return false;
+            if (Unknown3 != other.Unknown3) return false;
+            if (Unknown9 != other.Unknown9) return false;
+            if (Unknown10 != other.Unknown10) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Unknown2 != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(Unknown2);
+            }
+            if (Unknown3 != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(Unknown3);
+            }
+            if (Unknown9 != 0)
+            {
+                output.WriteRawTag(72);
+                output.WriteInt32(Unknown9);
+            }
+            if (Unknown10 != 0)
+            {
+                output.WriteRawTag(80);
+                output.WriteInt32(Unknown10);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Unknown2 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown2);
+            }
+            if (Unknown3 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown3);
+            }
+            if (Unknown9 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown9);
+            }
+            if (Unknown10 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Unknown10);
+            }
+            return size;
+        }
+
+        public void MergeFrom(AvatarDetails other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Unknown2 != 0)
+            {
+                Unknown2 = other.Unknown2;
+            }
+            if (other.Unknown3 != 0)
+            {
+                Unknown3 = other.Unknown3;
+            }
+            if (other.Unknown9 != 0)
+            {
+                Unknown9 = other.Unknown9;
+            }
+            if (other.Unknown10 != 0)
+            {
+                Unknown10 = other.Unknown10;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 16:
+                        {
+                            Unknown2 = input.ReadInt32();
+                            break;
+                        }
+                    case 24:
+                        {
+                            Unknown3 = input.ReadInt32();
+                            break;
+                        }
+                    case 72:
+                        {
+                            Unknown9 = input.ReadInt32();
+                            break;
+                        }
+                    case 80:
+                        {
+                            Unknown10 = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as AvatarDetails);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Unknown2 != 0) hash ^= Unknown2.GetHashCode();
+            if (Unknown3 != 0) hash ^= Unknown3.GetHashCode();
+            if (Unknown9 != 0) hash ^= Unknown9.GetHashCode();
+            if (Unknown10 != 0) hash ^= Unknown10.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class DownloadSettingsRequest : pb::IMessage<DownloadSettingsRequest>
+    {
+        /// <summary>Field number for the "hash" field.</summary>
+        public const int HashFieldNumber = 1;
+
+        private static readonly pb::MessageParser<DownloadSettingsRequest> _parser =
+            new pb::MessageParser<DownloadSettingsRequest>(() => new DownloadSettingsRequest());
+
+        private string hash_ = "";
+
+        public DownloadSettingsRequest()
+        {
+            OnConstruction();
+        }
+
+        public DownloadSettingsRequest(DownloadSettingsRequest other) : this()
+        {
+            hash_ = other.hash_;
+        }
+
+        public static pb::MessageParser<DownloadSettingsRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[5]; }
+        }
+
+        public string Hash
+        {
+            get { return hash_; }
+            set { hash_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public DownloadSettingsRequest Clone()
+        {
+            return new DownloadSettingsRequest(this);
+        }
+
+        public bool Equals(DownloadSettingsRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Hash != other.Hash) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Hash.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(Hash);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Hash.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Hash);
+            }
+            return size;
+        }
+
+        public void MergeFrom(DownloadSettingsRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Hash.Length != 0)
+            {
+                Hash = other.Hash;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            Hash = input.ReadString();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as DownloadSettingsRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Hash.Length != 0) hash ^= Hash.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GetInventoryResponse : pb::IMessage<GetInventoryResponse>
+    {
+        /// <summary>Field number for the "success" field.</summary>
+        public const int SuccessFieldNumber = 1;
+
+        /// <summary>Field number for the "inventory_delta" field.</summary>
+        public const int InventoryDeltaFieldNumber = 2;
+
+        private static readonly pb::MessageParser<GetInventoryResponse> _parser =
+            new pb::MessageParser<GetInventoryResponse>(() => new GetInventoryResponse());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta inventoryDelta_;
+        private bool success_;
+
+        public GetInventoryResponse()
+        {
+            OnConstruction();
+        }
+
+        public GetInventoryResponse(GetInventoryResponse other) : this()
+        {
+            success_ = other.success_;
+            InventoryDelta = other.inventoryDelta_ != null ? other.InventoryDelta.Clone() : null;
+        }
+
+        public static pb::MessageParser<GetInventoryResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[6]; }
+        }
+
+        public bool Success
+        {
+            get { return success_; }
+            set { success_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta InventoryDelta
+        {
+            get { return inventoryDelta_; }
+            set { inventoryDelta_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GetInventoryResponse Clone()
+        {
+            return new GetInventoryResponse(this);
+        }
+
+        public bool Equals(GetInventoryResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Success != other.Success) return false;
+            if (!Equals(InventoryDelta, other.InventoryDelta)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Success != false)
+            {
+                output.WriteRawTag(8);
+                output.WriteBool(Success);
+            }
+            if (inventoryDelta_ != null)
+            {
+                output.WriteRawTag(18);
+                output.WriteMessage(InventoryDelta);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Success != false)
+            {
+                size += 1 + 1;
+            }
+            if (inventoryDelta_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventoryDelta);
+            }
+            return size;
+        }
+
+        public void MergeFrom(GetInventoryResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Success != false)
+            {
+                Success = other.Success;
+            }
+            if (other.inventoryDelta_ != null)
+            {
+                if (inventoryDelta_ == null)
+                {
+                    inventoryDelta_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta();
+                }
+                InventoryDelta.MergeFrom(other.InventoryDelta);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Success = input.ReadBool();
+                            break;
+                        }
+                    case 18:
+                        {
+                            if (inventoryDelta_ == null)
+                            {
+                                inventoryDelta_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryDelta();
+                            }
+                            input.ReadMessage(inventoryDelta_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GetInventoryResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Success != false) hash ^= Success.GetHashCode();
+            if (inventoryDelta_ != null) hash ^= InventoryDelta.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class InventoryDelta : pb::IMessage<InventoryDelta>
+    {
+        /// <summary>Field number for the "original_timestamp_ms" field.</summary>
+        public const int OriginalTimestampMsFieldNumber = 1;
+
+        /// <summary>Field number for the "new_timestamp_ms" field.</summary>
+        public const int NewTimestampMsFieldNumber = 2;
+
+        /// <summary>Field number for the "inventory_items" field.</summary>
+        public const int InventoryItemsFieldNumber = 3;
+
+        private static readonly pb::MessageParser<InventoryDelta> _parser =
+            new pb::MessageParser<InventoryDelta>(() => new InventoryDelta());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem>
+            _repeated_inventoryItems_codec
+                = pb::FieldCodec.ForMessage(26, global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem.Parser);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem> inventoryItems_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem>();
+
+        private long newTimestampMs_;
+        private long originalTimestampMs_;
+
+        public InventoryDelta()
+        {
+            OnConstruction();
+        }
+
+        public InventoryDelta(InventoryDelta other) : this()
+        {
+            originalTimestampMs_ = other.originalTimestampMs_;
+            newTimestampMs_ = other.newTimestampMs_;
+            inventoryItems_ = other.inventoryItems_.Clone();
+        }
+
+        public static pb::MessageParser<InventoryDelta> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[7]; }
+        }
+
+        public long OriginalTimestampMs
+        {
+            get { return originalTimestampMs_; }
+            set { originalTimestampMs_ = value; }
+        }
+
+        public long NewTimestampMs
+        {
+            get { return newTimestampMs_; }
+            set { newTimestampMs_ = value; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryItem> InventoryItems
+        {
+            get { return inventoryItems_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public InventoryDelta Clone()
+        {
+            return new InventoryDelta(this);
+        }
+
+        public bool Equals(InventoryDelta other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (OriginalTimestampMs != other.OriginalTimestampMs) return false;
+            if (NewTimestampMs != other.NewTimestampMs) return false;
+            if (!inventoryItems_.Equals(other.inventoryItems_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (OriginalTimestampMs != 0L)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt64(OriginalTimestampMs);
+            }
+            if (NewTimestampMs != 0L)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt64(NewTimestampMs);
+            }
+            inventoryItems_.WriteTo(output, _repeated_inventoryItems_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (OriginalTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(OriginalTimestampMs);
+            }
+            if (NewTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(NewTimestampMs);
+            }
+            size += inventoryItems_.CalculateSize(_repeated_inventoryItems_codec);
+            return size;
+        }
+
+        public void MergeFrom(InventoryDelta other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.OriginalTimestampMs != 0L)
+            {
+                OriginalTimestampMs = other.OriginalTimestampMs;
+            }
+            if (other.NewTimestampMs != 0L)
+            {
+                NewTimestampMs = other.NewTimestampMs;
+            }
+            inventoryItems_.Add(other.inventoryItems_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            OriginalTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 16:
+                        {
+                            NewTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 26:
+                        {
+                            inventoryItems_.AddEntriesFrom(input, _repeated_inventoryItems_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as InventoryDelta);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (OriginalTimestampMs != 0L) hash ^= OriginalTimestampMs.GetHashCode();
+            if (NewTimestampMs != 0L) hash ^= NewTimestampMs.GetHashCode();
+            hash ^= inventoryItems_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class InventoryItem : pb::IMessage<InventoryItem>
+    {
+        /// <summary>Field number for the "modified_timestamp_ms" field.</summary>
+        public const int ModifiedTimestampMsFieldNumber = 1;
+
+        /// <summary>Field number for the "deleted_item_key" field.</summary>
+        public const int DeletedItemKeyFieldNumber = 2;
+
+        /// <summary>Field number for the "inventory_item_data" field.</summary>
+        public const int InventoryItemDataFieldNumber = 3;
+
+        private static readonly pb::MessageParser<InventoryItem> _parser =
+            new pb::MessageParser<InventoryItem>(() => new InventoryItem());
+
+        private long deletedItemKey_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData inventoryItemData_;
+        private long modifiedTimestampMs_;
+
+        public InventoryItem()
+        {
+            OnConstruction();
+        }
+
+        public InventoryItem(InventoryItem other) : this()
+        {
+            modifiedTimestampMs_ = other.modifiedTimestampMs_;
+            deletedItemKey_ = other.deletedItemKey_;
+            InventoryItemData = other.inventoryItemData_ != null ? other.InventoryItemData.Clone() : null;
+        }
+
+        public static pb::MessageParser<InventoryItem> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[8]; }
+        }
+
+        public long ModifiedTimestampMs
+        {
+            get { return modifiedTimestampMs_; }
+            set { modifiedTimestampMs_ = value; }
+        }
+
+        public long DeletedItemKey
+        {
+            get { return deletedItemKey_; }
+            set { deletedItemKey_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData InventoryItemData
+        {
+            get { return inventoryItemData_; }
+            set { inventoryItemData_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public InventoryItem Clone()
+        {
+            return new InventoryItem(this);
+        }
+
+        public bool Equals(InventoryItem other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ModifiedTimestampMs != other.ModifiedTimestampMs) return false;
+            if (DeletedItemKey != other.DeletedItemKey) return false;
+            if (!Equals(InventoryItemData, other.InventoryItemData)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ModifiedTimestampMs != 0L)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt64(ModifiedTimestampMs);
+            }
+            if (DeletedItemKey != 0L)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt64(DeletedItemKey);
+            }
+            if (inventoryItemData_ != null)
+            {
+                output.WriteRawTag(26);
+                output.WriteMessage(InventoryItemData);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ModifiedTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(ModifiedTimestampMs);
+            }
+            if (DeletedItemKey != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(DeletedItemKey);
+            }
+            if (inventoryItemData_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventoryItemData);
+            }
+            return size;
+        }
+
+        public void MergeFrom(InventoryItem other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ModifiedTimestampMs != 0L)
+            {
+                ModifiedTimestampMs = other.ModifiedTimestampMs;
+            }
+            if (other.DeletedItemKey != 0L)
+            {
+                DeletedItemKey = other.DeletedItemKey;
+            }
+            if (other.inventoryItemData_ != null)
+            {
+                if (inventoryItemData_ == null)
+                {
+                    inventoryItemData_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData();
+                }
+                InventoryItemData.MergeFrom(other.InventoryItemData);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            ModifiedTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 16:
+                        {
+                            DeletedItemKey = input.ReadInt64();
+                            break;
+                        }
+                    case 26:
+                        {
+                            if (inventoryItemData_ == null)
+                            {
+                                inventoryItemData_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryItemData();
+                            }
+                            input.ReadMessage(inventoryItemData_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as InventoryItem);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ModifiedTimestampMs != 0L) hash ^= ModifiedTimestampMs.GetHashCode();
+            if (DeletedItemKey != 0L) hash ^= DeletedItemKey.GetHashCode();
+            if (inventoryItemData_ != null) hash ^= InventoryItemData.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class InventoryItemData : pb::IMessage<InventoryItemData>
+    {
+        /// <summary>Field number for the "pokemon" field.</summary>
+        public const int PokemonFieldNumber = 1;
+
+        /// <summary>Field number for the "item" field.</summary>
+        public const int ItemFieldNumber = 2;
+
+        /// <summary>Field number for the "pokedex_entry" field.</summary>
+        public const int PokedexEntryFieldNumber = 3;
+
+        /// <summary>Field number for the "player_stats" field.</summary>
+        public const int PlayerStatsFieldNumber = 4;
+
+        /// <summary>Field number for the "player_currency" field.</summary>
+        public const int PlayerCurrencyFieldNumber = 5;
+
+        /// <summary>Field number for the "player_camera" field.</summary>
+        public const int PlayerCameraFieldNumber = 6;
+
+        /// <summary>Field number for the "inventory_upgrades" field.</summary>
+        public const int InventoryUpgradesFieldNumber = 7;
+
+        /// <summary>Field number for the "applied_items" field.</summary>
+        public const int AppliedItemsFieldNumber = 8;
+
+        /// <summary>Field number for the "egg_incubators" field.</summary>
+        public const int EggIncubatorsFieldNumber = 9;
+
+        /// <summary>Field number for the "pokemon_family" field.</summary>
+        public const int PokemonFamilyFieldNumber = 10;
+
+        private static readonly pb::MessageParser<InventoryItemData> _parser =
+            new pb::MessageParser<InventoryItemData>(() => new InventoryItemData());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems appliedItems_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators eggIncubators_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades inventoryUpgrades_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.Item item_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera playerCamera_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency playerCurrency_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats playerStats_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry pokedexEntry_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemon_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily pokemonFamily_;
+
+        public InventoryItemData()
+        {
+            OnConstruction();
+        }
+
+        public InventoryItemData(InventoryItemData other) : this()
+        {
+            Pokemon = other.pokemon_ != null ? other.Pokemon.Clone() : null;
+            Item = other.item_ != null ? other.Item.Clone() : null;
+            PokedexEntry = other.pokedexEntry_ != null ? other.PokedexEntry.Clone() : null;
+            PlayerStats = other.playerStats_ != null ? other.PlayerStats.Clone() : null;
+            PlayerCurrency = other.playerCurrency_ != null ? other.PlayerCurrency.Clone() : null;
+            PlayerCamera = other.playerCamera_ != null ? other.PlayerCamera.Clone() : null;
+            InventoryUpgrades = other.inventoryUpgrades_ != null ? other.InventoryUpgrades.Clone() : null;
+            AppliedItems = other.appliedItems_ != null ? other.AppliedItems.Clone() : null;
+            EggIncubators = other.eggIncubators_ != null ? other.EggIncubators.Clone() : null;
+            PokemonFamily = other.pokemonFamily_ != null ? other.PokemonFamily.Clone() : null;
+        }
+
+        public static pb::MessageParser<InventoryItemData> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[9]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData Pokemon
+        {
+            get { return pokemon_; }
+            set { pokemon_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.Item Item
+        {
+            get { return item_; }
+            set { item_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry PokedexEntry
+        {
+            get { return pokedexEntry_; }
+            set { pokedexEntry_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats PlayerStats
+        {
+            get { return playerStats_; }
+            set { playerStats_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency PlayerCurrency
+        {
+            get { return playerCurrency_; }
+            set { playerCurrency_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera PlayerCamera
+        {
+            get { return playerCamera_; }
+            set { playerCamera_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades InventoryUpgrades
+        {
+            get { return inventoryUpgrades_; }
+            set { inventoryUpgrades_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems AppliedItems
+        {
+            get { return appliedItems_; }
+            set { appliedItems_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators EggIncubators
+        {
+            get { return eggIncubators_; }
+            set { eggIncubators_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily PokemonFamily
+        {
+            get { return pokemonFamily_; }
+            set { pokemonFamily_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public InventoryItemData Clone()
+        {
+            return new InventoryItemData(this);
+        }
+
+        public bool Equals(InventoryItemData other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!Equals(Pokemon, other.Pokemon)) return false;
+            if (!Equals(Item, other.Item)) return false;
+            if (!Equals(PokedexEntry, other.PokedexEntry)) return false;
+            if (!Equals(PlayerStats, other.PlayerStats)) return false;
+            if (!Equals(PlayerCurrency, other.PlayerCurrency)) return false;
+            if (!Equals(PlayerCamera, other.PlayerCamera)) return false;
+            if (!Equals(InventoryUpgrades, other.InventoryUpgrades)) return false;
+            if (!Equals(AppliedItems, other.AppliedItems)) return false;
+            if (!Equals(EggIncubators, other.EggIncubators)) return false;
+            if (!Equals(PokemonFamily, other.PokemonFamily)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (pokemon_ != null)
+            {
+                output.WriteRawTag(10);
+                output.WriteMessage(Pokemon);
+            }
+            if (item_ != null)
+            {
+                output.WriteRawTag(18);
+                output.WriteMessage(Item);
+            }
+            if (pokedexEntry_ != null)
+            {
+                output.WriteRawTag(26);
+                output.WriteMessage(PokedexEntry);
+            }
+            if (playerStats_ != null)
+            {
+                output.WriteRawTag(34);
+                output.WriteMessage(PlayerStats);
+            }
+            if (playerCurrency_ != null)
+            {
+                output.WriteRawTag(42);
+                output.WriteMessage(PlayerCurrency);
+            }
+            if (playerCamera_ != null)
+            {
+                output.WriteRawTag(50);
+                output.WriteMessage(PlayerCamera);
+            }
+            if (inventoryUpgrades_ != null)
+            {
+                output.WriteRawTag(58);
+                output.WriteMessage(InventoryUpgrades);
+            }
+            if (appliedItems_ != null)
+            {
+                output.WriteRawTag(66);
+                output.WriteMessage(AppliedItems);
+            }
+            if (eggIncubators_ != null)
+            {
+                output.WriteRawTag(74);
+                output.WriteMessage(EggIncubators);
+            }
+            if (pokemonFamily_ != null)
+            {
+                output.WriteRawTag(82);
+                output.WriteMessage(PokemonFamily);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (pokemon_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Pokemon);
+            }
+            if (item_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Item);
+            }
+            if (pokedexEntry_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokedexEntry);
+            }
+            if (playerStats_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerStats);
+            }
+            if (playerCurrency_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerCurrency);
+            }
+            if (playerCamera_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerCamera);
+            }
+            if (inventoryUpgrades_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventoryUpgrades);
+            }
+            if (appliedItems_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(AppliedItems);
+            }
+            if (eggIncubators_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(EggIncubators);
+            }
+            if (pokemonFamily_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonFamily);
+            }
+            return size;
+        }
+
+        public void MergeFrom(InventoryItemData other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.pokemon_ != null)
+            {
+                if (pokemon_ == null)
+                {
+                    pokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                }
+                Pokemon.MergeFrom(other.Pokemon);
+            }
+            if (other.item_ != null)
+            {
+                if (item_ == null)
+                {
+                    item_ = new global::PokemonGo.RocketAPI.GeneratedCode.Item();
+                }
+                Item.MergeFrom(other.Item);
+            }
+            if (other.pokedexEntry_ != null)
+            {
+                if (pokedexEntry_ == null)
+                {
+                    pokedexEntry_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry();
+                }
+                PokedexEntry.MergeFrom(other.PokedexEntry);
+            }
+            if (other.playerStats_ != null)
+            {
+                if (playerStats_ == null)
+                {
+                    playerStats_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats();
+                }
+                PlayerStats.MergeFrom(other.PlayerStats);
+            }
+            if (other.playerCurrency_ != null)
+            {
+                if (playerCurrency_ == null)
+                {
+                    playerCurrency_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency();
+                }
+                PlayerCurrency.MergeFrom(other.PlayerCurrency);
+            }
+            if (other.playerCamera_ != null)
+            {
+                if (playerCamera_ == null)
+                {
+                    playerCamera_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera();
+                }
+                PlayerCamera.MergeFrom(other.PlayerCamera);
+            }
+            if (other.inventoryUpgrades_ != null)
+            {
+                if (inventoryUpgrades_ == null)
+                {
+                    inventoryUpgrades_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades();
+                }
+                InventoryUpgrades.MergeFrom(other.InventoryUpgrades);
+            }
+            if (other.appliedItems_ != null)
+            {
+                if (appliedItems_ == null)
+                {
+                    appliedItems_ = new global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems();
+                }
+                AppliedItems.MergeFrom(other.AppliedItems);
+            }
+            if (other.eggIncubators_ != null)
+            {
+                if (eggIncubators_ == null)
+                {
+                    eggIncubators_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators();
+                }
+                EggIncubators.MergeFrom(other.EggIncubators);
+            }
+            if (other.pokemonFamily_ != null)
+            {
+                if (pokemonFamily_ == null)
+                {
+                    pokemonFamily_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily();
+                }
+                PokemonFamily.MergeFrom(other.PokemonFamily);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            if (pokemon_ == null)
+                            {
+                                pokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                            }
+                            input.ReadMessage(pokemon_);
+                            break;
+                        }
+                    case 18:
+                        {
+                            if (item_ == null)
+                            {
+                                item_ = new global::PokemonGo.RocketAPI.GeneratedCode.Item();
+                            }
+                            input.ReadMessage(item_);
+                            break;
+                        }
+                    case 26:
+                        {
+                            if (pokedexEntry_ == null)
+                            {
+                                pokedexEntry_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokedexEntry();
+                            }
+                            input.ReadMessage(pokedexEntry_);
+                            break;
+                        }
+                    case 34:
+                        {
+                            if (playerStats_ == null)
+                            {
+                                playerStats_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerStats();
+                            }
+                            input.ReadMessage(playerStats_);
+                            break;
+                        }
+                    case 42:
+                        {
+                            if (playerCurrency_ == null)
+                            {
+                                playerCurrency_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerCurrency();
+                            }
+                            input.ReadMessage(playerCurrency_);
+                            break;
+                        }
+                    case 50:
+                        {
+                            if (playerCamera_ == null)
+                            {
+                                playerCamera_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerCamera();
+                            }
+                            input.ReadMessage(playerCamera_);
+                            break;
+                        }
+                    case 58:
+                        {
+                            if (inventoryUpgrades_ == null)
+                            {
+                                inventoryUpgrades_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrades();
+                            }
+                            input.ReadMessage(inventoryUpgrades_);
+                            break;
+                        }
+                    case 66:
+                        {
+                            if (appliedItems_ == null)
+                            {
+                                appliedItems_ = new global::PokemonGo.RocketAPI.GeneratedCode.AppliedItems();
+                            }
+                            input.ReadMessage(appliedItems_);
+                            break;
+                        }
+                    case 74:
+                        {
+                            if (eggIncubators_ == null)
+                            {
+                                eggIncubators_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubators();
+                            }
+                            input.ReadMessage(eggIncubators_);
+                            break;
+                        }
+                    case 82:
+                        {
+                            if (pokemonFamily_ == null)
+                            {
+                                pokemonFamily_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamily();
+                            }
+                            input.ReadMessage(pokemonFamily_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as InventoryItemData);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (pokemon_ != null) hash ^= Pokemon.GetHashCode();
+            if (item_ != null) hash ^= Item.GetHashCode();
+            if (pokedexEntry_ != null) hash ^= PokedexEntry.GetHashCode();
+            if (playerStats_ != null) hash ^= PlayerStats.GetHashCode();
+            if (playerCurrency_ != null) hash ^= PlayerCurrency.GetHashCode();
+            if (playerCamera_ != null) hash ^= PlayerCamera.GetHashCode();
+            if (inventoryUpgrades_ != null) hash ^= InventoryUpgrades.GetHashCode();
+            if (appliedItems_ != null) hash ^= AppliedItems.GetHashCode();
+            if (eggIncubators_ != null) hash ^= EggIncubators.GetHashCode();
+            if (pokemonFamily_ != null) hash ^= PokemonFamily.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class RecycleInventoryItem : pb::IMessage<RecycleInventoryItem>
+    {
+        /// <summary>Field number for the "item_id" field.</summary>
+        public const int ItemIdFieldNumber = 1;
+
+        /// <summary>Field number for the "count" field.</summary>
+        public const int CountFieldNumber = 2;
+
+        private static readonly pb::MessageParser<RecycleInventoryItem> _parser =
+            new pb::MessageParser<RecycleInventoryItem>(() => new RecycleInventoryItem());
+
+        private int count_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemId itemId_ = 0;
+
+        public RecycleInventoryItem()
+        {
+            OnConstruction();
+        }
+
+        public RecycleInventoryItem(RecycleInventoryItem other) : this()
+        {
+            itemId_ = other.itemId_;
+            count_ = other.count_;
+        }
+
+        public static pb::MessageParser<RecycleInventoryItem> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[10]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemId ItemId
+        {
+            get { return itemId_; }
+            set { itemId_ = value; }
+        }
+
+        public int Count
+        {
+            get { return count_; }
+            set { count_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public RecycleInventoryItem Clone()
+        {
+            return new RecycleInventoryItem(this);
+        }
+
+        public bool Equals(RecycleInventoryItem other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ItemId != other.ItemId) return false;
+            if (Count != other.Count) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ItemId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)ItemId);
+            }
+            if (Count != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(Count);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ItemId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
+            }
+            if (Count != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Count);
+            }
+            return size;
+        }
+
+        public void MergeFrom(RecycleInventoryItem other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ItemId != 0)
+            {
+                ItemId = other.ItemId;
+            }
+            if (other.Count != 0)
+            {
+                Count = other.Count;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            itemId_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemId)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            Count = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as RecycleInventoryItem);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ItemId != 0) hash ^= ItemId.GetHashCode();
+            if (Count != 0) hash ^= Count.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class Pokemon : pb::IMessage<Pokemon>
+    {
+        /// <summary>Field number for the "id" field.</summary>
+        public const int IdFieldNumber = 1;
+
+        /// <summary>Field number for the "pokemon_type" field.</summary>
+        public const int PokemonTypeFieldNumber = 2;
+
+        /// <summary>Field number for the "cp" field.</summary>
+        public const int CpFieldNumber = 3;
+
+        /// <summary>Field number for the "stamina" field.</summary>
+        public const int StaminaFieldNumber = 4;
+
+        /// <summary>Field number for the "stamina_max" field.</summary>
+        public const int StaminaMaxFieldNumber = 5;
+
+        /// <summary>Field number for the "move_1" field.</summary>
+        public const int Move1FieldNumber = 6;
+
+        /// <summary>Field number for the "move_2" field.</summary>
+        public const int Move2FieldNumber = 7;
+
+        /// <summary>Field number for the "deployed_fort_id" field.</summary>
+        public const int DeployedFortIdFieldNumber = 8;
+
+        /// <summary>Field number for the "owner_name" field.</summary>
+        public const int OwnerNameFieldNumber = 9;
+
+        /// <summary>Field number for the "is_egg" field.</summary>
+        public const int IsEggFieldNumber = 10;
+
+        /// <summary>Field number for the "egg_km_walked_target" field.</summary>
+        public const int EggKmWalkedTargetFieldNumber = 11;
+
+        /// <summary>Field number for the "egg_km_walked_start" field.</summary>
+        public const int EggKmWalkedStartFieldNumber = 12;
+
+        /// <summary>Field number for the "origin" field.</summary>
+        public const int OriginFieldNumber = 14;
+
+        /// <summary>Field number for the "height_m" field.</summary>
+        public const int HeightMFieldNumber = 15;
+
+        /// <summary>Field number for the "weight_kg" field.</summary>
+        public const int WeightKgFieldNumber = 16;
+
+        /// <summary>Field number for the "individual_attack" field.</summary>
+        public const int IndividualAttackFieldNumber = 17;
+
+        /// <summary>Field number for the "individual_defense" field.</summary>
+        public const int IndividualDefenseFieldNumber = 18;
+
+        /// <summary>Field number for the "individual_stamina" field.</summary>
+        public const int IndividualStaminaFieldNumber = 19;
+
+        /// <summary>Field number for the "cp_multiplier" field.</summary>
+        public const int CpMultiplierFieldNumber = 20;
+
+        /// <summary>Field number for the "pokeball" field.</summary>
+        public const int PokeballFieldNumber = 21;
+
+        /// <summary>Field number for the "captured_cell_id" field.</summary>
+        public const int CapturedCellIdFieldNumber = 22;
+
+        /// <summary>Field number for the "battles_attacked" field.</summary>
+        public const int BattlesAttackedFieldNumber = 23;
+
+        /// <summary>Field number for the "battles_defended" field.</summary>
+        public const int BattlesDefendedFieldNumber = 24;
+
+        /// <summary>Field number for the "egg_incubator_id" field.</summary>
+        public const int EggIncubatorIdFieldNumber = 25;
+
+        /// <summary>Field number for the "creation_time_ms" field.</summary>
+        public const int CreationTimeMsFieldNumber = 26;
+
+        /// <summary>Field number for the "num_upgrades" field.</summary>
+        public const int NumUpgradesFieldNumber = 27;
+
+        /// <summary>Field number for the "additional_cp_multiplier" field.</summary>
+        public const int AdditionalCpMultiplierFieldNumber = 28;
+
+        /// <summary>Field number for the "favorite" field.</summary>
+        public const int FavoriteFieldNumber = 29;
+
+        /// <summary>Field number for the "nickname" field.</summary>
+        public const int NicknameFieldNumber = 30;
+
+        /// <summary>Field number for the "from_fort" field.</summary>
+        public const int FromFortFieldNumber = 31;
+
+        private static readonly pb::MessageParser<Pokemon> _parser = new pb::MessageParser<Pokemon>(() => new Pokemon());
+        private float additionalCpMultiplier_;
+        private int battlesAttacked_;
+        private int battlesDefended_;
+        private ulong capturedCellId_;
+        private int cp_;
+        private float cpMultiplier_;
+        private ulong creationTimeMs_;
+        private int deployedFortId_;
+        private int eggIncubatorId_;
+        private int eggKmWalkedStart_;
+        private int eggKmWalkedTarget_;
+        private int favorite_;
+        private int fromFort_;
+        private float heightM_;
+        private int id_;
+        private int individualAttack_;
+        private int individualDefense_;
+        private int individualStamina_;
+        private bool isEgg_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove move1_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove move2_ = 0;
+        private string nickname_ = "";
+        private int numUpgrades_;
+        private int origin_;
+        private string ownerName_ = "";
+        private int pokeball_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonId pokemonType_ = 0;
+        private int stamina_;
+        private int staminaMax_;
+        private float weightKg_;
+
+        public Pokemon()
+        {
+            OnConstruction();
+        }
+
+        public Pokemon(Pokemon other) : this()
+        {
+            id_ = other.id_;
+            pokemonType_ = other.pokemonType_;
+            cp_ = other.cp_;
+            stamina_ = other.stamina_;
+            staminaMax_ = other.staminaMax_;
+            move1_ = other.move1_;
+            move2_ = other.move2_;
+            deployedFortId_ = other.deployedFortId_;
+            ownerName_ = other.ownerName_;
+            isEgg_ = other.isEgg_;
+            eggKmWalkedTarget_ = other.eggKmWalkedTarget_;
+            eggKmWalkedStart_ = other.eggKmWalkedStart_;
+            origin_ = other.origin_;
+            heightM_ = other.heightM_;
+            weightKg_ = other.weightKg_;
+            individualAttack_ = other.individualAttack_;
+            individualDefense_ = other.individualDefense_;
+            individualStamina_ = other.individualStamina_;
+            cpMultiplier_ = other.cpMultiplier_;
+            pokeball_ = other.pokeball_;
+            capturedCellId_ = other.capturedCellId_;
+            battlesAttacked_ = other.battlesAttacked_;
+            battlesDefended_ = other.battlesDefended_;
+            eggIncubatorId_ = other.eggIncubatorId_;
+            creationTimeMs_ = other.creationTimeMs_;
+            numUpgrades_ = other.numUpgrades_;
+            additionalCpMultiplier_ = other.additionalCpMultiplier_;
+            favorite_ = other.favorite_;
+            nickname_ = other.nickname_;
+            fromFort_ = other.fromFort_;
+        }
+
+        public static pb::MessageParser<Pokemon> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[11]; }
+        }
+
+        public int Id
+        {
+            get { return id_; }
+            set { id_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonId PokemonType
+        {
+            get { return pokemonType_; }
+            set { pokemonType_ = value; }
+        }
+
+        public int Cp
+        {
+            get { return cp_; }
+            set { cp_ = value; }
+        }
+
+        public int Stamina
+        {
+            get { return stamina_; }
+            set { stamina_ = value; }
+        }
+
+        public int StaminaMax
+        {
+            get { return staminaMax_; }
+            set { staminaMax_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove Move1
+        {
+            get { return move1_; }
+            set { move1_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove Move2
+        {
+            get { return move2_; }
+            set { move2_ = value; }
+        }
+
+        public int DeployedFortId
+        {
+            get { return deployedFortId_; }
+            set { deployedFortId_ = value; }
+        }
+
+        public string OwnerName
+        {
+            get { return ownerName_; }
+            set { ownerName_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public bool IsEgg
+        {
+            get { return isEgg_; }
+            set { isEgg_ = value; }
+        }
+
+        public int EggKmWalkedTarget
+        {
+            get { return eggKmWalkedTarget_; }
+            set { eggKmWalkedTarget_ = value; }
+        }
+
+        public int EggKmWalkedStart
+        {
+            get { return eggKmWalkedStart_; }
+            set { eggKmWalkedStart_ = value; }
+        }
+
+        public int Origin
+        {
+            get { return origin_; }
+            set { origin_ = value; }
+        }
+
+        public float HeightM
+        {
+            get { return heightM_; }
+            set { heightM_ = value; }
+        }
+
+        public float WeightKg
+        {
+            get { return weightKg_; }
+            set { weightKg_ = value; }
+        }
+
+        public int IndividualAttack
+        {
+            get { return individualAttack_; }
+            set { individualAttack_ = value; }
+        }
+
+        public int IndividualDefense
+        {
+            get { return individualDefense_; }
+            set { individualDefense_ = value; }
+        }
+
+        public int IndividualStamina
+        {
+            get { return individualStamina_; }
+            set { individualStamina_ = value; }
+        }
+
+        public float CpMultiplier
+        {
+            get { return cpMultiplier_; }
+            set { cpMultiplier_ = value; }
+        }
+
+        public int Pokeball
+        {
+            get { return pokeball_; }
+            set { pokeball_ = value; }
+        }
+
+        public ulong CapturedCellId
+        {
+            get { return capturedCellId_; }
+            set { capturedCellId_ = value; }
+        }
+
+        public int BattlesAttacked
+        {
+            get { return battlesAttacked_; }
+            set { battlesAttacked_ = value; }
+        }
+
+        public int BattlesDefended
+        {
+            get { return battlesDefended_; }
+            set { battlesDefended_ = value; }
+        }
+
+        public int EggIncubatorId
+        {
+            get { return eggIncubatorId_; }
+            set { eggIncubatorId_ = value; }
+        }
+
+        public ulong CreationTimeMs
+        {
+            get { return creationTimeMs_; }
+            set { creationTimeMs_ = value; }
+        }
+
+        public int NumUpgrades
+        {
+            get { return numUpgrades_; }
+            set { numUpgrades_ = value; }
+        }
+
+        public float AdditionalCpMultiplier
+        {
+            get { return additionalCpMultiplier_; }
+            set { additionalCpMultiplier_ = value; }
+        }
+
+        public int Favorite
+        {
+            get { return favorite_; }
+            set { favorite_ = value; }
+        }
+
+        public string Nickname
+        {
+            get { return nickname_; }
+            set { nickname_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public int FromFort
+        {
+            get { return fromFort_; }
+            set { fromFort_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public Pokemon Clone()
+        {
+            return new Pokemon(this);
+        }
+
+        public bool Equals(Pokemon other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Id != other.Id) return false;
+            if (PokemonType != other.PokemonType) return false;
+            if (Cp != other.Cp) return false;
+            if (Stamina != other.Stamina) return false;
+            if (StaminaMax != other.StaminaMax) return false;
+            if (Move1 != other.Move1) return false;
+            if (Move2 != other.Move2) return false;
+            if (DeployedFortId != other.DeployedFortId) return false;
+            if (OwnerName != other.OwnerName) return false;
+            if (IsEgg != other.IsEgg) return false;
+            if (EggKmWalkedTarget != other.EggKmWalkedTarget) return false;
+            if (EggKmWalkedStart != other.EggKmWalkedStart) return false;
+            if (Origin != other.Origin) return false;
+            if (HeightM != other.HeightM) return false;
+            if (WeightKg != other.WeightKg) return false;
+            if (IndividualAttack != other.IndividualAttack) return false;
+            if (IndividualDefense != other.IndividualDefense) return false;
+            if (IndividualStamina != other.IndividualStamina) return false;
+            if (CpMultiplier != other.CpMultiplier) return false;
+            if (Pokeball != other.Pokeball) return false;
+            if (CapturedCellId != other.CapturedCellId) return false;
+            if (BattlesAttacked != other.BattlesAttacked) return false;
+            if (BattlesDefended != other.BattlesDefended) return false;
+            if (EggIncubatorId != other.EggIncubatorId) return false;
+            if (CreationTimeMs != other.CreationTimeMs) return false;
+            if (NumUpgrades != other.NumUpgrades) return false;
+            if (AdditionalCpMultiplier != other.AdditionalCpMultiplier) return false;
+            if (Favorite != other.Favorite) return false;
+            if (Nickname != other.Nickname) return false;
+            if (FromFort != other.FromFort) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Id != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(Id);
+            }
+            if (PokemonType != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)PokemonType);
+            }
+            if (Cp != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(Cp);
+            }
+            if (Stamina != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(Stamina);
+            }
+            if (StaminaMax != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(StaminaMax);
+            }
+            if (Move1 != 0)
+            {
+                output.WriteRawTag(48);
+                output.WriteEnum((int)Move1);
+            }
+            if (Move2 != 0)
+            {
+                output.WriteRawTag(56);
+                output.WriteEnum((int)Move2);
+            }
+            if (DeployedFortId != 0)
+            {
+                output.WriteRawTag(64);
+                output.WriteInt32(DeployedFortId);
+            }
+            if (OwnerName.Length != 0)
+            {
+                output.WriteRawTag(74);
+                output.WriteString(OwnerName);
+            }
+            if (IsEgg != false)
+            {
+                output.WriteRawTag(80);
+                output.WriteBool(IsEgg);
+            }
+            if (EggKmWalkedTarget != 0)
+            {
+                output.WriteRawTag(88);
+                output.WriteInt32(EggKmWalkedTarget);
+            }
+            if (EggKmWalkedStart != 0)
+            {
+                output.WriteRawTag(96);
+                output.WriteInt32(EggKmWalkedStart);
+            }
+            if (Origin != 0)
+            {
+                output.WriteRawTag(112);
+                output.WriteInt32(Origin);
+            }
+            if (HeightM != 0F)
+            {
+                output.WriteRawTag(125);
+                output.WriteFloat(HeightM);
+            }
+            if (WeightKg != 0F)
+            {
+                output.WriteRawTag(133, 1);
+                output.WriteFloat(WeightKg);
+            }
+            if (IndividualAttack != 0)
+            {
+                output.WriteRawTag(136, 1);
+                output.WriteInt32(IndividualAttack);
+            }
+            if (IndividualDefense != 0)
+            {
+                output.WriteRawTag(144, 1);
+                output.WriteInt32(IndividualDefense);
+            }
+            if (IndividualStamina != 0)
+            {
+                output.WriteRawTag(152, 1);
+                output.WriteInt32(IndividualStamina);
+            }
+            if (CpMultiplier != 0)
+            {
+                output.WriteRawTag(165, 1);
+                output.WriteFloat(CpMultiplier);
+            }
+            if (Pokeball != 0)
+            {
+                output.WriteRawTag(168, 1);
+                output.WriteInt32(Pokeball);
+            }
+            if (CapturedCellId != 0UL)
+            {
+                output.WriteRawTag(176, 1);
+                output.WriteUInt64(CapturedCellId);
+            }
+            if (BattlesAttacked != 0)
+            {
+                output.WriteRawTag(184, 1);
+                output.WriteInt32(BattlesAttacked);
+            }
+            if (BattlesDefended != 0)
+            {
+                output.WriteRawTag(192, 1);
+                output.WriteInt32(BattlesDefended);
+            }
+            if (EggIncubatorId != 0)
+            {
+                output.WriteRawTag(200, 1);
+                output.WriteInt32(EggIncubatorId);
+            }
+            if (CreationTimeMs != 0UL)
+            {
+                output.WriteRawTag(208, 1);
+                output.WriteUInt64(CreationTimeMs);
+            }
+            if (NumUpgrades != 0)
+            {
+                output.WriteRawTag(216, 1);
+                output.WriteInt32(NumUpgrades);
+            }
+            if (AdditionalCpMultiplier != 0)
+            {
+                output.WriteRawTag(229, 1);
+                output.WriteFloat(AdditionalCpMultiplier);
+            }
+            if (Favorite != 0)
+            {
+                output.WriteRawTag(232, 1);
+                output.WriteInt32(Favorite);
+            }
+            if (Nickname.Length != 0)
+            {
+                output.WriteRawTag(242, 1);
+                output.WriteString(Nickname);
+            }
+            if (FromFort != 0)
+            {
+                output.WriteRawTag(248, 1);
+                output.WriteInt32(FromFort);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Id != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Id);
+            }
+            if (PokemonType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonType);
+            }
+            if (Cp != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Cp);
+            }
+            if (Stamina != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Stamina);
+            }
+            if (StaminaMax != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(StaminaMax);
+            }
+            if (Move1 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Move1);
+            }
+            if (Move2 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Move2);
+            }
+            if (DeployedFortId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DeployedFortId);
+            }
+            if (OwnerName.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(OwnerName);
+            }
+            if (IsEgg != false)
+            {
+                size += 1 + 1;
+            }
+            if (EggKmWalkedTarget != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggKmWalkedTarget);
+            }
+            if (EggKmWalkedStart != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggKmWalkedStart);
+            }
+            if (Origin != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Origin);
+            }
+            if (HeightM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (WeightKg != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (IndividualAttack != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualAttack);
+            }
+            if (IndividualDefense != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualDefense);
+            }
+            if (IndividualStamina != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualStamina);
+            }
+            if (CpMultiplier != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (Pokeball != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(Pokeball);
+            }
+            if (CapturedCellId != 0UL)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeUInt64Size(CapturedCellId);
+            }
+            if (BattlesAttacked != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattlesAttacked);
+            }
+            if (BattlesDefended != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattlesDefended);
+            }
+            if (EggIncubatorId != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(EggIncubatorId);
+            }
+            if (CreationTimeMs != 0UL)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeUInt64Size(CreationTimeMs);
+            }
+            if (NumUpgrades != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(NumUpgrades);
+            }
+            if (AdditionalCpMultiplier != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (Favorite != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(Favorite);
+            }
+            if (Nickname.Length != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeStringSize(Nickname);
+            }
+            if (FromFort != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(FromFort);
+            }
+            return size;
+        }
+
+        public void MergeFrom(Pokemon other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Id != 0)
+            {
+                Id = other.Id;
+            }
+            if (other.PokemonType != 0)
+            {
+                PokemonType = other.PokemonType;
+            }
+            if (other.Cp != 0)
+            {
+                Cp = other.Cp;
+            }
+            if (other.Stamina != 0)
+            {
+                Stamina = other.Stamina;
+            }
+            if (other.StaminaMax != 0)
+            {
+                StaminaMax = other.StaminaMax;
+            }
+            if (other.Move1 != 0)
+            {
+                Move1 = other.Move1;
+            }
+            if (other.Move2 != 0)
+            {
+                Move2 = other.Move2;
+            }
+            if (other.DeployedFortId != 0)
+            {
+                DeployedFortId = other.DeployedFortId;
+            }
+            if (other.OwnerName.Length != 0)
+            {
+                OwnerName = other.OwnerName;
+            }
+            if (other.IsEgg != false)
+            {
+                IsEgg = other.IsEgg;
+            }
+            if (other.EggKmWalkedTarget != 0)
+            {
+                EggKmWalkedTarget = other.EggKmWalkedTarget;
+            }
+            if (other.EggKmWalkedStart != 0)
+            {
+                EggKmWalkedStart = other.EggKmWalkedStart;
+            }
+            if (other.Origin != 0)
+            {
+                Origin = other.Origin;
+            }
+            if (other.HeightM != 0F)
+            {
+                HeightM = other.HeightM;
+            }
+            if (other.WeightKg != 0F)
+            {
+                WeightKg = other.WeightKg;
+            }
+            if (other.IndividualAttack != 0)
+            {
+                IndividualAttack = other.IndividualAttack;
+            }
+            if (other.IndividualDefense != 0)
+            {
+                IndividualDefense = other.IndividualDefense;
+            }
+            if (other.IndividualStamina != 0)
+            {
+                IndividualStamina = other.IndividualStamina;
+            }
+            if (other.CpMultiplier != 0)
+            {
+                CpMultiplier = other.CpMultiplier;
+            }
+            if (other.Pokeball != 0)
+            {
+                Pokeball = other.Pokeball;
+            }
+            if (other.CapturedCellId != 0UL)
+            {
+                CapturedCellId = other.CapturedCellId;
+            }
+            if (other.BattlesAttacked != 0)
+            {
+                BattlesAttacked = other.BattlesAttacked;
+            }
+            if (other.BattlesDefended != 0)
+            {
+                BattlesDefended = other.BattlesDefended;
+            }
+            if (other.EggIncubatorId != 0)
+            {
+                EggIncubatorId = other.EggIncubatorId;
+            }
+            if (other.CreationTimeMs != 0UL)
+            {
+                CreationTimeMs = other.CreationTimeMs;
+            }
+            if (other.NumUpgrades != 0)
+            {
+                NumUpgrades = other.NumUpgrades;
+            }
+            if (other.AdditionalCpMultiplier != 0)
+            {
+                AdditionalCpMultiplier = other.AdditionalCpMultiplier;
+            }
+            if (other.Favorite != 0)
+            {
+                Favorite = other.Favorite;
+            }
+            if (other.Nickname.Length != 0)
+            {
+                Nickname = other.Nickname;
+            }
+            if (other.FromFort != 0)
+            {
+                FromFort = other.FromFort;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Id = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            pokemonType_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)input.ReadEnum();
+                            break;
+                        }
+                    case 24:
+                        {
+                            Cp = input.ReadInt32();
+                            break;
+                        }
+                    case 32:
+                        {
+                            Stamina = input.ReadInt32();
+                            break;
+                        }
+                    case 40:
+                        {
+                            StaminaMax = input.ReadInt32();
+                            break;
+                        }
+                    case 48:
+                        {
+                            move1_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove)input.ReadEnum();
+                            break;
+                        }
+                    case 56:
+                        {
+                            move2_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove)input.ReadEnum();
+                            break;
+                        }
+                    case 64:
+                        {
+                            DeployedFortId = input.ReadInt32();
+                            break;
+                        }
+                    case 74:
+                        {
+                            OwnerName = input.ReadString();
+                            break;
+                        }
+                    case 80:
+                        {
+                            IsEgg = input.ReadBool();
+                            break;
+                        }
+                    case 88:
+                        {
+                            EggKmWalkedTarget = input.ReadInt32();
+                            break;
+                        }
+                    case 96:
+                        {
+                            EggKmWalkedStart = input.ReadInt32();
+                            break;
+                        }
+                    case 112:
+                        {
+                            Origin = input.ReadInt32();
+                            break;
+                        }
+                    case 125:
+                        {
+                            HeightM = input.ReadFloat();
+                            break;
+                        }
+                    case 133:
+                        {
+                            WeightKg = input.ReadFloat();
+                            break;
+                        }
+                    case 136:
+                        {
+                            IndividualAttack = input.ReadInt32();
+                            break;
+                        }
+                    case 144:
+                        {
+                            IndividualDefense = input.ReadInt32();
+                            break;
+                        }
+                    case 152:
+                        {
+                            IndividualStamina = input.ReadInt32();
+                            break;
+                        }
+                    case 165:
+                        {
+                            CpMultiplier = input.ReadFloat();
+                            break;
+                        }
+                    case 168:
+                        {
+                            Pokeball = input.ReadInt32();
+                            break;
+                        }
+                    case 176:
+                        {
+                            CapturedCellId = input.ReadUInt64();
+                            break;
+                        }
+                    case 184:
+                        {
+                            BattlesAttacked = input.ReadInt32();
+                            break;
+                        }
+                    case 192:
+                        {
+                            BattlesDefended = input.ReadInt32();
+                            break;
+                        }
+                    case 200:
+                        {
+                            EggIncubatorId = input.ReadInt32();
+                            break;
+                        }
+                    case 208:
+                        {
+                            CreationTimeMs = input.ReadUInt64();
+                            break;
+                        }
+                    case 216:
+                        {
+                            NumUpgrades = input.ReadInt32();
+                            break;
+                        }
+                    case 229:
+                        {
+                            AdditionalCpMultiplier = input.ReadFloat();
+                            break;
+                        }
+                    case 232:
+                        {
+                            Favorite = input.ReadInt32();
+                            break;
+                        }
+                    case 242:
+                        {
+                            Nickname = input.ReadString();
+                            break;
+                        }
+                    case 248:
+                        {
+                            FromFort = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as Pokemon);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Id != 0) hash ^= Id.GetHashCode();
+            if (PokemonType != 0) hash ^= PokemonType.GetHashCode();
+            if (Cp != 0) hash ^= Cp.GetHashCode();
+            if (Stamina != 0) hash ^= Stamina.GetHashCode();
+            if (StaminaMax != 0) hash ^= StaminaMax.GetHashCode();
+            if (Move1 != 0) hash ^= Move1.GetHashCode();
+            if (Move2 != 0) hash ^= Move2.GetHashCode();
+            if (DeployedFortId != 0) hash ^= DeployedFortId.GetHashCode();
+            if (OwnerName.Length != 0) hash ^= OwnerName.GetHashCode();
+            if (IsEgg != false) hash ^= IsEgg.GetHashCode();
+            if (EggKmWalkedTarget != 0) hash ^= EggKmWalkedTarget.GetHashCode();
+            if (EggKmWalkedStart != 0) hash ^= EggKmWalkedStart.GetHashCode();
+            if (Origin != 0) hash ^= Origin.GetHashCode();
+            if (HeightM != 0F) hash ^= HeightM.GetHashCode();
+            if (WeightKg != 0F) hash ^= WeightKg.GetHashCode();
+            if (IndividualAttack != 0) hash ^= IndividualAttack.GetHashCode();
+            if (IndividualDefense != 0) hash ^= IndividualDefense.GetHashCode();
+            if (IndividualStamina != 0) hash ^= IndividualStamina.GetHashCode();
+            if (CpMultiplier != 0) hash ^= CpMultiplier.GetHashCode();
+            if (Pokeball != 0) hash ^= Pokeball.GetHashCode();
+            if (CapturedCellId != 0UL) hash ^= CapturedCellId.GetHashCode();
+            if (BattlesAttacked != 0) hash ^= BattlesAttacked.GetHashCode();
+            if (BattlesDefended != 0) hash ^= BattlesDefended.GetHashCode();
+            if (EggIncubatorId != 0) hash ^= EggIncubatorId.GetHashCode();
+            if (CreationTimeMs != 0UL) hash ^= CreationTimeMs.GetHashCode();
+            if (NumUpgrades != 0) hash ^= NumUpgrades.GetHashCode();
+            if (AdditionalCpMultiplier != 0) hash ^= AdditionalCpMultiplier.GetHashCode();
+            if (Favorite != 0) hash ^= Favorite.GetHashCode();
+            if (Nickname.Length != 0) hash ^= Nickname.GetHashCode();
+            if (FromFort != 0) hash ^= FromFort.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class Item : pb::IMessage<Item>
+    {
+        /// <summary>Field number for the "item" field.</summary>
+        public const int Item_FieldNumber = 1;
+
+        /// <summary>Field number for the "count" field.</summary>
+        public const int CountFieldNumber = 2;
+
+        /// <summary>Field number for the "unseen" field.</summary>
+        public const int UnseenFieldNumber = 3;
+
+        private static readonly pb::MessageParser<Item> _parser = new pb::MessageParser<Item>(() => new Item());
+        private int count_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemType item_ = 0;
+        private bool unseen_;
+
+        public Item()
+        {
+            OnConstruction();
+        }
+
+        public Item(Item other) : this()
+        {
+            item_ = other.item_;
+            count_ = other.count_;
+            unseen_ = other.unseen_;
+        }
+
+        public static pb::MessageParser<Item> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[12]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemType Item_
+        {
+            get { return item_; }
+            set { item_ = value; }
+        }
+
+        public int Count
+        {
+            get { return count_; }
+            set { count_ = value; }
+        }
+
+        public bool Unseen
+        {
+            get { return unseen_; }
+            set { unseen_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public Item Clone()
+        {
+            return new Item(this);
+        }
+
+        public bool Equals(Item other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Item_ != other.Item_) return false;
+            if (Count != other.Count) return false;
+            if (Unseen != other.Unseen) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Item_ != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)Item_);
+            }
+            if (Count != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(Count);
+            }
+            if (Unseen != false)
+            {
+                output.WriteRawTag(24);
+                output.WriteBool(Unseen);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Item_ != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Item_);
+            }
+            if (Count != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Count);
+            }
+            if (Unseen != false)
+            {
+                size += 1 + 1;
+            }
+            return size;
+        }
+
+        public void MergeFrom(Item other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Item_ != 0)
+            {
+                Item_ = other.Item_;
+            }
+            if (other.Count != 0)
+            {
+                Count = other.Count;
+            }
+            if (other.Unseen != false)
+            {
+                Unseen = other.Unseen;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            item_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemType)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            Count = input.ReadInt32();
+                            break;
+                        }
+                    case 24:
+                        {
+                            Unseen = input.ReadBool();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as Item);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Item_ != 0) hash ^= Item_.GetHashCode();
+            if (Count != 0) hash ^= Count.GetHashCode();
+            if (Unseen != false) hash ^= Unseen.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PokedexEntry : pb::IMessage<PokedexEntry>
+    {
+        /// <summary>Field number for the "pokedex_entry_number" field.</summary>
+        public const int PokedexEntryNumberFieldNumber = 1;
+
+        /// <summary>Field number for the "times_encountered" field.</summary>
+        public const int TimesEncounteredFieldNumber = 2;
+
+        /// <summary>Field number for the "times_captured" field.</summary>
+        public const int TimesCapturedFieldNumber = 3;
+
+        /// <summary>Field number for the "evolution_stone_pieces" field.</summary>
+        public const int EvolutionStonePiecesFieldNumber = 4;
+
+        /// <summary>Field number for the "evolution_stones" field.</summary>
+        public const int EvolutionStonesFieldNumber = 5;
+
+        private static readonly pb::MessageParser<PokedexEntry> _parser =
+            new pb::MessageParser<PokedexEntry>(() => new PokedexEntry());
+
+        private int evolutionStonePieces_;
+        private int evolutionStones_;
+        private int pokedexEntryNumber_;
+        private int timesCaptured_;
+        private int timesEncountered_;
+
+        public PokedexEntry()
+        {
+            OnConstruction();
+        }
+
+        public PokedexEntry(PokedexEntry other) : this()
+        {
+            pokedexEntryNumber_ = other.pokedexEntryNumber_;
+            timesEncountered_ = other.timesEncountered_;
+            timesCaptured_ = other.timesCaptured_;
+            evolutionStonePieces_ = other.evolutionStonePieces_;
+            evolutionStones_ = other.evolutionStones_;
+        }
+
+        public static pb::MessageParser<PokedexEntry> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[13]; }
+        }
+
+        public int PokedexEntryNumber
+        {
+            get { return pokedexEntryNumber_; }
+            set { pokedexEntryNumber_ = value; }
+        }
+
+        public int TimesEncountered
+        {
+            get { return timesEncountered_; }
+            set { timesEncountered_ = value; }
+        }
+
+        public int TimesCaptured
+        {
+            get { return timesCaptured_; }
+            set { timesCaptured_ = value; }
+        }
+
+        public int EvolutionStonePieces
+        {
+            get { return evolutionStonePieces_; }
+            set { evolutionStonePieces_ = value; }
+        }
+
+        public int EvolutionStones
+        {
+            get { return evolutionStones_; }
+            set { evolutionStones_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PokedexEntry Clone()
+        {
+            return new PokedexEntry(this);
+        }
+
+        public bool Equals(PokedexEntry other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (PokedexEntryNumber != other.PokedexEntryNumber) return false;
+            if (TimesEncountered != other.TimesEncountered) return false;
+            if (TimesCaptured != other.TimesCaptured) return false;
+            if (EvolutionStonePieces != other.EvolutionStonePieces) return false;
+            if (EvolutionStones != other.EvolutionStones) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (PokedexEntryNumber != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(PokedexEntryNumber);
+            }
+            if (TimesEncountered != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(TimesEncountered);
+            }
+            if (TimesCaptured != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(TimesCaptured);
+            }
+            if (EvolutionStonePieces != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(EvolutionStonePieces);
+            }
+            if (EvolutionStones != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(EvolutionStones);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (PokedexEntryNumber != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokedexEntryNumber);
+            }
+            if (TimesEncountered != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TimesEncountered);
+            }
+            if (TimesCaptured != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TimesCaptured);
+            }
+            if (EvolutionStonePieces != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EvolutionStonePieces);
+            }
+            if (EvolutionStones != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EvolutionStones);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PokedexEntry other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.PokedexEntryNumber != 0)
+            {
+                PokedexEntryNumber = other.PokedexEntryNumber;
+            }
+            if (other.TimesEncountered != 0)
+            {
+                TimesEncountered = other.TimesEncountered;
+            }
+            if (other.TimesCaptured != 0)
+            {
+                TimesCaptured = other.TimesCaptured;
+            }
+            if (other.EvolutionStonePieces != 0)
+            {
+                EvolutionStonePieces = other.EvolutionStonePieces;
+            }
+            if (other.EvolutionStones != 0)
+            {
+                EvolutionStones = other.EvolutionStones;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            PokedexEntryNumber = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            TimesEncountered = input.ReadInt32();
+                            break;
+                        }
+                    case 24:
+                        {
+                            TimesCaptured = input.ReadInt32();
+                            break;
+                        }
+                    case 32:
+                        {
+                            EvolutionStonePieces = input.ReadInt32();
+                            break;
+                        }
+                    case 40:
+                        {
+                            EvolutionStones = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PokedexEntry);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (PokedexEntryNumber != 0) hash ^= PokedexEntryNumber.GetHashCode();
+            if (TimesEncountered != 0) hash ^= TimesEncountered.GetHashCode();
+            if (TimesCaptured != 0) hash ^= TimesCaptured.GetHashCode();
+            if (EvolutionStonePieces != 0) hash ^= EvolutionStonePieces.GetHashCode();
+            if (EvolutionStones != 0) hash ^= EvolutionStones.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PlayerStats : pb::IMessage<PlayerStats>
+    {
+        /// <summary>Field number for the "level" field.</summary>
+        public const int LevelFieldNumber = 1;
+
+        /// <summary>Field number for the "experience" field.</summary>
+        public const int ExperienceFieldNumber = 2;
+
+        /// <summary>Field number for the "prev_level_xp" field.</summary>
+        public const int PrevLevelXpFieldNumber = 3;
+
+        /// <summary>Field number for the "next_level_xp" field.</summary>
+        public const int NextLevelXpFieldNumber = 4;
+
+        /// <summary>Field number for the "km_walked" field.</summary>
+        public const int KmWalkedFieldNumber = 5;
+
+        /// <summary>Field number for the "pokemons_encountered" field.</summary>
+        public const int PokemonsEncounteredFieldNumber = 6;
+
+        /// <summary>Field number for the "unique_pokedex_entries" field.</summary>
+        public const int UniquePokedexEntriesFieldNumber = 7;
+
+        /// <summary>Field number for the "pokemons_captured" field.</summary>
+        public const int PokemonsCapturedFieldNumber = 8;
+
+        /// <summary>Field number for the "evolutions" field.</summary>
+        public const int EvolutionsFieldNumber = 9;
+
+        /// <summary>Field number for the "poke_stop_visits" field.</summary>
+        public const int PokeStopVisitsFieldNumber = 10;
+
+        /// <summary>Field number for the "pokeballs_thrown" field.</summary>
+        public const int PokeballsThrownFieldNumber = 11;
+
+        /// <summary>Field number for the "eggs_hatched" field.</summary>
+        public const int EggsHatchedFieldNumber = 12;
+
+        /// <summary>Field number for the "big_magikarp_caught" field.</summary>
+        public const int BigMagikarpCaughtFieldNumber = 13;
+
+        /// <summary>Field number for the "battle_attack_won" field.</summary>
+        public const int BattleAttackWonFieldNumber = 14;
+
+        /// <summary>Field number for the "battle_attack_total" field.</summary>
+        public const int BattleAttackTotalFieldNumber = 15;
+
+        /// <summary>Field number for the "battle_defended_won" field.</summary>
+        public const int BattleDefendedWonFieldNumber = 16;
+
+        /// <summary>Field number for the "battle_training_won" field.</summary>
+        public const int BattleTrainingWonFieldNumber = 17;
+
+        /// <summary>Field number for the "battle_training_total" field.</summary>
+        public const int BattleTrainingTotalFieldNumber = 18;
+
+        /// <summary>Field number for the "prestige_raised_total" field.</summary>
+        public const int PrestigeRaisedTotalFieldNumber = 19;
+
+        /// <summary>Field number for the "prestige_dropped_total" field.</summary>
+        public const int PrestigeDroppedTotalFieldNumber = 20;
+
+        /// <summary>Field number for the "pokemon_deployed" field.</summary>
+        public const int PokemonDeployedFieldNumber = 21;
+
+        /// <summary>Field number for the "pokemon_caught_by_type" field.</summary>
+        public const int PokemonCaughtByTypeFieldNumber = 22;
+
+        /// <summary>Field number for the "small_rattata_caught" field.</summary>
+        public const int SmallRattataCaughtFieldNumber = 23;
+
+        private static readonly pb::MessageParser<PlayerStats> _parser =
+            new pb::MessageParser<PlayerStats>(() => new PlayerStats());
+
+        private int battleAttackTotal_;
+        private int battleAttackWon_;
+        private int battleDefendedWon_;
+        private int battleTrainingTotal_;
+        private int battleTrainingWon_;
+        private int bigMagikarpCaught_;
+        private int eggsHatched_;
+        private int evolutions_;
+        private long experience_;
+        private float kmWalked_;
+        private int level_;
+        private long nextLevelXp_;
+        private int pokeballsThrown_;
+        private pb::ByteString pokemonCaughtByType_ = pb::ByteString.Empty;
+        private int pokemonDeployed_;
+        private int pokemonsCaptured_;
+        private int pokemonsEncountered_;
+        private int pokeStopVisits_;
+        private int prestigeDroppedTotal_;
+        private int prestigeRaisedTotal_;
+        private long prevLevelXp_;
+        private int smallRattataCaught_;
+        private int uniquePokedexEntries_;
+
+        public PlayerStats()
+        {
+            OnConstruction();
+        }
+
+        public PlayerStats(PlayerStats other) : this()
+        {
+            level_ = other.level_;
+            experience_ = other.experience_;
+            prevLevelXp_ = other.prevLevelXp_;
+            nextLevelXp_ = other.nextLevelXp_;
+            kmWalked_ = other.kmWalked_;
+            pokemonsEncountered_ = other.pokemonsEncountered_;
+            uniquePokedexEntries_ = other.uniquePokedexEntries_;
+            pokemonsCaptured_ = other.pokemonsCaptured_;
+            evolutions_ = other.evolutions_;
+            pokeStopVisits_ = other.pokeStopVisits_;
+            pokeballsThrown_ = other.pokeballsThrown_;
+            eggsHatched_ = other.eggsHatched_;
+            bigMagikarpCaught_ = other.bigMagikarpCaught_;
+            battleAttackWon_ = other.battleAttackWon_;
+            battleAttackTotal_ = other.battleAttackTotal_;
+            battleDefendedWon_ = other.battleDefendedWon_;
+            battleTrainingWon_ = other.battleTrainingWon_;
+            battleTrainingTotal_ = other.battleTrainingTotal_;
+            prestigeRaisedTotal_ = other.prestigeRaisedTotal_;
+            prestigeDroppedTotal_ = other.prestigeDroppedTotal_;
+            pokemonDeployed_ = other.pokemonDeployed_;
+            pokemonCaughtByType_ = other.pokemonCaughtByType_;
+            smallRattataCaught_ = other.smallRattataCaught_;
+        }
+
+        public static pb::MessageParser<PlayerStats> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[14]; }
+        }
+
+        public int Level
+        {
+            get { return level_; }
+            set { level_ = value; }
+        }
+
+        public long Experience
+        {
+            get { return experience_; }
+            set { experience_ = value; }
+        }
+
+        public long PrevLevelXp
+        {
+            get { return prevLevelXp_; }
+            set { prevLevelXp_ = value; }
+        }
+
+        public long NextLevelXp
+        {
+            get { return nextLevelXp_; }
+            set { nextLevelXp_ = value; }
+        }
+
+        public float KmWalked
+        {
+            get { return kmWalked_; }
+            set { kmWalked_ = value; }
+        }
+
+        public int PokemonsEncountered
+        {
+            get { return pokemonsEncountered_; }
+            set { pokemonsEncountered_ = value; }
+        }
+
+        public int UniquePokedexEntries
+        {
+            get { return uniquePokedexEntries_; }
+            set { uniquePokedexEntries_ = value; }
+        }
+
+        public int PokemonsCaptured
+        {
+            get { return pokemonsCaptured_; }
+            set { pokemonsCaptured_ = value; }
+        }
+
+        public int Evolutions
+        {
+            get { return evolutions_; }
+            set { evolutions_ = value; }
+        }
+
+        public int PokeStopVisits
+        {
+            get { return pokeStopVisits_; }
+            set { pokeStopVisits_ = value; }
+        }
+
+        public int PokeballsThrown
+        {
+            get { return pokeballsThrown_; }
+            set { pokeballsThrown_ = value; }
+        }
+
+        public int EggsHatched
+        {
+            get { return eggsHatched_; }
+            set { eggsHatched_ = value; }
+        }
+
+        public int BigMagikarpCaught
+        {
+            get { return bigMagikarpCaught_; }
+            set { bigMagikarpCaught_ = value; }
+        }
+
+        public int BattleAttackWon
+        {
+            get { return battleAttackWon_; }
+            set { battleAttackWon_ = value; }
+        }
+
+        public int BattleAttackTotal
+        {
+            get { return battleAttackTotal_; }
+            set { battleAttackTotal_ = value; }
+        }
+
+        public int BattleDefendedWon
+        {
+            get { return battleDefendedWon_; }
+            set { battleDefendedWon_ = value; }
+        }
+
+        public int BattleTrainingWon
+        {
+            get { return battleTrainingWon_; }
+            set { battleTrainingWon_ = value; }
+        }
+
+        public int BattleTrainingTotal
+        {
+            get { return battleTrainingTotal_; }
+            set { battleTrainingTotal_ = value; }
+        }
+
+        public int PrestigeRaisedTotal
+        {
+            get { return prestigeRaisedTotal_; }
+            set { prestigeRaisedTotal_ = value; }
+        }
+
+        public int PrestigeDroppedTotal
+        {
+            get { return prestigeDroppedTotal_; }
+            set { prestigeDroppedTotal_ = value; }
+        }
+
+        public int PokemonDeployed
+        {
+            get { return pokemonDeployed_; }
+            set { pokemonDeployed_ = value; }
+        }
+
+        /// <summary>
+        ///     TODO: repeated PokemonType ??
+        /// </summary>
+        public pb::ByteString PokemonCaughtByType
+        {
+            get { return pokemonCaughtByType_; }
+            set { pokemonCaughtByType_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public int SmallRattataCaught
+        {
+            get { return smallRattataCaught_; }
+            set { smallRattataCaught_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PlayerStats Clone()
+        {
+            return new PlayerStats(this);
+        }
+
+        public bool Equals(PlayerStats other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Level != other.Level) return false;
+            if (Experience != other.Experience) return false;
+            if (PrevLevelXp != other.PrevLevelXp) return false;
+            if (NextLevelXp != other.NextLevelXp) return false;
+            if (KmWalked != other.KmWalked) return false;
+            if (PokemonsEncountered != other.PokemonsEncountered) return false;
+            if (UniquePokedexEntries != other.UniquePokedexEntries) return false;
+            if (PokemonsCaptured != other.PokemonsCaptured) return false;
+            if (Evolutions != other.Evolutions) return false;
+            if (PokeStopVisits != other.PokeStopVisits) return false;
+            if (PokeballsThrown != other.PokeballsThrown) return false;
+            if (EggsHatched != other.EggsHatched) return false;
+            if (BigMagikarpCaught != other.BigMagikarpCaught) return false;
+            if (BattleAttackWon != other.BattleAttackWon) return false;
+            if (BattleAttackTotal != other.BattleAttackTotal) return false;
+            if (BattleDefendedWon != other.BattleDefendedWon) return false;
+            if (BattleTrainingWon != other.BattleTrainingWon) return false;
+            if (BattleTrainingTotal != other.BattleTrainingTotal) return false;
+            if (PrestigeRaisedTotal != other.PrestigeRaisedTotal) return false;
+            if (PrestigeDroppedTotal != other.PrestigeDroppedTotal) return false;
+            if (PokemonDeployed != other.PokemonDeployed) return false;
+            if (PokemonCaughtByType != other.PokemonCaughtByType) return false;
+            if (SmallRattataCaught != other.SmallRattataCaught) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Level != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(Level);
+            }
+            if (Experience != 0L)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt64(Experience);
+            }
+            if (PrevLevelXp != 0L)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt64(PrevLevelXp);
+            }
+            if (NextLevelXp != 0L)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt64(NextLevelXp);
+            }
+            if (KmWalked != 0F)
+            {
+                output.WriteRawTag(45);
+                output.WriteFloat(KmWalked);
+            }
+            if (PokemonsEncountered != 0)
+            {
+                output.WriteRawTag(48);
+                output.WriteInt32(PokemonsEncountered);
+            }
+            if (UniquePokedexEntries != 0)
+            {
+                output.WriteRawTag(56);
+                output.WriteInt32(UniquePokedexEntries);
+            }
+            if (PokemonsCaptured != 0)
+            {
+                output.WriteRawTag(64);
+                output.WriteInt32(PokemonsCaptured);
+            }
+            if (Evolutions != 0)
+            {
+                output.WriteRawTag(72);
+                output.WriteInt32(Evolutions);
+            }
+            if (PokeStopVisits != 0)
+            {
+                output.WriteRawTag(80);
+                output.WriteInt32(PokeStopVisits);
+            }
+            if (PokeballsThrown != 0)
+            {
+                output.WriteRawTag(88);
+                output.WriteInt32(PokeballsThrown);
+            }
+            if (EggsHatched != 0)
+            {
+                output.WriteRawTag(96);
+                output.WriteInt32(EggsHatched);
+            }
+            if (BigMagikarpCaught != 0)
+            {
+                output.WriteRawTag(104);
+                output.WriteInt32(BigMagikarpCaught);
+            }
+            if (BattleAttackWon != 0)
+            {
+                output.WriteRawTag(112);
+                output.WriteInt32(BattleAttackWon);
+            }
+            if (BattleAttackTotal != 0)
+            {
+                output.WriteRawTag(120);
+                output.WriteInt32(BattleAttackTotal);
+            }
+            if (BattleDefendedWon != 0)
+            {
+                output.WriteRawTag(128, 1);
+                output.WriteInt32(BattleDefendedWon);
+            }
+            if (BattleTrainingWon != 0)
+            {
+                output.WriteRawTag(136, 1);
+                output.WriteInt32(BattleTrainingWon);
+            }
+            if (BattleTrainingTotal != 0)
+            {
+                output.WriteRawTag(144, 1);
+                output.WriteInt32(BattleTrainingTotal);
+            }
+            if (PrestigeRaisedTotal != 0)
+            {
+                output.WriteRawTag(152, 1);
+                output.WriteInt32(PrestigeRaisedTotal);
+            }
+            if (PrestigeDroppedTotal != 0)
+            {
+                output.WriteRawTag(160, 1);
+                output.WriteInt32(PrestigeDroppedTotal);
+            }
+            if (PokemonDeployed != 0)
+            {
+                output.WriteRawTag(168, 1);
+                output.WriteInt32(PokemonDeployed);
+            }
+            if (PokemonCaughtByType.Length != 0)
+            {
+                output.WriteRawTag(178, 1);
+                output.WriteBytes(PokemonCaughtByType);
+            }
+            if (SmallRattataCaught != 0)
+            {
+                output.WriteRawTag(184, 1);
+                output.WriteInt32(SmallRattataCaught);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Level != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Level);
+            }
+            if (Experience != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(Experience);
+            }
+            if (PrevLevelXp != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(PrevLevelXp);
+            }
+            if (NextLevelXp != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(NextLevelXp);
+            }
+            if (KmWalked != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (PokemonsEncountered != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokemonsEncountered);
+            }
+            if (UniquePokedexEntries != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(UniquePokedexEntries);
+            }
+            if (PokemonsCaptured != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokemonsCaptured);
+            }
+            if (Evolutions != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Evolutions);
+            }
+            if (PokeStopVisits != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokeStopVisits);
+            }
+            if (PokeballsThrown != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokeballsThrown);
+            }
+            if (EggsHatched != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggsHatched);
+            }
+            if (BigMagikarpCaught != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BigMagikarpCaught);
+            }
+            if (BattleAttackWon != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BattleAttackWon);
+            }
+            if (BattleAttackTotal != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BattleAttackTotal);
+            }
+            if (BattleDefendedWon != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattleDefendedWon);
+            }
+            if (BattleTrainingWon != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattleTrainingWon);
+            }
+            if (BattleTrainingTotal != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattleTrainingTotal);
+            }
+            if (PrestigeRaisedTotal != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(PrestigeRaisedTotal);
+            }
+            if (PrestigeDroppedTotal != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(PrestigeDroppedTotal);
+            }
+            if (PokemonDeployed != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(PokemonDeployed);
+            }
+            if (PokemonCaughtByType.Length != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeBytesSize(PokemonCaughtByType);
+            }
+            if (SmallRattataCaught != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(SmallRattataCaught);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PlayerStats other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Level != 0)
+            {
+                Level = other.Level;
+            }
+            if (other.Experience != 0L)
+            {
+                Experience = other.Experience;
+            }
+            if (other.PrevLevelXp != 0L)
+            {
+                PrevLevelXp = other.PrevLevelXp;
+            }
+            if (other.NextLevelXp != 0L)
+            {
+                NextLevelXp = other.NextLevelXp;
+            }
+            if (other.KmWalked != 0F)
+            {
+                KmWalked = other.KmWalked;
+            }
+            if (other.PokemonsEncountered != 0)
+            {
+                PokemonsEncountered = other.PokemonsEncountered;
+            }
+            if (other.UniquePokedexEntries != 0)
+            {
+                UniquePokedexEntries = other.UniquePokedexEntries;
+            }
+            if (other.PokemonsCaptured != 0)
+            {
+                PokemonsCaptured = other.PokemonsCaptured;
+            }
+            if (other.Evolutions != 0)
+            {
+                Evolutions = other.Evolutions;
+            }
+            if (other.PokeStopVisits != 0)
+            {
+                PokeStopVisits = other.PokeStopVisits;
+            }
+            if (other.PokeballsThrown != 0)
+            {
+                PokeballsThrown = other.PokeballsThrown;
+            }
+            if (other.EggsHatched != 0)
+            {
+                EggsHatched = other.EggsHatched;
+            }
+            if (other.BigMagikarpCaught != 0)
+            {
+                BigMagikarpCaught = other.BigMagikarpCaught;
+            }
+            if (other.BattleAttackWon != 0)
+            {
+                BattleAttackWon = other.BattleAttackWon;
+            }
+            if (other.BattleAttackTotal != 0)
+            {
+                BattleAttackTotal = other.BattleAttackTotal;
+            }
+            if (other.BattleDefendedWon != 0)
+            {
+                BattleDefendedWon = other.BattleDefendedWon;
+            }
+            if (other.BattleTrainingWon != 0)
+            {
+                BattleTrainingWon = other.BattleTrainingWon;
+            }
+            if (other.BattleTrainingTotal != 0)
+            {
+                BattleTrainingTotal = other.BattleTrainingTotal;
+            }
+            if (other.PrestigeRaisedTotal != 0)
+            {
+                PrestigeRaisedTotal = other.PrestigeRaisedTotal;
+            }
+            if (other.PrestigeDroppedTotal != 0)
+            {
+                PrestigeDroppedTotal = other.PrestigeDroppedTotal;
+            }
+            if (other.PokemonDeployed != 0)
+            {
+                PokemonDeployed = other.PokemonDeployed;
+            }
+            if (other.PokemonCaughtByType.Length != 0)
+            {
+                PokemonCaughtByType = other.PokemonCaughtByType;
+            }
+            if (other.SmallRattataCaught != 0)
+            {
+                SmallRattataCaught = other.SmallRattataCaught;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Level = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            Experience = input.ReadInt64();
+                            break;
+                        }
+                    case 24:
+                        {
+                            PrevLevelXp = input.ReadInt64();
+                            break;
+                        }
+                    case 32:
+                        {
+                            NextLevelXp = input.ReadInt64();
+                            break;
+                        }
+                    case 45:
+                        {
+                            KmWalked = input.ReadFloat();
+                            break;
+                        }
+                    case 48:
+                        {
+                            PokemonsEncountered = input.ReadInt32();
+                            break;
+                        }
+                    case 56:
+                        {
+                            UniquePokedexEntries = input.ReadInt32();
+                            break;
+                        }
+                    case 64:
+                        {
+                            PokemonsCaptured = input.ReadInt32();
+                            break;
+                        }
+                    case 72:
+                        {
+                            Evolutions = input.ReadInt32();
+                            break;
+                        }
+                    case 80:
+                        {
+                            PokeStopVisits = input.ReadInt32();
+                            break;
+                        }
+                    case 88:
+                        {
+                            PokeballsThrown = input.ReadInt32();
+                            break;
+                        }
+                    case 96:
+                        {
+                            EggsHatched = input.ReadInt32();
+                            break;
+                        }
+                    case 104:
+                        {
+                            BigMagikarpCaught = input.ReadInt32();
+                            break;
+                        }
+                    case 112:
+                        {
+                            BattleAttackWon = input.ReadInt32();
+                            break;
+                        }
+                    case 120:
+                        {
+                            BattleAttackTotal = input.ReadInt32();
+                            break;
+                        }
+                    case 128:
+                        {
+                            BattleDefendedWon = input.ReadInt32();
+                            break;
+                        }
+                    case 136:
+                        {
+                            BattleTrainingWon = input.ReadInt32();
+                            break;
+                        }
+                    case 144:
+                        {
+                            BattleTrainingTotal = input.ReadInt32();
+                            break;
+                        }
+                    case 152:
+                        {
+                            PrestigeRaisedTotal = input.ReadInt32();
+                            break;
+                        }
+                    case 160:
+                        {
+                            PrestigeDroppedTotal = input.ReadInt32();
+                            break;
+                        }
+                    case 168:
+                        {
+                            PokemonDeployed = input.ReadInt32();
+                            break;
+                        }
+                    case 178:
+                        {
+                            PokemonCaughtByType = input.ReadBytes();
+                            break;
+                        }
+                    case 184:
+                        {
+                            SmallRattataCaught = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PlayerStats);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Level != 0) hash ^= Level.GetHashCode();
+            if (Experience != 0L) hash ^= Experience.GetHashCode();
+            if (PrevLevelXp != 0L) hash ^= PrevLevelXp.GetHashCode();
+            if (NextLevelXp != 0L) hash ^= NextLevelXp.GetHashCode();
+            if (KmWalked != 0F) hash ^= KmWalked.GetHashCode();
+            if (PokemonsEncountered != 0) hash ^= PokemonsEncountered.GetHashCode();
+            if (UniquePokedexEntries != 0) hash ^= UniquePokedexEntries.GetHashCode();
+            if (PokemonsCaptured != 0) hash ^= PokemonsCaptured.GetHashCode();
+            if (Evolutions != 0) hash ^= Evolutions.GetHashCode();
+            if (PokeStopVisits != 0) hash ^= PokeStopVisits.GetHashCode();
+            if (PokeballsThrown != 0) hash ^= PokeballsThrown.GetHashCode();
+            if (EggsHatched != 0) hash ^= EggsHatched.GetHashCode();
+            if (BigMagikarpCaught != 0) hash ^= BigMagikarpCaught.GetHashCode();
+            if (BattleAttackWon != 0) hash ^= BattleAttackWon.GetHashCode();
+            if (BattleAttackTotal != 0) hash ^= BattleAttackTotal.GetHashCode();
+            if (BattleDefendedWon != 0) hash ^= BattleDefendedWon.GetHashCode();
+            if (BattleTrainingWon != 0) hash ^= BattleTrainingWon.GetHashCode();
+            if (BattleTrainingTotal != 0) hash ^= BattleTrainingTotal.GetHashCode();
+            if (PrestigeRaisedTotal != 0) hash ^= PrestigeRaisedTotal.GetHashCode();
+            if (PrestigeDroppedTotal != 0) hash ^= PrestigeDroppedTotal.GetHashCode();
+            if (PokemonDeployed != 0) hash ^= PokemonDeployed.GetHashCode();
+            if (PokemonCaughtByType.Length != 0) hash ^= PokemonCaughtByType.GetHashCode();
+            if (SmallRattataCaught != 0) hash ^= SmallRattataCaught.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PlayerCurrency : pb::IMessage<PlayerCurrency>
+    {
+        /// <summary>Field number for the "gems" field.</summary>
+        public const int GemsFieldNumber = 1;
+
+        private static readonly pb::MessageParser<PlayerCurrency> _parser =
+            new pb::MessageParser<PlayerCurrency>(() => new PlayerCurrency());
+
+        private int gems_;
+
+        public PlayerCurrency()
+        {
+            OnConstruction();
+        }
+
+        public PlayerCurrency(PlayerCurrency other) : this()
+        {
+            gems_ = other.gems_;
+        }
+
+        public static pb::MessageParser<PlayerCurrency> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[15]; }
+        }
+
+        public int Gems
+        {
+            get { return gems_; }
+            set { gems_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PlayerCurrency Clone()
+        {
+            return new PlayerCurrency(this);
+        }
+
+        public bool Equals(PlayerCurrency other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Gems != other.Gems) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Gems != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(Gems);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Gems != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Gems);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PlayerCurrency other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Gems != 0)
+            {
+                Gems = other.Gems;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Gems = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PlayerCurrency);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Gems != 0) hash ^= Gems.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PlayerCamera : pb::IMessage<PlayerCamera>
+    {
+        /// <summary>Field number for the "is_default_camera" field.</summary>
+        public const int IsDefaultCameraFieldNumber = 1;
+
+        private static readonly pb::MessageParser<PlayerCamera> _parser =
+            new pb::MessageParser<PlayerCamera>(() => new PlayerCamera());
+
+        private bool isDefaultCamera_;
+
+        public PlayerCamera()
+        {
+            OnConstruction();
+        }
+
+        public PlayerCamera(PlayerCamera other) : this()
+        {
+            isDefaultCamera_ = other.isDefaultCamera_;
+        }
+
+        public static pb::MessageParser<PlayerCamera> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[16]; }
+        }
+
+        public bool IsDefaultCamera
+        {
+            get { return isDefaultCamera_; }
+            set { isDefaultCamera_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PlayerCamera Clone()
+        {
+            return new PlayerCamera(this);
+        }
+
+        public bool Equals(PlayerCamera other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (IsDefaultCamera != other.IsDefaultCamera) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (IsDefaultCamera != false)
+            {
+                output.WriteRawTag(8);
+                output.WriteBool(IsDefaultCamera);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (IsDefaultCamera != false)
+            {
+                size += 1 + 1;
+            }
+            return size;
+        }
+
+        public void MergeFrom(PlayerCamera other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.IsDefaultCamera != false)
+            {
+                IsDefaultCamera = other.IsDefaultCamera;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            IsDefaultCamera = input.ReadBool();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PlayerCamera);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (IsDefaultCamera != false) hash ^= IsDefaultCamera.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class InventoryUpgrades : pb::IMessage<InventoryUpgrades>
+    {
+        /// <summary>Field number for the "inventory_upgrades" field.</summary>
+        public const int InventoryUpgrades_FieldNumber = 1;
+
+        private static readonly pb::MessageParser<InventoryUpgrades> _parser =
+            new pb::MessageParser<InventoryUpgrades>(() => new InventoryUpgrades());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade>
+            _repeated_inventoryUpgrades_codec
+                = pb::FieldCodec.ForMessage(10, global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade.Parser);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade>
+            inventoryUpgrades_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade>();
+
+        public InventoryUpgrades()
+        {
+            OnConstruction();
+        }
+
+        public InventoryUpgrades(InventoryUpgrades other) : this()
+        {
+            inventoryUpgrades_ = other.inventoryUpgrades_.Clone();
+        }
+
+        public static pb::MessageParser<InventoryUpgrades> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[17]; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgrade> InventoryUpgrades_
+        {
+            get { return inventoryUpgrades_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public InventoryUpgrades Clone()
+        {
+            return new InventoryUpgrades(this);
+        }
+
+        public bool Equals(InventoryUpgrades other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!inventoryUpgrades_.Equals(other.inventoryUpgrades_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            inventoryUpgrades_.WriteTo(output, _repeated_inventoryUpgrades_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += inventoryUpgrades_.CalculateSize(_repeated_inventoryUpgrades_codec);
+            return size;
+        }
+
+        public void MergeFrom(InventoryUpgrades other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            inventoryUpgrades_.Add(other.inventoryUpgrades_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            inventoryUpgrades_.AddEntriesFrom(input, _repeated_inventoryUpgrades_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as InventoryUpgrades);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= inventoryUpgrades_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class InventoryUpgrade : pb::IMessage<InventoryUpgrade>
+    {
+        /// <summary>Field number for the "item" field.</summary>
+        public const int ItemFieldNumber = 1;
+
+        /// <summary>Field number for the "upgrade_type" field.</summary>
+        public const int UpgradeTypeFieldNumber = 2;
+
+        /// <summary>Field number for the "additional_storage" field.</summary>
+        public const int AdditionalStorageFieldNumber = 3;
+
+        private static readonly pb::MessageParser<InventoryUpgrade> _parser =
+            new pb::MessageParser<InventoryUpgrade>(() => new InventoryUpgrade());
+
+        private int additionalStorage_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemType item_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeType upgradeType_ = 0;
+
+        public InventoryUpgrade()
+        {
+            OnConstruction();
+        }
+
+        public InventoryUpgrade(InventoryUpgrade other) : this()
+        {
+            item_ = other.item_;
+            upgradeType_ = other.upgradeType_;
+            additionalStorage_ = other.additionalStorage_;
+        }
+
+        public static pb::MessageParser<InventoryUpgrade> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[18]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemType Item
+        {
+            get { return item_; }
+            set { item_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeType UpgradeType
+        {
+            get { return upgradeType_; }
+            set { upgradeType_ = value; }
+        }
+
+        public int AdditionalStorage
+        {
+            get { return additionalStorage_; }
+            set { additionalStorage_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public InventoryUpgrade Clone()
+        {
+            return new InventoryUpgrade(this);
+        }
+
+        public bool Equals(InventoryUpgrade other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Item != other.Item) return false;
+            if (UpgradeType != other.UpgradeType) return false;
+            if (AdditionalStorage != other.AdditionalStorage) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Item != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)Item);
+            }
+            if (UpgradeType != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)UpgradeType);
+            }
+            if (AdditionalStorage != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(AdditionalStorage);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Item != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Item);
+            }
+            if (UpgradeType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)UpgradeType);
+            }
+            if (AdditionalStorage != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(AdditionalStorage);
+            }
+            return size;
+        }
+
+        public void MergeFrom(InventoryUpgrade other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Item != 0)
+            {
+                Item = other.Item;
+            }
+            if (other.UpgradeType != 0)
+            {
+                UpgradeType = other.UpgradeType;
+            }
+            if (other.AdditionalStorage != 0)
+            {
+                AdditionalStorage = other.AdditionalStorage;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            item_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemType)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            upgradeType_ = (global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeType)input.ReadEnum();
+                            break;
+                        }
+                    case 24:
+                        {
+                            AdditionalStorage = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as InventoryUpgrade);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Item != 0) hash ^= Item.GetHashCode();
+            if (UpgradeType != 0) hash ^= UpgradeType.GetHashCode();
+            if (AdditionalStorage != 0) hash ^= AdditionalStorage.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class AppliedItems : pb::IMessage<AppliedItems>
+    {
+        /// <summary>Field number for the "item" field.</summary>
+        public const int ItemFieldNumber = 4;
+
+        private static readonly pb::MessageParser<AppliedItems> _parser =
+            new pb::MessageParser<AppliedItems>(() => new AppliedItems());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem item_;
+
+        public AppliedItems()
+        {
+            OnConstruction();
+        }
+
+        public AppliedItems(AppliedItems other) : this()
+        {
+            Item = other.item_ != null ? other.Item.Clone() : null;
+        }
+
+        public static pb::MessageParser<AppliedItems> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[19]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem Item
+        {
+            get { return item_; }
+            set { item_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public AppliedItems Clone()
+        {
+            return new AppliedItems(this);
+        }
+
+        public bool Equals(AppliedItems other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!Equals(Item, other.Item)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (item_ != null)
+            {
+                output.WriteRawTag(34);
+                output.WriteMessage(Item);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (item_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Item);
+            }
+            return size;
+        }
+
+        public void MergeFrom(AppliedItems other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.item_ != null)
+            {
+                if (item_ == null)
+                {
+                    item_ = new global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem();
+                }
+                Item.MergeFrom(other.Item);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 34:
+                        {
+                            if (item_ == null)
+                            {
+                                item_ = new global::PokemonGo.RocketAPI.GeneratedCode.AppliedItem();
+                            }
+                            input.ReadMessage(item_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as AppliedItems);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (item_ != null) hash ^= Item.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class AppliedItem : pb::IMessage<AppliedItem>
+    {
+        /// <summary>Field number for the "item_type" field.</summary>
+        public const int ItemTypeFieldNumber = 1;
+
+        /// <summary>Field number for the "item_type_category" field.</summary>
+        public const int ItemTypeCategoryFieldNumber = 2;
+
+        /// <summary>Field number for the "expire_ms" field.</summary>
+        public const int ExpireMsFieldNumber = 3;
+
+        /// <summary>Field number for the "applied_ms" field.</summary>
+        public const int AppliedMsFieldNumber = 4;
+
+        private static readonly pb::MessageParser<AppliedItem> _parser =
+            new pb::MessageParser<AppliedItem>(() => new AppliedItem());
+
+        private long appliedMs_;
+        private long expireMs_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemId itemType_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemType itemTypeCategory_ = 0;
+
+        public AppliedItem()
+        {
+            OnConstruction();
+        }
+
+        public AppliedItem(AppliedItem other) : this()
+        {
+            itemType_ = other.itemType_;
+            itemTypeCategory_ = other.itemTypeCategory_;
+            expireMs_ = other.expireMs_;
+            appliedMs_ = other.appliedMs_;
+        }
+
+        public static pb::MessageParser<AppliedItem> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[20]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemId ItemType
+        {
+            get { return itemType_; }
+            set { itemType_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemType ItemTypeCategory
+        {
+            get { return itemTypeCategory_; }
+            set { itemTypeCategory_ = value; }
+        }
+
+        public long ExpireMs
+        {
+            get { return expireMs_; }
+            set { expireMs_ = value; }
+        }
+
+        public long AppliedMs
+        {
+            get { return appliedMs_; }
+            set { appliedMs_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public AppliedItem Clone()
+        {
+            return new AppliedItem(this);
+        }
+
+        public bool Equals(AppliedItem other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ItemType != other.ItemType) return false;
+            if (ItemTypeCategory != other.ItemTypeCategory) return false;
+            if (ExpireMs != other.ExpireMs) return false;
+            if (AppliedMs != other.AppliedMs) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ItemType != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)ItemType);
+            }
+            if (ItemTypeCategory != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)ItemTypeCategory);
+            }
+            if (ExpireMs != 0L)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt64(ExpireMs);
+            }
+            if (AppliedMs != 0L)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt64(AppliedMs);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ItemType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemType);
+            }
+            if (ItemTypeCategory != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemTypeCategory);
+            }
+            if (ExpireMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(ExpireMs);
+            }
+            if (AppliedMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(AppliedMs);
+            }
+            return size;
+        }
+
+        public void MergeFrom(AppliedItem other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ItemType != 0)
+            {
+                ItemType = other.ItemType;
+            }
+            if (other.ItemTypeCategory != 0)
+            {
+                ItemTypeCategory = other.ItemTypeCategory;
+            }
+            if (other.ExpireMs != 0L)
+            {
+                ExpireMs = other.ExpireMs;
+            }
+            if (other.AppliedMs != 0L)
+            {
+                AppliedMs = other.AppliedMs;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            itemType_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemId)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            itemTypeCategory_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemType)input.ReadEnum();
+                            break;
+                        }
+                    case 24:
+                        {
+                            ExpireMs = input.ReadInt64();
+                            break;
+                        }
+                    case 32:
+                        {
+                            AppliedMs = input.ReadInt64();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as AppliedItem);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ItemType != 0) hash ^= ItemType.GetHashCode();
+            if (ItemTypeCategory != 0) hash ^= ItemTypeCategory.GetHashCode();
+            if (ExpireMs != 0L) hash ^= ExpireMs.GetHashCode();
+            if (AppliedMs != 0L) hash ^= AppliedMs.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EggIncubators : pb::IMessage<EggIncubators>
+    {
+        /// <summary>Field number for the "egg_incubator" field.</summary>
+        public const int EggIncubatorFieldNumber = 1;
+
+        private static readonly pb::MessageParser<EggIncubators> _parser =
+            new pb::MessageParser<EggIncubators>(() => new EggIncubators());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator eggIncubator_;
+
+        public EggIncubators()
+        {
+            OnConstruction();
+        }
+
+        public EggIncubators(EggIncubators other) : this()
+        {
+            EggIncubator = other.eggIncubator_ != null ? other.EggIncubator.Clone() : null;
+        }
+
+        public static pb::MessageParser<EggIncubators> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[21]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator EggIncubator
+        {
+            get { return eggIncubator_; }
+            set { eggIncubator_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EggIncubators Clone()
+        {
+            return new EggIncubators(this);
+        }
+
+        public bool Equals(EggIncubators other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!Equals(EggIncubator, other.EggIncubator)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (eggIncubator_ != null)
+            {
+                output.WriteRawTag(10);
+                output.WriteMessage(EggIncubator);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (eggIncubator_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(EggIncubator);
+            }
+            return size;
+        }
+
+        public void MergeFrom(EggIncubators other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.eggIncubator_ != null)
+            {
+                if (eggIncubator_ == null)
+                {
+                    eggIncubator_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator();
+                }
+                EggIncubator.MergeFrom(other.EggIncubator);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            if (eggIncubator_ == null)
+                            {
+                                eggIncubator_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubator();
+                            }
+                            input.ReadMessage(eggIncubator_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EggIncubators);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (eggIncubator_ != null) hash ^= EggIncubator.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EggIncubator : pb::IMessage<EggIncubator>
+    {
+        /// <summary>Field number for the "item_id" field.</summary>
+        public const int ItemIdFieldNumber = 1;
+
+        /// <summary>Field number for the "item_type" field.</summary>
+        public const int ItemTypeFieldNumber = 2;
+
+        /// <summary>Field number for the "incubator_type" field.</summary>
+        public const int IncubatorTypeFieldNumber = 3;
+
+        /// <summary>Field number for the "uses_remaining" field.</summary>
+        public const int UsesRemainingFieldNumber = 4;
+
+        /// <summary>Field number for the "pokemon_id" field.</summary>
+        public const int PokemonIdFieldNumber = 5;
+
+        /// <summary>Field number for the "start_km_walked" field.</summary>
+        public const int StartKmWalkedFieldNumber = 6;
+
+        /// <summary>Field number for the "target_km_walked" field.</summary>
+        public const int TargetKmWalkedFieldNumber = 7;
+
+        private static readonly pb::MessageParser<EggIncubator> _parser =
+            new pb::MessageParser<EggIncubator>(() => new EggIncubator());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorType incubatorType_ = 0;
+        private string itemId_ = "";
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemType itemType_ = 0;
+        private long pokemonId_;
+        private double startKmWalked_;
+        private double targetKmWalked_;
+        private int usesRemaining_;
+
+        public EggIncubator()
+        {
+            OnConstruction();
+        }
+
+        public EggIncubator(EggIncubator other) : this()
+        {
+            itemId_ = other.itemId_;
+            itemType_ = other.itemType_;
+            incubatorType_ = other.incubatorType_;
+            usesRemaining_ = other.usesRemaining_;
+            pokemonId_ = other.pokemonId_;
+            startKmWalked_ = other.startKmWalked_;
+            targetKmWalked_ = other.targetKmWalked_;
+        }
+
+        public static pb::MessageParser<EggIncubator> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[22]; }
+        }
+
+        public string ItemId
+        {
+            get { return itemId_; }
+            set { itemId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemType ItemType
+        {
+            get { return itemType_; }
+            set { itemType_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorType IncubatorType
+        {
+            get { return incubatorType_; }
+            set { incubatorType_ = value; }
+        }
+
+        public int UsesRemaining
+        {
+            get { return usesRemaining_; }
+            set { usesRemaining_ = value; }
+        }
+
+        /// <summary>
+        ///     TODO: Check if is PokemonType
+        /// </summary>
+        public long PokemonId
+        {
+            get { return pokemonId_; }
+            set { pokemonId_ = value; }
+        }
+
+        public double StartKmWalked
+        {
+            get { return startKmWalked_; }
+            set { startKmWalked_ = value; }
+        }
+
+        public double TargetKmWalked
+        {
+            get { return targetKmWalked_; }
+            set { targetKmWalked_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EggIncubator Clone()
+        {
+            return new EggIncubator(this);
+        }
+
+        public bool Equals(EggIncubator other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ItemId != other.ItemId) return false;
+            if (ItemType != other.ItemType) return false;
+            if (IncubatorType != other.IncubatorType) return false;
+            if (UsesRemaining != other.UsesRemaining) return false;
+            if (PokemonId != other.PokemonId) return false;
+            if (StartKmWalked != other.StartKmWalked) return false;
+            if (TargetKmWalked != other.TargetKmWalked) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ItemId.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(ItemId);
+            }
+            if (ItemType != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)ItemType);
+            }
+            if (IncubatorType != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteEnum((int)IncubatorType);
+            }
+            if (UsesRemaining != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(UsesRemaining);
+            }
+            if (PokemonId != 0L)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt64(PokemonId);
+            }
+            if (StartKmWalked != 0D)
+            {
+                output.WriteRawTag(49);
+                output.WriteDouble(StartKmWalked);
+            }
+            if (TargetKmWalked != 0D)
+            {
+                output.WriteRawTag(57);
+                output.WriteDouble(TargetKmWalked);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ItemId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(ItemId);
+            }
+            if (ItemType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemType);
+            }
+            if (IncubatorType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)IncubatorType);
+            }
+            if (UsesRemaining != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(UsesRemaining);
+            }
+            if (PokemonId != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(PokemonId);
+            }
+            if (StartKmWalked != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (TargetKmWalked != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(EggIncubator other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ItemId.Length != 0)
+            {
+                ItemId = other.ItemId;
+            }
+            if (other.ItemType != 0)
+            {
+                ItemType = other.ItemType;
+            }
+            if (other.IncubatorType != 0)
+            {
+                IncubatorType = other.IncubatorType;
+            }
+            if (other.UsesRemaining != 0)
+            {
+                UsesRemaining = other.UsesRemaining;
+            }
+            if (other.PokemonId != 0L)
+            {
+                PokemonId = other.PokemonId;
+            }
+            if (other.StartKmWalked != 0D)
+            {
+                StartKmWalked = other.StartKmWalked;
+            }
+            if (other.TargetKmWalked != 0D)
+            {
+                TargetKmWalked = other.TargetKmWalked;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            ItemId = input.ReadString();
+                            break;
+                        }
+                    case 16:
+                        {
+                            itemType_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemType)input.ReadEnum();
+                            break;
+                        }
+                    case 24:
+                        {
+                            incubatorType_ = (global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorType)input.ReadEnum();
+                            break;
+                        }
+                    case 32:
+                        {
+                            UsesRemaining = input.ReadInt32();
+                            break;
+                        }
+                    case 40:
+                        {
+                            PokemonId = input.ReadInt64();
+                            break;
+                        }
+                    case 49:
+                        {
+                            StartKmWalked = input.ReadDouble();
+                            break;
+                        }
+                    case 57:
+                        {
+                            TargetKmWalked = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EggIncubator);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ItemId.Length != 0) hash ^= ItemId.GetHashCode();
+            if (ItemType != 0) hash ^= ItemType.GetHashCode();
+            if (IncubatorType != 0) hash ^= IncubatorType.GetHashCode();
+            if (UsesRemaining != 0) hash ^= UsesRemaining.GetHashCode();
+            if (PokemonId != 0L) hash ^= PokemonId.GetHashCode();
+            if (StartKmWalked != 0D) hash ^= StartKmWalked.GetHashCode();
+            if (TargetKmWalked != 0D) hash ^= TargetKmWalked.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PokemonFamily : pb::IMessage<PokemonFamily>
+    {
+        /// <summary>Field number for the "family_id" field.</summary>
+        public const int FamilyIdFieldNumber = 1;
+
+        /// <summary>Field number for the "candy" field.</summary>
+        public const int CandyFieldNumber = 2;
+
+        private static readonly pb::MessageParser<PokemonFamily> _parser =
+            new pb::MessageParser<PokemonFamily>(() => new PokemonFamily());
+
+        private int candy_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamilyId familyId_ = 0;
+
+        public PokemonFamily()
+        {
+            OnConstruction();
+        }
+
+        public PokemonFamily(PokemonFamily other) : this()
+        {
+            familyId_ = other.familyId_;
+            candy_ = other.candy_;
+        }
+
+        public static pb::MessageParser<PokemonFamily> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[23]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamilyId FamilyId
+        {
+            get { return familyId_; }
+            set { familyId_ = value; }
+        }
+
+        public int Candy
+        {
+            get { return candy_; }
+            set { candy_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PokemonFamily Clone()
+        {
+            return new PokemonFamily(this);
+        }
+
+        public bool Equals(PokemonFamily other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (FamilyId != other.FamilyId) return false;
+            if (Candy != other.Candy) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (FamilyId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)FamilyId);
+            }
+            if (Candy != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(Candy);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (FamilyId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)FamilyId);
+            }
+            if (Candy != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Candy);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PokemonFamily other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.FamilyId != 0)
+            {
+                FamilyId = other.FamilyId;
+            }
+            if (other.Candy != 0)
+            {
+                Candy = other.Candy;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            familyId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamilyId)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            Candy = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PokemonFamily);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (FamilyId != 0) hash ^= FamilyId.GetHashCode();
+            if (Candy != 0) hash ^= Candy.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GetMapObjectsRequest : pb::IMessage<GetMapObjectsRequest>
+    {
+        /// <summary>Field number for the "cell_id" field.</summary>
+        public const int CellIdFieldNumber = 1;
+
+        /// <summary>Field number for the "since_timestamp_ms" field.</summary>
+        public const int SinceTimestampMsFieldNumber = 2;
+
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 3;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 4;
+
+        private static readonly pb::MessageParser<GetMapObjectsRequest> _parser =
+            new pb::MessageParser<GetMapObjectsRequest>(() => new GetMapObjectsRequest());
+
+        private pb::ByteString cellId_ = pb::ByteString.Empty;
+        private double latitude_;
+        private double longitude_;
+        private pb::ByteString sinceTimestampMs_ = pb::ByteString.Empty;
+
+        public GetMapObjectsRequest()
+        {
+            OnConstruction();
+        }
+
+        public GetMapObjectsRequest(GetMapObjectsRequest other) : this()
+        {
+            cellId_ = other.cellId_;
+            sinceTimestampMs_ = other.sinceTimestampMs_;
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+        }
+
+        public static pb::MessageParser<GetMapObjectsRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[24]; }
+        }
+
+        public pb::ByteString CellId
+        {
+            get { return cellId_; }
+            set { cellId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public pb::ByteString SinceTimestampMs
+        {
+            get { return sinceTimestampMs_; }
+            set { sinceTimestampMs_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public double Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public double Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GetMapObjectsRequest Clone()
+        {
+            return new GetMapObjectsRequest(this);
+        }
+
+        public bool Equals(GetMapObjectsRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (CellId != other.CellId) return false;
+            if (SinceTimestampMs != other.SinceTimestampMs) return false;
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (CellId.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteBytes(CellId);
+            }
+            if (SinceTimestampMs.Length != 0)
+            {
+                output.WriteRawTag(18);
+                output.WriteBytes(SinceTimestampMs);
+            }
+            if (Latitude != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(Latitude);
+            }
+            if (Longitude != 0D)
+            {
+                output.WriteRawTag(33);
+                output.WriteDouble(Longitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (CellId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeBytesSize(CellId);
+            }
+            if (SinceTimestampMs.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeBytesSize(SinceTimestampMs);
+            }
+            if (Latitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Longitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(GetMapObjectsRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.CellId.Length != 0)
+            {
+                CellId = other.CellId;
+            }
+            if (other.SinceTimestampMs.Length != 0)
+            {
+                SinceTimestampMs = other.SinceTimestampMs;
+            }
+            if (other.Latitude != 0D)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0D)
+            {
+                Longitude = other.Longitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            CellId = input.ReadBytes();
+                            break;
+                        }
+                    case 18:
+                        {
+                            SinceTimestampMs = input.ReadBytes();
+                            break;
+                        }
+                    case 25:
+                        {
+                            Latitude = input.ReadDouble();
+                            break;
+                        }
+                    case 33:
+                        {
+                            Longitude = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GetMapObjectsRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (CellId.Length != 0) hash ^= CellId.GetHashCode();
+            if (SinceTimestampMs.Length != 0) hash ^= SinceTimestampMs.GetHashCode();
+            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GetMapObjectsResponse : pb::IMessage<GetMapObjectsResponse>
+    {
+        /// <summary>Field number for the "map_cells" field.</summary>
+        public const int MapCellsFieldNumber = 1;
+
+        /// <summary>Field number for the "status" field.</summary>
+        public const int StatusFieldNumber = 2;
+
+        private static readonly pb::MessageParser<GetMapObjectsResponse> _parser =
+            new pb::MessageParser<GetMapObjectsResponse>(() => new GetMapObjectsResponse());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.MapCell>
+            _repeated_mapCells_codec
+                = pb::FieldCodec.ForMessage(10, global::PokemonGo.RocketAPI.GeneratedCode.MapCell.Parser);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapCell> mapCells_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapCell>();
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.MapObjectsStatus status_ = 0;
+
+        public GetMapObjectsResponse()
+        {
+            OnConstruction();
+        }
+
+        public GetMapObjectsResponse(GetMapObjectsResponse other) : this()
+        {
+            mapCells_ = other.mapCells_.Clone();
+            status_ = other.status_;
+        }
+
+        public static pb::MessageParser<GetMapObjectsResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[25]; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapCell> MapCells
+        {
+            get { return mapCells_; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.MapObjectsStatus Status
+        {
+            get { return status_; }
+            set { status_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GetMapObjectsResponse Clone()
+        {
+            return new GetMapObjectsResponse(this);
+        }
+
+        public bool Equals(GetMapObjectsResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!mapCells_.Equals(other.mapCells_)) return false;
+            if (Status != other.Status) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            mapCells_.WriteTo(output, _repeated_mapCells_codec);
+            if (Status != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)Status);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += mapCells_.CalculateSize(_repeated_mapCells_codec);
+            if (Status != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Status);
+            }
+            return size;
+        }
+
+        public void MergeFrom(GetMapObjectsResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            mapCells_.Add(other.mapCells_);
+            if (other.Status != 0)
+            {
+                Status = other.Status;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            mapCells_.AddEntriesFrom(input, _repeated_mapCells_codec);
+                            break;
+                        }
+                    case 16:
+                        {
+                            status_ = (global::PokemonGo.RocketAPI.GeneratedCode.MapObjectsStatus)input.ReadEnum();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GetMapObjectsResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= mapCells_.GetHashCode();
+            if (Status != 0) hash ^= Status.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class MapCell : pb::IMessage<MapCell>
+    {
+        /// <summary>Field number for the "s2_cell_id" field.</summary>
+        public const int S2CellIdFieldNumber = 1;
+
+        /// <summary>Field number for the "current_timestamp_ms" field.</summary>
+        public const int CurrentTimestampMsFieldNumber = 2;
+
+        /// <summary>Field number for the "forts" field.</summary>
+        public const int FortsFieldNumber = 3;
+
+        /// <summary>Field number for the "spawn_points" field.</summary>
+        public const int SpawnPointsFieldNumber = 4;
+
+        /// <summary>Field number for the "deleted_objects" field.</summary>
+        public const int DeletedObjectsFieldNumber = 6;
+
+        /// <summary>Field number for the "is_truncated_list" field.</summary>
+        public const int IsTruncatedListFieldNumber = 7;
+
+        /// <summary>Field number for the "fort_summaries" field.</summary>
+        public const int FortSummariesFieldNumber = 8;
+
+        /// <summary>Field number for the "decimated_spawn_points" field.</summary>
+        public const int DecimatedSpawnPointsFieldNumber = 9;
+
+        /// <summary>Field number for the "wild_pokemons" field.</summary>
+        public const int WildPokemonsFieldNumber = 5;
+
+        /// <summary>Field number for the "catchable_pokemons" field.</summary>
+        public const int CatchablePokemonsFieldNumber = 10;
+
+        /// <summary>Field number for the "nearby_pokemons" field.</summary>
+        public const int NearbyPokemonsFieldNumber = 11;
+
+        private static readonly pb::MessageParser<MapCell> _parser = new pb::MessageParser<MapCell>(() => new MapCell());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortData> _repeated_forts_codec
+            = pb::FieldCodec.ForMessage(26, global::PokemonGo.RocketAPI.GeneratedCode.FortData.Parser);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint>
+            _repeated_spawnPoints_codec
+                = pb::FieldCodec.ForMessage(34, global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint.Parser);
+
+        private static readonly pb::FieldCodec<string> _repeated_deletedObjects_codec
+            = pb::FieldCodec.ForString(50);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortSummary>
+            _repeated_fortSummaries_codec
+                = pb::FieldCodec.ForMessage(66, global::PokemonGo.RocketAPI.GeneratedCode.FortSummary.Parser);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint>
+            _repeated_decimatedSpawnPoints_codec
+                = pb::FieldCodec.ForMessage(74, global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint.Parser);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon>
+            _repeated_wildPokemons_codec
+                = pb::FieldCodec.ForMessage(42, global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon.Parser);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon>
+            _repeated_catchablePokemons_codec
+                = pb::FieldCodec.ForMessage(82, global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon.Parser);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon>
+            _repeated_nearbyPokemons_codec
+                = pb::FieldCodec.ForMessage(90, global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon.Parser);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon> catchablePokemons_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> decimatedSpawnPoints_
+            = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint>();
+
+        private readonly pbc::RepeatedField<string> deletedObjects_ = new pbc::RepeatedField<string>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData> forts_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSummary> fortSummaries_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSummary>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon> nearbyPokemons_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> spawnPoints_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> wildPokemons_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon>();
+
+        private long currentTimestampMs_;
+        private bool isTruncatedList_;
+        private ulong s2CellId_;
+
+        public MapCell()
+        {
+            OnConstruction();
+        }
+
+        public MapCell(MapCell other) : this()
+        {
+            s2CellId_ = other.s2CellId_;
+            currentTimestampMs_ = other.currentTimestampMs_;
+            forts_ = other.forts_.Clone();
+            spawnPoints_ = other.spawnPoints_.Clone();
+            deletedObjects_ = other.deletedObjects_.Clone();
+            isTruncatedList_ = other.isTruncatedList_;
+            fortSummaries_ = other.fortSummaries_.Clone();
+            decimatedSpawnPoints_ = other.decimatedSpawnPoints_.Clone();
+            wildPokemons_ = other.wildPokemons_.Clone();
+            catchablePokemons_ = other.catchablePokemons_.Clone();
+            nearbyPokemons_ = other.nearbyPokemons_.Clone();
+        }
+
+        public static pb::MessageParser<MapCell> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[26]; }
+        }
+
+        /// <summary>
+        ///     S2 geographic area that the cell covers (http://s2map.com/)
+        ///     (https://code.google.com/archive/p/s2-geometry-library/)
+        /// </summary>
+        public ulong S2CellId
+        {
+            get { return s2CellId_; }
+            set { s2CellId_ = value; }
+        }
+
+        public long CurrentTimestampMs
+        {
+            get { return currentTimestampMs_; }
+            set { currentTimestampMs_ = value; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData> Forts
+        {
+            get { return forts_; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> SpawnPoints
+        {
+            get { return spawnPoints_; }
+        }
+
+        public pbc::RepeatedField<string> DeletedObjects
+        {
+            get { return deletedObjects_; }
+        }
+
+        public bool IsTruncatedList
+        {
+            get { return isTruncatedList_; }
+            set { isTruncatedList_ = value; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSummary> FortSummaries
+        {
+            get { return fortSummaries_; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.SpawnPoint> DecimatedSpawnPoints
+        {
+            get { return decimatedSpawnPoints_; }
+        }
+
+        /// <summary>
+        ///     Pokemon within 2 steps or less.
+        /// </summary>
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> WildPokemons
+        {
+            get { return wildPokemons_; }
+        }
+
+        /// <summary>
+        ///     Pokemon within 1 step or none.
+        /// </summary>
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.MapPokemon> CatchablePokemons
+        {
+            get { return catchablePokemons_; }
+        }
+
+        /// <summary>
+        ///     Pokemon farther away than 2 steps, but still in the area.
+        /// </summary>
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.NearbyPokemon> NearbyPokemons
+        {
+            get { return nearbyPokemons_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public MapCell Clone()
+        {
+            return new MapCell(this);
+        }
+
+        public bool Equals(MapCell other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (S2CellId != other.S2CellId) return false;
+            if (CurrentTimestampMs != other.CurrentTimestampMs) return false;
+            if (!forts_.Equals(other.forts_)) return false;
+            if (!spawnPoints_.Equals(other.spawnPoints_)) return false;
+            if (!deletedObjects_.Equals(other.deletedObjects_)) return false;
+            if (IsTruncatedList != other.IsTruncatedList) return false;
+            if (!fortSummaries_.Equals(other.fortSummaries_)) return false;
+            if (!decimatedSpawnPoints_.Equals(other.decimatedSpawnPoints_)) return false;
+            if (!wildPokemons_.Equals(other.wildPokemons_)) return false;
+            if (!catchablePokemons_.Equals(other.catchablePokemons_)) return false;
+            if (!nearbyPokemons_.Equals(other.nearbyPokemons_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (S2CellId != 0UL)
+            {
+                output.WriteRawTag(8);
+                output.WriteUInt64(S2CellId);
+            }
+            if (CurrentTimestampMs != 0L)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt64(CurrentTimestampMs);
+            }
+            forts_.WriteTo(output, _repeated_forts_codec);
+            spawnPoints_.WriteTo(output, _repeated_spawnPoints_codec);
+            wildPokemons_.WriteTo(output, _repeated_wildPokemons_codec);
+            deletedObjects_.WriteTo(output, _repeated_deletedObjects_codec);
+            if (IsTruncatedList != false)
+            {
+                output.WriteRawTag(56);
+                output.WriteBool(IsTruncatedList);
+            }
+            fortSummaries_.WriteTo(output, _repeated_fortSummaries_codec);
+            decimatedSpawnPoints_.WriteTo(output, _repeated_decimatedSpawnPoints_codec);
+            catchablePokemons_.WriteTo(output, _repeated_catchablePokemons_codec);
+            nearbyPokemons_.WriteTo(output, _repeated_nearbyPokemons_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (S2CellId != 0UL)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeUInt64Size(S2CellId);
+            }
+            if (CurrentTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(CurrentTimestampMs);
+            }
+            size += forts_.CalculateSize(_repeated_forts_codec);
+            size += spawnPoints_.CalculateSize(_repeated_spawnPoints_codec);
+            size += deletedObjects_.CalculateSize(_repeated_deletedObjects_codec);
+            if (IsTruncatedList != false)
+            {
+                size += 1 + 1;
+            }
+            size += fortSummaries_.CalculateSize(_repeated_fortSummaries_codec);
+            size += decimatedSpawnPoints_.CalculateSize(_repeated_decimatedSpawnPoints_codec);
+            size += wildPokemons_.CalculateSize(_repeated_wildPokemons_codec);
+            size += catchablePokemons_.CalculateSize(_repeated_catchablePokemons_codec);
+            size += nearbyPokemons_.CalculateSize(_repeated_nearbyPokemons_codec);
+            return size;
+        }
+
+        public void MergeFrom(MapCell other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.S2CellId != 0UL)
+            {
+                S2CellId = other.S2CellId;
+            }
+            if (other.CurrentTimestampMs != 0L)
+            {
+                CurrentTimestampMs = other.CurrentTimestampMs;
+            }
+            forts_.Add(other.forts_);
+            spawnPoints_.Add(other.spawnPoints_);
+            deletedObjects_.Add(other.deletedObjects_);
+            if (other.IsTruncatedList != false)
+            {
+                IsTruncatedList = other.IsTruncatedList;
+            }
+            fortSummaries_.Add(other.fortSummaries_);
+            decimatedSpawnPoints_.Add(other.decimatedSpawnPoints_);
+            wildPokemons_.Add(other.wildPokemons_);
+            catchablePokemons_.Add(other.catchablePokemons_);
+            nearbyPokemons_.Add(other.nearbyPokemons_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            S2CellId = input.ReadUInt64();
+                            break;
+                        }
+                    case 16:
+                        {
+                            CurrentTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 26:
+                        {
+                            forts_.AddEntriesFrom(input, _repeated_forts_codec);
+                            break;
+                        }
+                    case 34:
+                        {
+                            spawnPoints_.AddEntriesFrom(input, _repeated_spawnPoints_codec);
+                            break;
+                        }
+                    case 42:
+                        {
+                            wildPokemons_.AddEntriesFrom(input, _repeated_wildPokemons_codec);
+                            break;
+                        }
+                    case 50:
+                        {
+                            deletedObjects_.AddEntriesFrom(input, _repeated_deletedObjects_codec);
+                            break;
+                        }
+                    case 56:
+                        {
+                            IsTruncatedList = input.ReadBool();
+                            break;
+                        }
+                    case 66:
+                        {
+                            fortSummaries_.AddEntriesFrom(input, _repeated_fortSummaries_codec);
+                            break;
+                        }
+                    case 74:
+                        {
+                            decimatedSpawnPoints_.AddEntriesFrom(input, _repeated_decimatedSpawnPoints_codec);
+                            break;
+                        }
+                    case 82:
+                        {
+                            catchablePokemons_.AddEntriesFrom(input, _repeated_catchablePokemons_codec);
+                            break;
+                        }
+                    case 90:
+                        {
+                            nearbyPokemons_.AddEntriesFrom(input, _repeated_nearbyPokemons_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as MapCell);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (S2CellId != 0UL) hash ^= S2CellId.GetHashCode();
+            if (CurrentTimestampMs != 0L) hash ^= CurrentTimestampMs.GetHashCode();
+            hash ^= forts_.GetHashCode();
+            hash ^= spawnPoints_.GetHashCode();
+            hash ^= deletedObjects_.GetHashCode();
+            if (IsTruncatedList != false) hash ^= IsTruncatedList.GetHashCode();
+            hash ^= fortSummaries_.GetHashCode();
+            hash ^= decimatedSpawnPoints_.GetHashCode();
+            hash ^= wildPokemons_.GetHashCode();
+            hash ^= catchablePokemons_.GetHashCode();
+            hash ^= nearbyPokemons_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortData : pb::IMessage<FortData>
+    {
+        /// <summary>Field number for the "id" field.</summary>
+        public const int IdFieldNumber = 1;
+
+        /// <summary>Field number for the "last_modified_timestamp_ms" field.</summary>
+        public const int LastModifiedTimestampMsFieldNumber = 2;
+
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 3;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 4;
+
+        /// <summary>Field number for the "enabled" field.</summary>
+        public const int EnabledFieldNumber = 8;
+
+        /// <summary>Field number for the "type" field.</summary>
+        public const int TypeFieldNumber = 9;
+
+        /// <summary>Field number for the "owned_by_team" field.</summary>
+        public const int OwnedByTeamFieldNumber = 5;
+
+        /// <summary>Field number for the "guard_pokemon_id" field.</summary>
+        public const int GuardPokemonIdFieldNumber = 6;
+
+        /// <summary>Field number for the "guard_pokemon_cp" field.</summary>
+        public const int GuardPokemonCpFieldNumber = 7;
+
+        /// <summary>Field number for the "gym_points" field.</summary>
+        public const int GymPointsFieldNumber = 10;
+
+        /// <summary>Field number for the "is_in_battle" field.</summary>
+        public const int IsInBattleFieldNumber = 11;
+
+        /// <summary>Field number for the "cooldown_complete_timestamp_ms" field.</summary>
+        public const int CooldownCompleteTimestampMsFieldNumber = 14;
+
+        /// <summary>Field number for the "sponsor" field.</summary>
+        public const int SponsorFieldNumber = 15;
+
+        /// <summary>Field number for the "rendering_type" field.</summary>
+        public const int RenderingTypeFieldNumber = 16;
+
+        /// <summary>Field number for the "active_fort_modifier" field.</summary>
+        public const int ActiveFortModifierFieldNumber = 12;
+
+        /// <summary>Field number for the "lure_info" field.</summary>
+        public const int LureInfoFieldNumber = 13;
+
+        private static readonly pb::MessageParser<FortData> _parser =
+            new pb::MessageParser<FortData>(() => new FortData());
+
+        private pb::ByteString activeFortModifier_ = pb::ByteString.Empty;
+        private long cooldownCompleteTimestampMs_;
+        private bool enabled_;
+        private int guardPokemonCp_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonId guardPokemonId_ = 0;
+        private long gymPoints_;
+        private string id_ = "";
+        private bool isInBattle_;
+        private long lastModifiedTimestampMs_;
+        private double latitude_;
+        private double longitude_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo lureInfo_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.TeamColor ownedByTeam_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.FortRenderingType renderingType_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.FortSponsor sponsor_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.FortType type_ = 0;
+
+        public FortData()
+        {
+            OnConstruction();
+        }
+
+        public FortData(FortData other) : this()
+        {
+            id_ = other.id_;
+            lastModifiedTimestampMs_ = other.lastModifiedTimestampMs_;
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+            enabled_ = other.enabled_;
+            type_ = other.type_;
+            ownedByTeam_ = other.ownedByTeam_;
+            guardPokemonId_ = other.guardPokemonId_;
+            guardPokemonCp_ = other.guardPokemonCp_;
+            gymPoints_ = other.gymPoints_;
+            isInBattle_ = other.isInBattle_;
+            cooldownCompleteTimestampMs_ = other.cooldownCompleteTimestampMs_;
+            sponsor_ = other.sponsor_;
+            renderingType_ = other.renderingType_;
+            activeFortModifier_ = other.activeFortModifier_;
+            LureInfo = other.lureInfo_ != null ? other.LureInfo.Clone() : null;
+        }
+
+        public static pb::MessageParser<FortData> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[27]; }
+        }
+
+        public string Id
+        {
+            get { return id_; }
+            set { id_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public long LastModifiedTimestampMs
+        {
+            get { return lastModifiedTimestampMs_; }
+            set { lastModifiedTimestampMs_ = value; }
+        }
+
+        public double Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public double Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        public bool Enabled
+        {
+            get { return enabled_; }
+            set { enabled_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FortType Type
+        {
+            get { return type_; }
+            set { type_ = value; }
+        }
+
+        /// <summary>
+        ///     Team that owns the gym
+        /// </summary>
+        public global::PokemonGo.RocketAPI.GeneratedCode.TeamColor OwnedByTeam
+        {
+            get { return ownedByTeam_; }
+            set { ownedByTeam_ = value; }
+        }
+
+        /// <summary>
+        ///     Highest CP Pokemon at the gym
+        /// </summary>
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonId GuardPokemonId
+        {
+            get { return guardPokemonId_; }
+            set { guardPokemonId_ = value; }
+        }
+
+        public int GuardPokemonCp
+        {
+            get { return guardPokemonCp_; }
+            set { guardPokemonCp_ = value; }
+        }
+
+        /// <summary>
+        ///     Prestigate / experience of the gym
+        /// </summary>
+        public long GymPoints
+        {
+            get { return gymPoints_; }
+            set { gymPoints_ = value; }
+        }
+
+        /// <summary>
+        ///     Whether someone is battling at the gym currently
+        /// </summary>
+        public bool IsInBattle
+        {
+            get { return isInBattle_; }
+            set { isInBattle_ = value; }
+        }
+
+        /// <summary>
+        ///     Timestamp when the pokestop can be activated again to get items / xp
+        /// </summary>
+        public long CooldownCompleteTimestampMs
+        {
+            get { return cooldownCompleteTimestampMs_; }
+            set { cooldownCompleteTimestampMs_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FortSponsor Sponsor
+        {
+            get { return sponsor_; }
+            set { sponsor_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FortRenderingType RenderingType
+        {
+            get { return renderingType_; }
+            set { renderingType_ = value; }
+        }
+
+        /// <summary>
+        ///     Might represent the type of item applied to the pokestop, right now only lures can be applied
+        /// </summary>
+        public pb::ByteString ActiveFortModifier
+        {
+            get { return activeFortModifier_; }
+            set { activeFortModifier_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo LureInfo
+        {
+            get { return lureInfo_; }
+            set { lureInfo_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortData Clone()
+        {
+            return new FortData(this);
+        }
+
+        public bool Equals(FortData other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Id != other.Id) return false;
+            if (LastModifiedTimestampMs != other.LastModifiedTimestampMs) return false;
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            if (Enabled != other.Enabled) return false;
+            if (Type != other.Type) return false;
+            if (OwnedByTeam != other.OwnedByTeam) return false;
+            if (GuardPokemonId != other.GuardPokemonId) return false;
+            if (GuardPokemonCp != other.GuardPokemonCp) return false;
+            if (GymPoints != other.GymPoints) return false;
+            if (IsInBattle != other.IsInBattle) return false;
+            if (CooldownCompleteTimestampMs != other.CooldownCompleteTimestampMs) return false;
+            if (Sponsor != other.Sponsor) return false;
+            if (RenderingType != other.RenderingType) return false;
+            if (ActiveFortModifier != other.ActiveFortModifier) return false;
+            if (!Equals(LureInfo, other.LureInfo)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Id.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(Id);
+            }
+            if (LastModifiedTimestampMs != 0L)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt64(LastModifiedTimestampMs);
+            }
+            if (Latitude != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(Latitude);
+            }
+            if (Longitude != 0D)
+            {
+                output.WriteRawTag(33);
+                output.WriteDouble(Longitude);
+            }
+            if (OwnedByTeam != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteEnum((int)OwnedByTeam);
+            }
+            if (GuardPokemonId != 0)
+            {
+                output.WriteRawTag(48);
+                output.WriteEnum((int)GuardPokemonId);
+            }
+            if (GuardPokemonCp != 0)
+            {
+                output.WriteRawTag(56);
+                output.WriteInt32(GuardPokemonCp);
+            }
+            if (Enabled != false)
+            {
+                output.WriteRawTag(64);
+                output.WriteBool(Enabled);
+            }
+            if (Type != 0)
+            {
+                output.WriteRawTag(72);
+                output.WriteEnum((int)Type);
+            }
+            if (GymPoints != 0L)
+            {
+                output.WriteRawTag(80);
+                output.WriteInt64(GymPoints);
+            }
+            if (IsInBattle != false)
+            {
+                output.WriteRawTag(88);
+                output.WriteBool(IsInBattle);
+            }
+            if (ActiveFortModifier.Length != 0)
+            {
+                output.WriteRawTag(98);
+                output.WriteBytes(ActiveFortModifier);
+            }
+            if (lureInfo_ != null)
+            {
+                output.WriteRawTag(106);
+                output.WriteMessage(LureInfo);
+            }
+            if (CooldownCompleteTimestampMs != 0L)
+            {
+                output.WriteRawTag(112);
+                output.WriteInt64(CooldownCompleteTimestampMs);
+            }
+            if (Sponsor != 0)
+            {
+                output.WriteRawTag(120);
+                output.WriteEnum((int)Sponsor);
+            }
+            if (RenderingType != 0)
+            {
+                output.WriteRawTag(128, 1);
+                output.WriteEnum((int)RenderingType);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Id.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Id);
+            }
+            if (LastModifiedTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(LastModifiedTimestampMs);
+            }
+            if (Latitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Longitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Enabled != false)
+            {
+                size += 1 + 1;
+            }
+            if (Type != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Type);
+            }
+            if (OwnedByTeam != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)OwnedByTeam);
+            }
+            if (GuardPokemonId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)GuardPokemonId);
+            }
+            if (GuardPokemonCp != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(GuardPokemonCp);
+            }
+            if (GymPoints != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(GymPoints);
+            }
+            if (IsInBattle != false)
+            {
+                size += 1 + 1;
+            }
+            if (CooldownCompleteTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(CooldownCompleteTimestampMs);
+            }
+            if (Sponsor != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Sponsor);
+            }
+            if (RenderingType != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeEnumSize((int)RenderingType);
+            }
+            if (ActiveFortModifier.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeBytesSize(ActiveFortModifier);
+            }
+            if (lureInfo_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(LureInfo);
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortData other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Id.Length != 0)
+            {
+                Id = other.Id;
+            }
+            if (other.LastModifiedTimestampMs != 0L)
+            {
+                LastModifiedTimestampMs = other.LastModifiedTimestampMs;
+            }
+            if (other.Latitude != 0D)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0D)
+            {
+                Longitude = other.Longitude;
+            }
+            if (other.Enabled != false)
+            {
+                Enabled = other.Enabled;
+            }
+            if (other.Type != 0)
+            {
+                Type = other.Type;
+            }
+            if (other.OwnedByTeam != 0)
+            {
+                OwnedByTeam = other.OwnedByTeam;
+            }
+            if (other.GuardPokemonId != 0)
+            {
+                GuardPokemonId = other.GuardPokemonId;
+            }
+            if (other.GuardPokemonCp != 0)
+            {
+                GuardPokemonCp = other.GuardPokemonCp;
+            }
+            if (other.GymPoints != 0L)
+            {
+                GymPoints = other.GymPoints;
+            }
+            if (other.IsInBattle != false)
+            {
+                IsInBattle = other.IsInBattle;
+            }
+            if (other.CooldownCompleteTimestampMs != 0L)
+            {
+                CooldownCompleteTimestampMs = other.CooldownCompleteTimestampMs;
+            }
+            if (other.Sponsor != 0)
+            {
+                Sponsor = other.Sponsor;
+            }
+            if (other.RenderingType != 0)
+            {
+                RenderingType = other.RenderingType;
+            }
+            if (other.ActiveFortModifier.Length != 0)
+            {
+                ActiveFortModifier = other.ActiveFortModifier;
+            }
+            if (other.lureInfo_ != null)
+            {
+                if (lureInfo_ == null)
+                {
+                    lureInfo_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo();
+                }
+                LureInfo.MergeFrom(other.LureInfo);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            Id = input.ReadString();
+                            break;
+                        }
+                    case 16:
+                        {
+                            LastModifiedTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 25:
+                        {
+                            Latitude = input.ReadDouble();
+                            break;
+                        }
+                    case 33:
+                        {
+                            Longitude = input.ReadDouble();
+                            break;
+                        }
+                    case 40:
+                        {
+                            ownedByTeam_ = (global::PokemonGo.RocketAPI.GeneratedCode.TeamColor)input.ReadEnum();
+                            break;
+                        }
+                    case 48:
+                        {
+                            guardPokemonId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)input.ReadEnum();
+                            break;
+                        }
+                    case 56:
+                        {
+                            GuardPokemonCp = input.ReadInt32();
+                            break;
+                        }
+                    case 64:
+                        {
+                            Enabled = input.ReadBool();
+                            break;
+                        }
+                    case 72:
+                        {
+                            type_ = (global::PokemonGo.RocketAPI.GeneratedCode.FortType)input.ReadEnum();
+                            break;
+                        }
+                    case 80:
+                        {
+                            GymPoints = input.ReadInt64();
+                            break;
+                        }
+                    case 88:
+                        {
+                            IsInBattle = input.ReadBool();
+                            break;
+                        }
+                    case 98:
+                        {
+                            ActiveFortModifier = input.ReadBytes();
+                            break;
+                        }
+                    case 106:
+                        {
+                            if (lureInfo_ == null)
+                            {
+                                lureInfo_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortLureInfo();
+                            }
+                            input.ReadMessage(lureInfo_);
+                            break;
+                        }
+                    case 112:
+                        {
+                            CooldownCompleteTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 120:
+                        {
+                            sponsor_ = (global::PokemonGo.RocketAPI.GeneratedCode.FortSponsor)input.ReadEnum();
+                            break;
+                        }
+                    case 128:
+                        {
+                            renderingType_ = (global::PokemonGo.RocketAPI.GeneratedCode.FortRenderingType)input.ReadEnum();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortData);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Id.Length != 0) hash ^= Id.GetHashCode();
+            if (LastModifiedTimestampMs != 0L) hash ^= LastModifiedTimestampMs.GetHashCode();
+            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
+            if (Enabled != false) hash ^= Enabled.GetHashCode();
+            if (Type != 0) hash ^= Type.GetHashCode();
+            if (OwnedByTeam != 0) hash ^= OwnedByTeam.GetHashCode();
+            if (GuardPokemonId != 0) hash ^= GuardPokemonId.GetHashCode();
+            if (GuardPokemonCp != 0) hash ^= GuardPokemonCp.GetHashCode();
+            if (GymPoints != 0L) hash ^= GymPoints.GetHashCode();
+            if (IsInBattle != false) hash ^= IsInBattle.GetHashCode();
+            if (CooldownCompleteTimestampMs != 0L) hash ^= CooldownCompleteTimestampMs.GetHashCode();
+            if (Sponsor != 0) hash ^= Sponsor.GetHashCode();
+            if (RenderingType != 0) hash ^= RenderingType.GetHashCode();
+            if (ActiveFortModifier.Length != 0) hash ^= ActiveFortModifier.GetHashCode();
+            if (lureInfo_ != null) hash ^= LureInfo.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortLureInfo : pb::IMessage<FortLureInfo>
+    {
+        /// <summary>Field number for the "fort_id" field.</summary>
+        public const int FortIdFieldNumber = 1;
+
+        /// <summary>Field number for the "unknown2" field.</summary>
+        public const int Unknown2FieldNumber = 2;
+
+        /// <summary>Field number for the "active_pokemon_id" field.</summary>
+        public const int ActivePokemonIdFieldNumber = 3;
+
+        /// <summary>Field number for the "lure_expires_timestamp_ms" field.</summary>
+        public const int LureExpiresTimestampMsFieldNumber = 4;
+
+        private static readonly pb::MessageParser<FortLureInfo> _parser =
+            new pb::MessageParser<FortLureInfo>(() => new FortLureInfo());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonId activePokemonId_ = 0;
+        private string fortId_ = "";
+        private long lureExpiresTimestampMs_;
+        private double unknown2_;
+
+        public FortLureInfo()
+        {
+            OnConstruction();
+        }
+
+        public FortLureInfo(FortLureInfo other) : this()
+        {
+            fortId_ = other.fortId_;
+            unknown2_ = other.unknown2_;
+            activePokemonId_ = other.activePokemonId_;
+            lureExpiresTimestampMs_ = other.lureExpiresTimestampMs_;
+        }
+
+        public static pb::MessageParser<FortLureInfo> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[28]; }
+        }
+
+        public string FortId
+        {
+            get { return fortId_; }
+            set { fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public double Unknown2
+        {
+            get { return unknown2_; }
+            set { unknown2_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonId ActivePokemonId
+        {
+            get { return activePokemonId_; }
+            set { activePokemonId_ = value; }
+        }
+
+        public long LureExpiresTimestampMs
+        {
+            get { return lureExpiresTimestampMs_; }
+            set { lureExpiresTimestampMs_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortLureInfo Clone()
+        {
+            return new FortLureInfo(this);
+        }
+
+        public bool Equals(FortLureInfo other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (FortId != other.FortId) return false;
+            if (Unknown2 != other.Unknown2) return false;
+            if (ActivePokemonId != other.ActivePokemonId) return false;
+            if (LureExpiresTimestampMs != other.LureExpiresTimestampMs) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (FortId.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(FortId);
+            }
+            if (Unknown2 != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(Unknown2);
+            }
+            if (ActivePokemonId != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteEnum((int)ActivePokemonId);
+            }
+            if (LureExpiresTimestampMs != 0L)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt64(LureExpiresTimestampMs);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (FortId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
+            }
+            if (Unknown2 != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (ActivePokemonId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ActivePokemonId);
+            }
+            if (LureExpiresTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(LureExpiresTimestampMs);
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortLureInfo other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.FortId.Length != 0)
+            {
+                FortId = other.FortId;
+            }
+            if (other.Unknown2 != 0D)
+            {
+                Unknown2 = other.Unknown2;
+            }
+            if (other.ActivePokemonId != 0)
+            {
+                ActivePokemonId = other.ActivePokemonId;
+            }
+            if (other.LureExpiresTimestampMs != 0L)
+            {
+                LureExpiresTimestampMs = other.LureExpiresTimestampMs;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            FortId = input.ReadString();
+                            break;
+                        }
+                    case 17:
+                        {
+                            Unknown2 = input.ReadDouble();
+                            break;
+                        }
+                    case 24:
+                        {
+                            activePokemonId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)input.ReadEnum();
+                            break;
+                        }
+                    case 32:
+                        {
+                            LureExpiresTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortLureInfo);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
+            if (Unknown2 != 0D) hash ^= Unknown2.GetHashCode();
+            if (ActivePokemonId != 0) hash ^= ActivePokemonId.GetHashCode();
+            if (LureExpiresTimestampMs != 0L) hash ^= LureExpiresTimestampMs.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class SpawnPoint : pb::IMessage<SpawnPoint>
+    {
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 2;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 3;
+
+        private static readonly pb::MessageParser<SpawnPoint> _parser =
+            new pb::MessageParser<SpawnPoint>(() => new SpawnPoint());
+
+        private double latitude_;
+        private double longitude_;
+
+        public SpawnPoint()
+        {
+            OnConstruction();
+        }
+
+        public SpawnPoint(SpawnPoint other) : this()
+        {
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+        }
+
+        public static pb::MessageParser<SpawnPoint> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[29]; }
+        }
+
+        public double Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public double Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public SpawnPoint Clone()
+        {
+            return new SpawnPoint(this);
+        }
+
+        public bool Equals(SpawnPoint other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Latitude != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(Latitude);
+            }
+            if (Longitude != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(Longitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Latitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Longitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(SpawnPoint other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Latitude != 0D)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0D)
+            {
+                Longitude = other.Longitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 17:
+                        {
+                            Latitude = input.ReadDouble();
+                            break;
+                        }
+                    case 25:
+                        {
+                            Longitude = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as SpawnPoint);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortSummary : pb::IMessage<FortSummary>
+    {
+        /// <summary>Field number for the "fort_summary_id" field.</summary>
+        public const int FortSummaryIdFieldNumber = 1;
+
+        /// <summary>Field number for the "last_modified_timestamp_ms" field.</summary>
+        public const int LastModifiedTimestampMsFieldNumber = 2;
+
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 3;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 4;
+
+        private static readonly pb::MessageParser<FortSummary> _parser =
+            new pb::MessageParser<FortSummary>(() => new FortSummary());
+
+        private int fortSummaryId_;
+        private int lastModifiedTimestampMs_;
+        private int latitude_;
+        private int longitude_;
+
+        public FortSummary()
+        {
+            OnConstruction();
+        }
+
+        public FortSummary(FortSummary other) : this()
+        {
+            fortSummaryId_ = other.fortSummaryId_;
+            lastModifiedTimestampMs_ = other.lastModifiedTimestampMs_;
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+        }
+
+        public static pb::MessageParser<FortSummary> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[30]; }
+        }
+
+        public int FortSummaryId
+        {
+            get { return fortSummaryId_; }
+            set { fortSummaryId_ = value; }
+        }
+
+        public int LastModifiedTimestampMs
+        {
+            get { return lastModifiedTimestampMs_; }
+            set { lastModifiedTimestampMs_ = value; }
+        }
+
+        public int Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public int Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortSummary Clone()
+        {
+            return new FortSummary(this);
+        }
+
+        public bool Equals(FortSummary other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (FortSummaryId != other.FortSummaryId) return false;
+            if (LastModifiedTimestampMs != other.LastModifiedTimestampMs) return false;
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (FortSummaryId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(FortSummaryId);
+            }
+            if (LastModifiedTimestampMs != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(LastModifiedTimestampMs);
+            }
+            if (Latitude != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(Latitude);
+            }
+            if (Longitude != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(Longitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (FortSummaryId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(FortSummaryId);
+            }
+            if (LastModifiedTimestampMs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(LastModifiedTimestampMs);
+            }
+            if (Latitude != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Latitude);
+            }
+            if (Longitude != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Longitude);
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortSummary other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.FortSummaryId != 0)
+            {
+                FortSummaryId = other.FortSummaryId;
+            }
+            if (other.LastModifiedTimestampMs != 0)
+            {
+                LastModifiedTimestampMs = other.LastModifiedTimestampMs;
+            }
+            if (other.Latitude != 0)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0)
+            {
+                Longitude = other.Longitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            FortSummaryId = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            LastModifiedTimestampMs = input.ReadInt32();
+                            break;
+                        }
+                    case 24:
+                        {
+                            Latitude = input.ReadInt32();
+                            break;
+                        }
+                    case 32:
+                        {
+                            Longitude = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortSummary);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (FortSummaryId != 0) hash ^= FortSummaryId.GetHashCode();
+            if (LastModifiedTimestampMs != 0) hash ^= LastModifiedTimestampMs.GetHashCode();
+            if (Latitude != 0) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0) hash ^= Longitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class WildPokemon : pb::IMessage<WildPokemon>
+    {
+        /// <summary>Field number for the "encounter_id" field.</summary>
+        public const int EncounterIdFieldNumber = 1;
+
+        /// <summary>Field number for the "last_modified_timestamp_ms" field.</summary>
+        public const int LastModifiedTimestampMsFieldNumber = 2;
+
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 3;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 4;
+
+        /// <summary>Field number for the "spawnpoint_id" field.</summary>
+        public const int SpawnpointIdFieldNumber = 5;
+
+        /// <summary>Field number for the "pokemon_data" field.</summary>
+        public const int PokemonDataFieldNumber = 7;
+
+        /// <summary>Field number for the "time_till_hidden_ms" field.</summary>
+        public const int TimeTillHiddenMsFieldNumber = 11;
+
+        private static readonly pb::MessageParser<WildPokemon> _parser =
+            new pb::MessageParser<WildPokemon>(() => new WildPokemon());
+
+        private ulong encounterId_;
+        private long lastModifiedTimestampMs_;
+        private double latitude_;
+        private double longitude_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemonData_;
+        private string spawnpointId_ = "";
+        private int timeTillHiddenMs_;
+
+        public WildPokemon()
+        {
+            OnConstruction();
+        }
+
+        public WildPokemon(WildPokemon other) : this()
+        {
+            encounterId_ = other.encounterId_;
+            lastModifiedTimestampMs_ = other.lastModifiedTimestampMs_;
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+            spawnpointId_ = other.spawnpointId_;
+            PokemonData = other.pokemonData_ != null ? other.PokemonData.Clone() : null;
+            timeTillHiddenMs_ = other.timeTillHiddenMs_;
+        }
+
+        public static pb::MessageParser<WildPokemon> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[31]; }
+        }
+
+        public ulong EncounterId
+        {
+            get { return encounterId_; }
+            set { encounterId_ = value; }
+        }
+
+        public long LastModifiedTimestampMs
+        {
+            get { return lastModifiedTimestampMs_; }
+            set { lastModifiedTimestampMs_ = value; }
+        }
+
+        public double Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public double Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        public string SpawnpointId
+        {
+            get { return spawnpointId_; }
+            set { spawnpointId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData PokemonData
+        {
+            get { return pokemonData_; }
+            set { pokemonData_ = value; }
+        }
+
+        public int TimeTillHiddenMs
+        {
+            get { return timeTillHiddenMs_; }
+            set { timeTillHiddenMs_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public WildPokemon Clone()
+        {
+            return new WildPokemon(this);
+        }
+
+        public bool Equals(WildPokemon other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (EncounterId != other.EncounterId) return false;
+            if (LastModifiedTimestampMs != other.LastModifiedTimestampMs) return false;
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            if (SpawnpointId != other.SpawnpointId) return false;
+            if (!Equals(PokemonData, other.PokemonData)) return false;
+            if (TimeTillHiddenMs != other.TimeTillHiddenMs) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (EncounterId != 0UL)
+            {
+                output.WriteRawTag(9);
+                output.WriteFixed64(EncounterId);
+            }
+            if (LastModifiedTimestampMs != 0L)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt64(LastModifiedTimestampMs);
+            }
+            if (Latitude != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(Latitude);
+            }
+            if (Longitude != 0D)
+            {
+                output.WriteRawTag(33);
+                output.WriteDouble(Longitude);
+            }
+            if (SpawnpointId.Length != 0)
+            {
+                output.WriteRawTag(42);
+                output.WriteString(SpawnpointId);
+            }
+            if (pokemonData_ != null)
+            {
+                output.WriteRawTag(58);
+                output.WriteMessage(PokemonData);
+            }
+            if (TimeTillHiddenMs != 0)
+            {
+                output.WriteRawTag(88);
+                output.WriteInt32(TimeTillHiddenMs);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (EncounterId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            if (LastModifiedTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(LastModifiedTimestampMs);
+            }
+            if (Latitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Longitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (SpawnpointId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnpointId);
+            }
+            if (pokemonData_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonData);
+            }
+            if (TimeTillHiddenMs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TimeTillHiddenMs);
+            }
+            return size;
+        }
+
+        public void MergeFrom(WildPokemon other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.EncounterId != 0UL)
+            {
+                EncounterId = other.EncounterId;
+            }
+            if (other.LastModifiedTimestampMs != 0L)
+            {
+                LastModifiedTimestampMs = other.LastModifiedTimestampMs;
+            }
+            if (other.Latitude != 0D)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0D)
+            {
+                Longitude = other.Longitude;
+            }
+            if (other.SpawnpointId.Length != 0)
+            {
+                SpawnpointId = other.SpawnpointId;
+            }
+            if (other.pokemonData_ != null)
+            {
+                if (pokemonData_ == null)
+                {
+                    pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                }
+                PokemonData.MergeFrom(other.PokemonData);
+            }
+            if (other.TimeTillHiddenMs != 0)
+            {
+                TimeTillHiddenMs = other.TimeTillHiddenMs;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            EncounterId = input.ReadFixed64();
+                            break;
+                        }
+                    case 16:
+                        {
+                            LastModifiedTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 25:
+                        {
+                            Latitude = input.ReadDouble();
+                            break;
+                        }
+                    case 33:
+                        {
+                            Longitude = input.ReadDouble();
+                            break;
+                        }
+                    case 42:
+                        {
+                            SpawnpointId = input.ReadString();
+                            break;
+                        }
+                    case 58:
+                        {
+                            if (pokemonData_ == null)
+                            {
+                                pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                            }
+                            input.ReadMessage(pokemonData_);
+                            break;
+                        }
+                    case 88:
+                        {
+                            TimeTillHiddenMs = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as WildPokemon);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
+            if (LastModifiedTimestampMs != 0L) hash ^= LastModifiedTimestampMs.GetHashCode();
+            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
+            if (SpawnpointId.Length != 0) hash ^= SpawnpointId.GetHashCode();
+            if (pokemonData_ != null) hash ^= PokemonData.GetHashCode();
+            if (TimeTillHiddenMs != 0) hash ^= TimeTillHiddenMs.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PokemonData : pb::IMessage<PokemonData>
+    {
+        /// <summary>Field number for the "id" field.</summary>
+        public const int IdFieldNumber = 1;
+
+        /// <summary>Field number for the "pokemon_id" field.</summary>
+        public const int PokemonIdFieldNumber = 2;
+
+        /// <summary>Field number for the "cp" field.</summary>
+        public const int CpFieldNumber = 3;
+
+        /// <summary>Field number for the "stamina" field.</summary>
+        public const int StaminaFieldNumber = 4;
+
+        /// <summary>Field number for the "stamina_max" field.</summary>
+        public const int StaminaMaxFieldNumber = 5;
+
+        /// <summary>Field number for the "move_1" field.</summary>
+        public const int Move1FieldNumber = 6;
+
+        /// <summary>Field number for the "move_2" field.</summary>
+        public const int Move2FieldNumber = 7;
+
+        /// <summary>Field number for the "deployed_fort_id" field.</summary>
+        public const int DeployedFortIdFieldNumber = 8;
+
+        /// <summary>Field number for the "owner_name" field.</summary>
+        public const int OwnerNameFieldNumber = 9;
+
+        /// <summary>Field number for the "is_egg" field.</summary>
+        public const int IsEggFieldNumber = 10;
+
+        /// <summary>Field number for the "egg_km_walked_target" field.</summary>
+        public const int EggKmWalkedTargetFieldNumber = 11;
+
+        /// <summary>Field number for the "egg_km_walked_start" field.</summary>
+        public const int EggKmWalkedStartFieldNumber = 12;
+
+        /// <summary>Field number for the "origin" field.</summary>
+        public const int OriginFieldNumber = 14;
+
+        /// <summary>Field number for the "height_m" field.</summary>
+        public const int HeightMFieldNumber = 15;
+
+        /// <summary>Field number for the "weight_kg" field.</summary>
+        public const int WeightKgFieldNumber = 16;
+
+        /// <summary>Field number for the "individual_attack" field.</summary>
+        public const int IndividualAttackFieldNumber = 17;
+
+        /// <summary>Field number for the "individual_defense" field.</summary>
+        public const int IndividualDefenseFieldNumber = 18;
+
+        /// <summary>Field number for the "individual_stamina" field.</summary>
+        public const int IndividualStaminaFieldNumber = 19;
+
+        /// <summary>Field number for the "cp_multiplier" field.</summary>
+        public const int CpMultiplierFieldNumber = 20;
+
+        /// <summary>Field number for the "pokeball" field.</summary>
+        public const int PokeballFieldNumber = 21;
+
+        /// <summary>Field number for the "captured_cell_id" field.</summary>
+        public const int CapturedCellIdFieldNumber = 22;
+
+        /// <summary>Field number for the "battles_attacked" field.</summary>
+        public const int BattlesAttackedFieldNumber = 23;
+
+        /// <summary>Field number for the "battles_defended" field.</summary>
+        public const int BattlesDefendedFieldNumber = 24;
+
+        /// <summary>Field number for the "egg_incubator_id" field.</summary>
+        public const int EggIncubatorIdFieldNumber = 25;
+
+        /// <summary>Field number for the "creation_time_ms" field.</summary>
+        public const int CreationTimeMsFieldNumber = 26;
+
+        /// <summary>Field number for the "num_upgrades" field.</summary>
+        public const int NumUpgradesFieldNumber = 27;
+
+        /// <summary>Field number for the "additional_cp_multiplier" field.</summary>
+        public const int AdditionalCpMultiplierFieldNumber = 28;
+
+        /// <summary>Field number for the "favorite" field.</summary>
+        public const int FavoriteFieldNumber = 29;
+
+        /// <summary>Field number for the "nickname" field.</summary>
+        public const int NicknameFieldNumber = 30;
+
+        /// <summary>Field number for the "from_fort" field.</summary>
+        public const int FromFortFieldNumber = 31;
+
+        private static readonly pb::MessageParser<PokemonData> _parser =
+            new pb::MessageParser<PokemonData>(() => new PokemonData());
+
+        private float additionalCpMultiplier_;
+        private int battlesAttacked_;
+        private int battlesDefended_;
+        private ulong capturedCellId_;
+        private int cp_;
+        private float cpMultiplier_;
+        private ulong creationTimeMs_;
+        private int deployedFortId_;
+        private int eggIncubatorId_;
+        private int eggKmWalkedStart_;
+        private int eggKmWalkedTarget_;
+        private int favorite_;
+        private int fromFort_;
+        private float heightM_;
+        private ulong id_;
+        private int individualAttack_;
+        private int individualDefense_;
+        private int individualStamina_;
+        private bool isEgg_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove move1_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove move2_ = 0;
+        private string nickname_ = "";
+        private int numUpgrades_;
+        private int origin_;
+        private string ownerName_ = "";
+        private int pokeball_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonId pokemonId_ = 0;
+        private int stamina_;
+        private int staminaMax_;
+        private float weightKg_;
+
+        public PokemonData()
+        {
+            OnConstruction();
+        }
+
+        public PokemonData(PokemonData other) : this()
+        {
+            id_ = other.id_;
+            pokemonId_ = other.pokemonId_;
+            cp_ = other.cp_;
+            stamina_ = other.stamina_;
+            staminaMax_ = other.staminaMax_;
+            move1_ = other.move1_;
+            move2_ = other.move2_;
+            deployedFortId_ = other.deployedFortId_;
+            ownerName_ = other.ownerName_;
+            isEgg_ = other.isEgg_;
+            eggKmWalkedTarget_ = other.eggKmWalkedTarget_;
+            eggKmWalkedStart_ = other.eggKmWalkedStart_;
+            origin_ = other.origin_;
+            heightM_ = other.heightM_;
+            weightKg_ = other.weightKg_;
+            individualAttack_ = other.individualAttack_;
+            individualDefense_ = other.individualDefense_;
+            individualStamina_ = other.individualStamina_;
+            cpMultiplier_ = other.cpMultiplier_;
+            pokeball_ = other.pokeball_;
+            capturedCellId_ = other.capturedCellId_;
+            battlesAttacked_ = other.battlesAttacked_;
+            battlesDefended_ = other.battlesDefended_;
+            eggIncubatorId_ = other.eggIncubatorId_;
+            creationTimeMs_ = other.creationTimeMs_;
+            numUpgrades_ = other.numUpgrades_;
+            additionalCpMultiplier_ = other.additionalCpMultiplier_;
+            favorite_ = other.favorite_;
+            nickname_ = other.nickname_;
+            fromFort_ = other.fromFort_;
+        }
+
+        public static pb::MessageParser<PokemonData> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[32]; }
+        }
+
+        public ulong Id
+        {
+            get { return id_; }
+            set { id_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonId PokemonId
+        {
+            get { return pokemonId_; }
+            set { pokemonId_ = value; }
+        }
+
+        public int Cp
+        {
+            get { return cp_; }
+            set { cp_ = value; }
+        }
+
+        public int Stamina
+        {
+            get { return stamina_; }
+            set { stamina_ = value; }
+        }
+
+        public int StaminaMax
+        {
+            get { return staminaMax_; }
+            set { staminaMax_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove Move1
+        {
+            get { return move1_; }
+            set { move1_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove Move2
+        {
+            get { return move2_; }
+            set { move2_ = value; }
+        }
+
+        public int DeployedFortId
+        {
+            get { return deployedFortId_; }
+            set { deployedFortId_ = value; }
+        }
+
+        public string OwnerName
+        {
+            get { return ownerName_; }
+            set { ownerName_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public bool IsEgg
+        {
+            get { return isEgg_; }
+            set { isEgg_ = value; }
+        }
+
+        public int EggKmWalkedTarget
+        {
+            get { return eggKmWalkedTarget_; }
+            set { eggKmWalkedTarget_ = value; }
+        }
+
+        public int EggKmWalkedStart
+        {
+            get { return eggKmWalkedStart_; }
+            set { eggKmWalkedStart_ = value; }
+        }
+
+        public int Origin
+        {
+            get { return origin_; }
+            set { origin_ = value; }
+        }
+
+        public float HeightM
+        {
+            get { return heightM_; }
+            set { heightM_ = value; }
+        }
+
+        public float WeightKg
+        {
+            get { return weightKg_; }
+            set { weightKg_ = value; }
+        }
+
+        public int IndividualAttack
+        {
+            get { return individualAttack_; }
+            set { individualAttack_ = value; }
+        }
+
+        public int IndividualDefense
+        {
+            get { return individualDefense_; }
+            set { individualDefense_ = value; }
+        }
+
+        public int IndividualStamina
+        {
+            get { return individualStamina_; }
+            set { individualStamina_ = value; }
+        }
+
+        public float CpMultiplier
+        {
+            get { return cpMultiplier_; }
+            set { cpMultiplier_ = value; }
+        }
+
+        public int Pokeball
+        {
+            get { return pokeball_; }
+            set { pokeball_ = value; }
+        }
+
+        public ulong CapturedCellId
+        {
+            get { return capturedCellId_; }
+            set { capturedCellId_ = value; }
+        }
+
+        public int BattlesAttacked
+        {
+            get { return battlesAttacked_; }
+            set { battlesAttacked_ = value; }
+        }
+
+        public int BattlesDefended
+        {
+            get { return battlesDefended_; }
+            set { battlesDefended_ = value; }
+        }
+
+        public int EggIncubatorId
+        {
+            get { return eggIncubatorId_; }
+            set { eggIncubatorId_ = value; }
+        }
+
+        public ulong CreationTimeMs
+        {
+            get { return creationTimeMs_; }
+            set { creationTimeMs_ = value; }
+        }
+
+        public int NumUpgrades
+        {
+            get { return numUpgrades_; }
+            set { numUpgrades_ = value; }
+        }
+
+        public float AdditionalCpMultiplier
+        {
+            get { return additionalCpMultiplier_; }
+            set { additionalCpMultiplier_ = value; }
+        }
+
+        public int Favorite
+        {
+            get { return favorite_; }
+            set { favorite_ = value; }
+        }
+
+        public string Nickname
+        {
+            get { return nickname_; }
+            set { nickname_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public int FromFort
+        {
+            get { return fromFort_; }
+            set { fromFort_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PokemonData Clone()
+        {
+            return new PokemonData(this);
+        }
+
+        public bool Equals(PokemonData other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Id != other.Id) return false;
+            if (PokemonId != other.PokemonId) return false;
+            if (Cp != other.Cp) return false;
+            if (Stamina != other.Stamina) return false;
+            if (StaminaMax != other.StaminaMax) return false;
+            if (Move1 != other.Move1) return false;
+            if (Move2 != other.Move2) return false;
+            if (DeployedFortId != other.DeployedFortId) return false;
+            if (OwnerName != other.OwnerName) return false;
+            if (IsEgg != other.IsEgg) return false;
+            if (EggKmWalkedTarget != other.EggKmWalkedTarget) return false;
+            if (EggKmWalkedStart != other.EggKmWalkedStart) return false;
+            if (Origin != other.Origin) return false;
+            if (HeightM != other.HeightM) return false;
+            if (WeightKg != other.WeightKg) return false;
+            if (IndividualAttack != other.IndividualAttack) return false;
+            if (IndividualDefense != other.IndividualDefense) return false;
+            if (IndividualStamina != other.IndividualStamina) return false;
+            if (CpMultiplier != other.CpMultiplier) return false;
+            if (Pokeball != other.Pokeball) return false;
+            if (CapturedCellId != other.CapturedCellId) return false;
+            if (BattlesAttacked != other.BattlesAttacked) return false;
+            if (BattlesDefended != other.BattlesDefended) return false;
+            if (EggIncubatorId != other.EggIncubatorId) return false;
+            if (CreationTimeMs != other.CreationTimeMs) return false;
+            if (NumUpgrades != other.NumUpgrades) return false;
+            if (AdditionalCpMultiplier != other.AdditionalCpMultiplier) return false;
+            if (Favorite != other.Favorite) return false;
+            if (Nickname != other.Nickname) return false;
+            if (FromFort != other.FromFort) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Id != 0UL)
+            {
+                output.WriteRawTag(9);
+                output.WriteFixed64(Id);
+            }
+            if (PokemonId != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)PokemonId);
+            }
+            if (Cp != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(Cp);
+            }
+            if (Stamina != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(Stamina);
+            }
+            if (StaminaMax != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(StaminaMax);
+            }
+            if (Move1 != 0)
+            {
+                output.WriteRawTag(48);
+                output.WriteEnum((int)Move1);
+            }
+            if (Move2 != 0)
+            {
+                output.WriteRawTag(56);
+                output.WriteEnum((int)Move2);
+            }
+            if (DeployedFortId != 0)
+            {
+                output.WriteRawTag(64);
+                output.WriteInt32(DeployedFortId);
+            }
+            if (OwnerName.Length != 0)
+            {
+                output.WriteRawTag(74);
+                output.WriteString(OwnerName);
+            }
+            if (IsEgg != false)
+            {
+                output.WriteRawTag(80);
+                output.WriteBool(IsEgg);
+            }
+            if (EggKmWalkedTarget != 0)
+            {
+                output.WriteRawTag(88);
+                output.WriteInt32(EggKmWalkedTarget);
+            }
+            if (EggKmWalkedStart != 0)
+            {
+                output.WriteRawTag(96);
+                output.WriteInt32(EggKmWalkedStart);
+            }
+            if (Origin != 0)
+            {
+                output.WriteRawTag(112);
+                output.WriteInt32(Origin);
+            }
+            if (HeightM != 0F)
+            {
+                output.WriteRawTag(125);
+                output.WriteFloat(HeightM);
+            }
+            if (WeightKg != 0F)
+            {
+                output.WriteRawTag(133, 1);
+                output.WriteFloat(WeightKg);
+            }
+            if (IndividualAttack != 0)
+            {
+                output.WriteRawTag(136, 1);
+                output.WriteInt32(IndividualAttack);
+            }
+            if (IndividualDefense != 0)
+            {
+                output.WriteRawTag(144, 1);
+                output.WriteInt32(IndividualDefense);
+            }
+            if (IndividualStamina != 0)
+            {
+                output.WriteRawTag(152, 1);
+                output.WriteInt32(IndividualStamina);
+            }
+            if (CpMultiplier != 0)
+            {
+                output.WriteRawTag(165, 1);
+                output.WriteFloat(CpMultiplier);
+            }
+            if (Pokeball != 0)
+            {
+                output.WriteRawTag(168, 1);
+                output.WriteInt32(Pokeball);
+            }
+            if (CapturedCellId != 0UL)
+            {
+                output.WriteRawTag(176, 1);
+                output.WriteUInt64(CapturedCellId);
+            }
+            if (BattlesAttacked != 0)
+            {
+                output.WriteRawTag(184, 1);
+                output.WriteInt32(BattlesAttacked);
+            }
+            if (BattlesDefended != 0)
+            {
+                output.WriteRawTag(192, 1);
+                output.WriteInt32(BattlesDefended);
+            }
+            if (EggIncubatorId != 0)
+            {
+                output.WriteRawTag(200, 1);
+                output.WriteInt32(EggIncubatorId);
+            }
+            if (CreationTimeMs != 0UL)
+            {
+                output.WriteRawTag(208, 1);
+                output.WriteUInt64(CreationTimeMs);
+            }
+            if (NumUpgrades != 0)
+            {
+                output.WriteRawTag(216, 1);
+                output.WriteInt32(NumUpgrades);
+            }
+            if (AdditionalCpMultiplier != 0)
+            {
+                output.WriteRawTag(229, 1);
+                output.WriteFloat(AdditionalCpMultiplier);
+            }
+            if (Favorite != 0)
+            {
+                output.WriteRawTag(232, 1);
+                output.WriteInt32(Favorite);
+            }
+            if (Nickname.Length != 0)
+            {
+                output.WriteRawTag(242, 1);
+                output.WriteString(Nickname);
+            }
+            if (FromFort != 0)
+            {
+                output.WriteRawTag(248, 1);
+                output.WriteInt32(FromFort);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Id != 0UL)
+            {
+                size += 1 + 8;
+            }
+            if (PokemonId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonId);
+            }
+            if (Cp != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Cp);
+            }
+            if (Stamina != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Stamina);
+            }
+            if (StaminaMax != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(StaminaMax);
+            }
+            if (Move1 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Move1);
+            }
+            if (Move2 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Move2);
+            }
+            if (DeployedFortId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DeployedFortId);
+            }
+            if (OwnerName.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(OwnerName);
+            }
+            if (IsEgg != false)
+            {
+                size += 1 + 1;
+            }
+            if (EggKmWalkedTarget != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggKmWalkedTarget);
+            }
+            if (EggKmWalkedStart != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EggKmWalkedStart);
+            }
+            if (Origin != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Origin);
+            }
+            if (HeightM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (WeightKg != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (IndividualAttack != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualAttack);
+            }
+            if (IndividualDefense != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualDefense);
+            }
+            if (IndividualStamina != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(IndividualStamina);
+            }
+            if (CpMultiplier != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (Pokeball != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(Pokeball);
+            }
+            if (CapturedCellId != 0UL)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeUInt64Size(CapturedCellId);
+            }
+            if (BattlesAttacked != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattlesAttacked);
+            }
+            if (BattlesDefended != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(BattlesDefended);
+            }
+            if (EggIncubatorId != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(EggIncubatorId);
+            }
+            if (CreationTimeMs != 0UL)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeUInt64Size(CreationTimeMs);
+            }
+            if (NumUpgrades != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(NumUpgrades);
+            }
+            if (AdditionalCpMultiplier != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (Favorite != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(Favorite);
+            }
+            if (Nickname.Length != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeStringSize(Nickname);
+            }
+            if (FromFort != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(FromFort);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PokemonData other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Id != 0UL)
+            {
+                Id = other.Id;
+            }
+            if (other.PokemonId != 0)
+            {
+                PokemonId = other.PokemonId;
+            }
+            if (other.Cp != 0)
+            {
+                Cp = other.Cp;
+            }
+            if (other.Stamina != 0)
+            {
+                Stamina = other.Stamina;
+            }
+            if (other.StaminaMax != 0)
+            {
+                StaminaMax = other.StaminaMax;
+            }
+            if (other.Move1 != 0)
+            {
+                Move1 = other.Move1;
+            }
+            if (other.Move2 != 0)
+            {
+                Move2 = other.Move2;
+            }
+            if (other.DeployedFortId != 0)
+            {
+                DeployedFortId = other.DeployedFortId;
+            }
+            if (other.OwnerName.Length != 0)
+            {
+                OwnerName = other.OwnerName;
+            }
+            if (other.IsEgg != false)
+            {
+                IsEgg = other.IsEgg;
+            }
+            if (other.EggKmWalkedTarget != 0)
+            {
+                EggKmWalkedTarget = other.EggKmWalkedTarget;
+            }
+            if (other.EggKmWalkedStart != 0)
+            {
+                EggKmWalkedStart = other.EggKmWalkedStart;
+            }
+            if (other.Origin != 0)
+            {
+                Origin = other.Origin;
+            }
+            if (other.HeightM != 0F)
+            {
+                HeightM = other.HeightM;
+            }
+            if (other.WeightKg != 0F)
+            {
+                WeightKg = other.WeightKg;
+            }
+            if (other.IndividualAttack != 0)
+            {
+                IndividualAttack = other.IndividualAttack;
+            }
+            if (other.IndividualDefense != 0)
+            {
+                IndividualDefense = other.IndividualDefense;
+            }
+            if (other.IndividualStamina != 0)
+            {
+                IndividualStamina = other.IndividualStamina;
+            }
+            if (other.CpMultiplier != 0F)
+            {
+                CpMultiplier = other.CpMultiplier;
+            }
+            if (other.Pokeball != 0)
+            {
+                Pokeball = other.Pokeball;
+            }
+            if (other.CapturedCellId != 0UL)
+            {
+                CapturedCellId = other.CapturedCellId;
+            }
+            if (other.BattlesAttacked != 0)
+            {
+                BattlesAttacked = other.BattlesAttacked;
+            }
+            if (other.BattlesDefended != 0)
+            {
+                BattlesDefended = other.BattlesDefended;
+            }
+            if (other.EggIncubatorId != 0)
+            {
+                EggIncubatorId = other.EggIncubatorId;
+            }
+            if (other.CreationTimeMs != 0UL)
+            {
+                CreationTimeMs = other.CreationTimeMs;
+            }
+            if (other.NumUpgrades != 0)
+            {
+                NumUpgrades = other.NumUpgrades;
+            }
+            if (other.AdditionalCpMultiplier != 0F)
+            {
+                AdditionalCpMultiplier = other.AdditionalCpMultiplier;
+            }
+            if (other.Favorite != 0)
+            {
+                Favorite = other.Favorite;
+            }
+            if (other.Nickname.Length != 0)
+            {
+                Nickname = other.Nickname;
+            }
+            if (other.FromFort != 0)
+            {
+                FromFort = other.FromFort;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            Id = input.ReadFixed64();
+                            break;
+                        }
+                    case 16:
+                        {
+                            pokemonId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)input.ReadEnum();
+                            break;
+                        }
+                    case 24:
+                        {
+                            Cp = input.ReadInt32();
+                            break;
+                        }
+                    case 32:
+                        {
+                            Stamina = input.ReadInt32();
+                            break;
+                        }
+                    case 40:
+                        {
+                            StaminaMax = input.ReadInt32();
+                            break;
+                        }
+                    case 48:
+                        {
+                            move1_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove)input.ReadEnum();
+                            break;
+                        }
+                    case 56:
+                        {
+                            move2_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove)input.ReadEnum();
+                            break;
+                        }
+                    case 64:
+                        {
+                            DeployedFortId = input.ReadInt32();
+                            break;
+                        }
+                    case 74:
+                        {
+                            OwnerName = input.ReadString();
+                            break;
+                        }
+                    case 80:
+                        {
+                            IsEgg = input.ReadBool();
+                            break;
+                        }
+                    case 88:
+                        {
+                            EggKmWalkedTarget = input.ReadInt32();
+                            break;
+                        }
+                    case 96:
+                        {
+                            EggKmWalkedStart = input.ReadInt32();
+                            break;
+                        }
+                    case 112:
+                        {
+                            Origin = input.ReadInt32();
+                            break;
+                        }
+                    case 125:
+                        {
+                            HeightM = input.ReadFloat();
+                            break;
+                        }
+                    case 133:
+                        {
+                            WeightKg = input.ReadFloat();
+                            break;
+                        }
+                    case 136:
+                        {
+                            IndividualAttack = input.ReadInt32();
+                            break;
+                        }
+                    case 144:
+                        {
+                            IndividualDefense = input.ReadInt32();
+                            break;
+                        }
+                    case 152:
+                        {
+                            IndividualStamina = input.ReadInt32();
+                            break;
+                        }
+                    case 165:
+                        {
+                            CpMultiplier = input.ReadFloat();
+                            break;
+                        }
+                    case 168:
+                        {
+                            Pokeball = input.ReadInt32();
+                            break;
+                        }
+                    case 176:
+                        {
+                            CapturedCellId = input.ReadUInt64();
+                            break;
+                        }
+                    case 184:
+                        {
+                            BattlesAttacked = input.ReadInt32();
+                            break;
+                        }
+                    case 192:
+                        {
+                            BattlesDefended = input.ReadInt32();
+                            break;
+                        }
+                    case 200:
+                        {
+                            EggIncubatorId = input.ReadInt32();
+                            break;
+                        }
+                    case 208:
+                        {
+                            CreationTimeMs = input.ReadUInt64();
+                            break;
+                        }
+                    case 216:
+                        {
+                            NumUpgrades = input.ReadInt32();
+                            break;
+                        }
+                    case 229:
+                        {
+                            AdditionalCpMultiplier = input.ReadFloat();
+                            break;
+                        }
+                    case 232:
+                        {
+                            Favorite = input.ReadInt32();
+                            break;
+                        }
+                    case 242:
+                        {
+                            Nickname = input.ReadString();
+                            break;
+                        }
+                    case 248:
+                        {
+                            FromFort = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PokemonData);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Id != 0UL) hash ^= Id.GetHashCode();
+            if (PokemonId != 0) hash ^= PokemonId.GetHashCode();
+            if (Cp != 0) hash ^= Cp.GetHashCode();
+            if (Stamina != 0) hash ^= Stamina.GetHashCode();
+            if (StaminaMax != 0) hash ^= StaminaMax.GetHashCode();
+            if (Move1 != 0) hash ^= Move1.GetHashCode();
+            if (Move2 != 0) hash ^= Move2.GetHashCode();
+            if (DeployedFortId != 0) hash ^= DeployedFortId.GetHashCode();
+            if (OwnerName.Length != 0) hash ^= OwnerName.GetHashCode();
+            if (IsEgg != false) hash ^= IsEgg.GetHashCode();
+            if (EggKmWalkedTarget != 0) hash ^= EggKmWalkedTarget.GetHashCode();
+            if (EggKmWalkedStart != 0) hash ^= EggKmWalkedStart.GetHashCode();
+            if (Origin != 0) hash ^= Origin.GetHashCode();
+            if (HeightM != 0F) hash ^= HeightM.GetHashCode();
+            if (WeightKg != 0F) hash ^= WeightKg.GetHashCode();
+            if (IndividualAttack != 0) hash ^= IndividualAttack.GetHashCode();
+            if (IndividualDefense != 0) hash ^= IndividualDefense.GetHashCode();
+            if (IndividualStamina != 0) hash ^= IndividualStamina.GetHashCode();
+            if (CpMultiplier != 0) hash ^= CpMultiplier.GetHashCode();
+            if (Pokeball != 0) hash ^= Pokeball.GetHashCode();
+            if (CapturedCellId != 0UL) hash ^= CapturedCellId.GetHashCode();
+            if (BattlesAttacked != 0) hash ^= BattlesAttacked.GetHashCode();
+            if (BattlesDefended != 0) hash ^= BattlesDefended.GetHashCode();
+            if (EggIncubatorId != 0) hash ^= EggIncubatorId.GetHashCode();
+            if (CreationTimeMs != 0UL) hash ^= CreationTimeMs.GetHashCode();
+            if (NumUpgrades != 0) hash ^= NumUpgrades.GetHashCode();
+            if (AdditionalCpMultiplier != 0) hash ^= AdditionalCpMultiplier.GetHashCode();
+            if (Favorite != 0) hash ^= Favorite.GetHashCode();
+            if (Nickname.Length != 0) hash ^= Nickname.GetHashCode();
+            if (FromFort != 0) hash ^= FromFort.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class MapPokemon : pb::IMessage<MapPokemon>
+    {
+        /// <summary>Field number for the "spawnpoint_id" field.</summary>
+        public const int SpawnpointIdFieldNumber = 1;
+
+        /// <summary>Field number for the "encounter_id" field.</summary>
+        public const int EncounterIdFieldNumber = 2;
+
+        /// <summary>Field number for the "pokemon_id" field.</summary>
+        public const int PokemonIdFieldNumber = 3;
+
+        /// <summary>Field number for the "expiration_timestamp_ms" field.</summary>
+        public const int ExpirationTimestampMsFieldNumber = 4;
+
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 5;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 6;
+
+        private static readonly pb::MessageParser<MapPokemon> _parser =
+            new pb::MessageParser<MapPokemon>(() => new MapPokemon());
+
+        private ulong encounterId_;
+        private long expirationTimestampMs_;
+        private double latitude_;
+        private double longitude_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonId pokemonId_ = 0;
+        private string spawnpointId_ = "";
+
+        public MapPokemon()
+        {
+            OnConstruction();
+        }
+
+        public MapPokemon(MapPokemon other) : this()
+        {
+            spawnpointId_ = other.spawnpointId_;
+            encounterId_ = other.encounterId_;
+            pokemonId_ = other.pokemonId_;
+            expirationTimestampMs_ = other.expirationTimestampMs_;
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+        }
+
+        public static pb::MessageParser<MapPokemon> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[33]; }
+        }
+
+        public string SpawnpointId
+        {
+            get { return spawnpointId_; }
+            set { spawnpointId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public ulong EncounterId
+        {
+            get { return encounterId_; }
+            set { encounterId_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonId PokemonId
+        {
+            get { return pokemonId_; }
+            set { pokemonId_ = value; }
+        }
+
+        /// <summary>
+        ///     After this timestamp, the pokemon will be gone.
+        /// </summary>
+        public long ExpirationTimestampMs
+        {
+            get { return expirationTimestampMs_; }
+            set { expirationTimestampMs_ = value; }
+        }
+
+        public double Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public double Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public MapPokemon Clone()
+        {
+            return new MapPokemon(this);
+        }
+
+        public bool Equals(MapPokemon other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (SpawnpointId != other.SpawnpointId) return false;
+            if (EncounterId != other.EncounterId) return false;
+            if (PokemonId != other.PokemonId) return false;
+            if (ExpirationTimestampMs != other.ExpirationTimestampMs) return false;
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (SpawnpointId.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(SpawnpointId);
+            }
+            if (EncounterId != 0UL)
+            {
+                output.WriteRawTag(17);
+                output.WriteFixed64(EncounterId);
+            }
+            if (PokemonId != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteEnum((int)PokemonId);
+            }
+            if (ExpirationTimestampMs != 0L)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt64(ExpirationTimestampMs);
+            }
+            if (Latitude != 0D)
+            {
+                output.WriteRawTag(41);
+                output.WriteDouble(Latitude);
+            }
+            if (Longitude != 0D)
+            {
+                output.WriteRawTag(49);
+                output.WriteDouble(Longitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (SpawnpointId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnpointId);
+            }
+            if (EncounterId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            if (PokemonId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonId);
+            }
+            if (ExpirationTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(ExpirationTimestampMs);
+            }
+            if (Latitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Longitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(MapPokemon other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.SpawnpointId.Length != 0)
+            {
+                SpawnpointId = other.SpawnpointId;
+            }
+            if (other.EncounterId != 0UL)
+            {
+                EncounterId = other.EncounterId;
+            }
+            if (other.PokemonId != 0)
+            {
+                PokemonId = other.PokemonId;
+            }
+            if (other.ExpirationTimestampMs != 0L)
+            {
+                ExpirationTimestampMs = other.ExpirationTimestampMs;
+            }
+            if (other.Latitude != 0D)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0D)
+            {
+                Longitude = other.Longitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            SpawnpointId = input.ReadString();
+                            break;
+                        }
+                    case 17:
+                        {
+                            EncounterId = input.ReadFixed64();
+                            break;
+                        }
+                    case 24:
+                        {
+                            pokemonId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)input.ReadEnum();
+                            break;
+                        }
+                    case 32:
+                        {
+                            ExpirationTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 41:
+                        {
+                            Latitude = input.ReadDouble();
+                            break;
+                        }
+                    case 49:
+                        {
+                            Longitude = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as MapPokemon);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (SpawnpointId.Length != 0) hash ^= SpawnpointId.GetHashCode();
+            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
+            if (PokemonId != 0) hash ^= PokemonId.GetHashCode();
+            if (ExpirationTimestampMs != 0L) hash ^= ExpirationTimestampMs.GetHashCode();
+            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class NearbyPokemon : pb::IMessage<NearbyPokemon>
+    {
+        /// <summary>Field number for the "pokemon_id" field.</summary>
+        public const int PokemonIdFieldNumber = 1;
+
+        /// <summary>Field number for the "distance_in_meters" field.</summary>
+        public const int DistanceInMetersFieldNumber = 2;
+
+        /// <summary>Field number for the "encounter_id" field.</summary>
+        public const int EncounterIdFieldNumber = 3;
+
+        private static readonly pb::MessageParser<NearbyPokemon> _parser =
+            new pb::MessageParser<NearbyPokemon>(() => new NearbyPokemon());
+
+        private float distanceInMeters_;
+        private ulong encounterId_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonId pokemonId_ = 0;
+
+        public NearbyPokemon()
+        {
+            OnConstruction();
+        }
+
+        public NearbyPokemon(NearbyPokemon other) : this()
+        {
+            pokemonId_ = other.pokemonId_;
+            distanceInMeters_ = other.distanceInMeters_;
+            encounterId_ = other.encounterId_;
+        }
+
+        public static pb::MessageParser<NearbyPokemon> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[34]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonId PokemonId
+        {
+            get { return pokemonId_; }
+            set { pokemonId_ = value; }
+        }
+
+        public float DistanceInMeters
+        {
+            get { return distanceInMeters_; }
+            set { distanceInMeters_ = value; }
+        }
+
+        public ulong EncounterId
+        {
+            get { return encounterId_; }
+            set { encounterId_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public NearbyPokemon Clone()
+        {
+            return new NearbyPokemon(this);
+        }
+
+        public bool Equals(NearbyPokemon other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (PokemonId != other.PokemonId) return false;
+            if (DistanceInMeters != other.DistanceInMeters) return false;
+            if (EncounterId != other.EncounterId) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (PokemonId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)PokemonId);
+            }
+            if (DistanceInMeters != 0F)
+            {
+                output.WriteRawTag(21);
+                output.WriteFloat(DistanceInMeters);
+            }
+            if (EncounterId != 0UL)
+            {
+                output.WriteRawTag(25);
+                output.WriteFixed64(EncounterId);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (PokemonId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonId);
+            }
+            if (DistanceInMeters != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (EncounterId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(NearbyPokemon other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.PokemonId != 0)
+            {
+                PokemonId = other.PokemonId;
+            }
+            if (other.DistanceInMeters != 0F)
+            {
+                DistanceInMeters = other.DistanceInMeters;
+            }
+            if (other.EncounterId != 0UL)
+            {
+                EncounterId = other.EncounterId;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            pokemonId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)input.ReadEnum();
+                            break;
+                        }
+                    case 21:
+                        {
+                            DistanceInMeters = input.ReadFloat();
+                            break;
+                        }
+                    case 25:
+                        {
+                            EncounterId = input.ReadFixed64();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as NearbyPokemon);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (PokemonId != 0) hash ^= PokemonId.GetHashCode();
+            if (DistanceInMeters != 0F) hash ^= DistanceInMeters.GetHashCode();
+            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class DownloadSettingsResponse : pb::IMessage<DownloadSettingsResponse>
+    {
+        /// <summary>Field number for the "error" field.</summary>
+        public const int ErrorFieldNumber = 1;
+
+        /// <summary>Field number for the "hash" field.</summary>
+        public const int HashFieldNumber = 2;
+
+        /// <summary>Field number for the "settings" field.</summary>
+        public const int SettingsFieldNumber = 3;
+
+        private static readonly pb::MessageParser<DownloadSettingsResponse> _parser =
+            new pb::MessageParser<DownloadSettingsResponse>(() => new DownloadSettingsResponse());
+
+        private string error_ = "";
+        private string hash_ = "";
+        private global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings settings_;
+
+        public DownloadSettingsResponse()
+        {
+            OnConstruction();
+        }
+
+        public DownloadSettingsResponse(DownloadSettingsResponse other) : this()
+        {
+            error_ = other.error_;
+            hash_ = other.hash_;
+            Settings = other.settings_ != null ? other.Settings.Clone() : null;
+        }
+
+        public static pb::MessageParser<DownloadSettingsResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[35]; }
+        }
+
+        public string Error
+        {
+            get { return error_; }
+            set { error_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public string Hash
+        {
+            get { return hash_; }
+            set { hash_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings Settings
+        {
+            get { return settings_; }
+            set { settings_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public DownloadSettingsResponse Clone()
+        {
+            return new DownloadSettingsResponse(this);
+        }
+
+        public bool Equals(DownloadSettingsResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Error != other.Error) return false;
+            if (Hash != other.Hash) return false;
+            if (!Equals(Settings, other.Settings)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Error.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(Error);
+            }
+            if (Hash.Length != 0)
+            {
+                output.WriteRawTag(18);
+                output.WriteString(Hash);
+            }
+            if (settings_ != null)
+            {
+                output.WriteRawTag(26);
+                output.WriteMessage(Settings);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Error.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Error);
+            }
+            if (Hash.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Hash);
+            }
+            if (settings_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Settings);
+            }
+            return size;
+        }
+
+        public void MergeFrom(DownloadSettingsResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Error.Length != 0)
+            {
+                Error = other.Error;
+            }
+            if (other.Hash.Length != 0)
+            {
+                Hash = other.Hash;
+            }
+            if (other.settings_ != null)
+            {
+                if (settings_ == null)
+                {
+                    settings_ = new global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings();
+                }
+                Settings.MergeFrom(other.Settings);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            Error = input.ReadString();
+                            break;
+                        }
+                    case 18:
+                        {
+                            Hash = input.ReadString();
+                            break;
+                        }
+                    case 26:
+                        {
+                            if (settings_ == null)
+                            {
+                                settings_ = new global::PokemonGo.RocketAPI.GeneratedCode.GlobalSettings();
+                            }
+                            input.ReadMessage(settings_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as DownloadSettingsResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Error.Length != 0) hash ^= Error.GetHashCode();
+            if (Hash.Length != 0) hash ^= Hash.GetHashCode();
+            if (settings_ != null) hash ^= Settings.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GlobalSettings : pb::IMessage<GlobalSettings>
+    {
+        /// <summary>Field number for the "fort_settings" field.</summary>
+        public const int FortSettingsFieldNumber = 2;
+
+        /// <summary>Field number for the "map_settings" field.</summary>
+        public const int MapSettingsFieldNumber = 3;
+
+        /// <summary>Field number for the "level_settings" field.</summary>
+        public const int LevelSettingsFieldNumber = 4;
+
+        /// <summary>Field number for the "inventory_settings" field.</summary>
+        public const int InventorySettingsFieldNumber = 5;
+
+        /// <summary>Field number for the "minimum_client_version" field.</summary>
+        public const int MinimumClientVersionFieldNumber = 6;
+
+        private static readonly pb::MessageParser<GlobalSettings> _parser =
+            new pb::MessageParser<GlobalSettings>(() => new GlobalSettings());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.FortSettings fortSettings_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings inventorySettings_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings levelSettings_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.MapSettings mapSettings_;
+        private string minimumClientVersion_ = "";
+
+        public GlobalSettings()
+        {
+            OnConstruction();
+        }
+
+        public GlobalSettings(GlobalSettings other) : this()
+        {
+            FortSettings = other.fortSettings_ != null ? other.FortSettings.Clone() : null;
+            MapSettings = other.mapSettings_ != null ? other.MapSettings.Clone() : null;
+            LevelSettings = other.levelSettings_ != null ? other.LevelSettings.Clone() : null;
+            InventorySettings = other.inventorySettings_ != null ? other.InventorySettings.Clone() : null;
+            minimumClientVersion_ = other.minimumClientVersion_;
+        }
+
+        public static pb::MessageParser<GlobalSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[36]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FortSettings FortSettings
+        {
+            get { return fortSettings_; }
+            set { fortSettings_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.MapSettings MapSettings
+        {
+            get { return mapSettings_; }
+            set { mapSettings_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings LevelSettings
+        {
+            get { return levelSettings_; }
+            set { levelSettings_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings InventorySettings
+        {
+            get { return inventorySettings_; }
+            set { inventorySettings_ = value; }
+        }
+
+        public string MinimumClientVersion
+        {
+            get { return minimumClientVersion_; }
+            set { minimumClientVersion_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GlobalSettings Clone()
+        {
+            return new GlobalSettings(this);
+        }
+
+        public bool Equals(GlobalSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!Equals(FortSettings, other.FortSettings)) return false;
+            if (!Equals(MapSettings, other.MapSettings)) return false;
+            if (!Equals(LevelSettings, other.LevelSettings)) return false;
+            if (!Equals(InventorySettings, other.InventorySettings)) return false;
+            if (MinimumClientVersion != other.MinimumClientVersion) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (fortSettings_ != null)
+            {
+                output.WriteRawTag(18);
+                output.WriteMessage(FortSettings);
+            }
+            if (mapSettings_ != null)
+            {
+                output.WriteRawTag(26);
+                output.WriteMessage(MapSettings);
+            }
+            if (levelSettings_ != null)
+            {
+                output.WriteRawTag(34);
+                output.WriteMessage(LevelSettings);
+            }
+            if (inventorySettings_ != null)
+            {
+                output.WriteRawTag(42);
+                output.WriteMessage(InventorySettings);
+            }
+            if (MinimumClientVersion.Length != 0)
+            {
+                output.WriteRawTag(50);
+                output.WriteString(MinimumClientVersion);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (fortSettings_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(FortSettings);
+            }
+            if (mapSettings_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(MapSettings);
+            }
+            if (levelSettings_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(LevelSettings);
+            }
+            if (inventorySettings_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventorySettings);
+            }
+            if (MinimumClientVersion.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(MinimumClientVersion);
+            }
+            return size;
+        }
+
+        public void MergeFrom(GlobalSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.fortSettings_ != null)
+            {
+                if (fortSettings_ == null)
+                {
+                    fortSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortSettings();
+                }
+                FortSettings.MergeFrom(other.FortSettings);
+            }
+            if (other.mapSettings_ != null)
+            {
+                if (mapSettings_ == null)
+                {
+                    mapSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MapSettings();
+                }
+                MapSettings.MergeFrom(other.MapSettings);
+            }
+            if (other.levelSettings_ != null)
+            {
+                if (levelSettings_ == null)
+                {
+                    levelSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings();
+                }
+                LevelSettings.MergeFrom(other.LevelSettings);
+            }
+            if (other.inventorySettings_ != null)
+            {
+                if (inventorySettings_ == null)
+                {
+                    inventorySettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings();
+                }
+                InventorySettings.MergeFrom(other.InventorySettings);
+            }
+            if (other.MinimumClientVersion.Length != 0)
+            {
+                MinimumClientVersion = other.MinimumClientVersion;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 18:
+                        {
+                            if (fortSettings_ == null)
+                            {
+                                fortSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortSettings();
+                            }
+                            input.ReadMessage(fortSettings_);
+                            break;
+                        }
+                    case 26:
+                        {
+                            if (mapSettings_ == null)
+                            {
+                                mapSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MapSettings();
+                            }
+                            input.ReadMessage(mapSettings_);
+                            break;
+                        }
+                    case 34:
+                        {
+                            if (levelSettings_ == null)
+                            {
+                                levelSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.LevelSettings();
+                            }
+                            input.ReadMessage(levelSettings_);
+                            break;
+                        }
+                    case 42:
+                        {
+                            if (inventorySettings_ == null)
+                            {
+                                inventorySettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventorySettings();
+                            }
+                            input.ReadMessage(inventorySettings_);
+                            break;
+                        }
+                    case 50:
+                        {
+                            MinimumClientVersion = input.ReadString();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GlobalSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (fortSettings_ != null) hash ^= FortSettings.GetHashCode();
+            if (mapSettings_ != null) hash ^= MapSettings.GetHashCode();
+            if (levelSettings_ != null) hash ^= LevelSettings.GetHashCode();
+            if (inventorySettings_ != null) hash ^= InventorySettings.GetHashCode();
+            if (MinimumClientVersion.Length != 0) hash ^= MinimumClientVersion.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortSettings : pb::IMessage<FortSettings>
+    {
+        /// <summary>Field number for the "interaction_range_meters" field.</summary>
+        public const int InteractionRangeMetersFieldNumber = 1;
+
+        /// <summary>Field number for the "max_total_deployed_pokemon" field.</summary>
+        public const int MaxTotalDeployedPokemonFieldNumber = 2;
+
+        /// <summary>Field number for the "max_player_deployed_pokemon" field.</summary>
+        public const int MaxPlayerDeployedPokemonFieldNumber = 3;
+
+        /// <summary>Field number for the "deploy_stamina_multiplier" field.</summary>
+        public const int DeployStaminaMultiplierFieldNumber = 4;
+
+        /// <summary>Field number for the "deploy_attack_multiplier" field.</summary>
+        public const int DeployAttackMultiplierFieldNumber = 5;
+
+        /// <summary>Field number for the "far_interaction_range_meters" field.</summary>
+        public const int FarInteractionRangeMetersFieldNumber = 6;
+
+        private static readonly pb::MessageParser<FortSettings> _parser =
+            new pb::MessageParser<FortSettings>(() => new FortSettings());
+
+        private double deployAttackMultiplier_;
+        private double deployStaminaMultiplier_;
+        private double farInteractionRangeMeters_;
+        private double interactionRangeMeters_;
+        private int maxPlayerDeployedPokemon_;
+        private int maxTotalDeployedPokemon_;
+
+        public FortSettings()
+        {
+            OnConstruction();
+        }
+
+        public FortSettings(FortSettings other) : this()
+        {
+            interactionRangeMeters_ = other.interactionRangeMeters_;
+            maxTotalDeployedPokemon_ = other.maxTotalDeployedPokemon_;
+            maxPlayerDeployedPokemon_ = other.maxPlayerDeployedPokemon_;
+            deployStaminaMultiplier_ = other.deployStaminaMultiplier_;
+            deployAttackMultiplier_ = other.deployAttackMultiplier_;
+            farInteractionRangeMeters_ = other.farInteractionRangeMeters_;
+        }
+
+        public static pb::MessageParser<FortSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[37]; }
+        }
+
+        public double InteractionRangeMeters
+        {
+            get { return interactionRangeMeters_; }
+            set { interactionRangeMeters_ = value; }
+        }
+
+        public int MaxTotalDeployedPokemon
+        {
+            get { return maxTotalDeployedPokemon_; }
+            set { maxTotalDeployedPokemon_ = value; }
+        }
+
+        public int MaxPlayerDeployedPokemon
+        {
+            get { return maxPlayerDeployedPokemon_; }
+            set { maxPlayerDeployedPokemon_ = value; }
+        }
+
+        public double DeployStaminaMultiplier
+        {
+            get { return deployStaminaMultiplier_; }
+            set { deployStaminaMultiplier_ = value; }
+        }
+
+        public double DeployAttackMultiplier
+        {
+            get { return deployAttackMultiplier_; }
+            set { deployAttackMultiplier_ = value; }
+        }
+
+        public double FarInteractionRangeMeters
+        {
+            get { return farInteractionRangeMeters_; }
+            set { farInteractionRangeMeters_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortSettings Clone()
+        {
+            return new FortSettings(this);
+        }
+
+        public bool Equals(FortSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (InteractionRangeMeters != other.InteractionRangeMeters) return false;
+            if (MaxTotalDeployedPokemon != other.MaxTotalDeployedPokemon) return false;
+            if (MaxPlayerDeployedPokemon != other.MaxPlayerDeployedPokemon) return false;
+            if (DeployStaminaMultiplier != other.DeployStaminaMultiplier) return false;
+            if (DeployAttackMultiplier != other.DeployAttackMultiplier) return false;
+            if (FarInteractionRangeMeters != other.FarInteractionRangeMeters) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (InteractionRangeMeters != 0D)
+            {
+                output.WriteRawTag(9);
+                output.WriteDouble(InteractionRangeMeters);
+            }
+            if (MaxTotalDeployedPokemon != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(MaxTotalDeployedPokemon);
+            }
+            if (MaxPlayerDeployedPokemon != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(MaxPlayerDeployedPokemon);
+            }
+            if (DeployStaminaMultiplier != 0D)
+            {
+                output.WriteRawTag(33);
+                output.WriteDouble(DeployStaminaMultiplier);
+            }
+            if (DeployAttackMultiplier != 0D)
+            {
+                output.WriteRawTag(41);
+                output.WriteDouble(DeployAttackMultiplier);
+            }
+            if (FarInteractionRangeMeters != 0D)
+            {
+                output.WriteRawTag(49);
+                output.WriteDouble(FarInteractionRangeMeters);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (InteractionRangeMeters != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (MaxTotalDeployedPokemon != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxTotalDeployedPokemon);
+            }
+            if (MaxPlayerDeployedPokemon != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxPlayerDeployedPokemon);
+            }
+            if (DeployStaminaMultiplier != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (DeployAttackMultiplier != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (FarInteractionRangeMeters != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.InteractionRangeMeters != 0D)
+            {
+                InteractionRangeMeters = other.InteractionRangeMeters;
+            }
+            if (other.MaxTotalDeployedPokemon != 0)
+            {
+                MaxTotalDeployedPokemon = other.MaxTotalDeployedPokemon;
+            }
+            if (other.MaxPlayerDeployedPokemon != 0)
+            {
+                MaxPlayerDeployedPokemon = other.MaxPlayerDeployedPokemon;
+            }
+            if (other.DeployStaminaMultiplier != 0D)
+            {
+                DeployStaminaMultiplier = other.DeployStaminaMultiplier;
+            }
+            if (other.DeployAttackMultiplier != 0D)
+            {
+                DeployAttackMultiplier = other.DeployAttackMultiplier;
+            }
+            if (other.FarInteractionRangeMeters != 0D)
+            {
+                FarInteractionRangeMeters = other.FarInteractionRangeMeters;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            InteractionRangeMeters = input.ReadDouble();
+                            break;
+                        }
+                    case 16:
+                        {
+                            MaxTotalDeployedPokemon = input.ReadInt32();
+                            break;
+                        }
+                    case 24:
+                        {
+                            MaxPlayerDeployedPokemon = input.ReadInt32();
+                            break;
+                        }
+                    case 33:
+                        {
+                            DeployStaminaMultiplier = input.ReadDouble();
+                            break;
+                        }
+                    case 41:
+                        {
+                            DeployAttackMultiplier = input.ReadDouble();
+                            break;
+                        }
+                    case 49:
+                        {
+                            FarInteractionRangeMeters = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (InteractionRangeMeters != 0D) hash ^= InteractionRangeMeters.GetHashCode();
+            if (MaxTotalDeployedPokemon != 0) hash ^= MaxTotalDeployedPokemon.GetHashCode();
+            if (MaxPlayerDeployedPokemon != 0) hash ^= MaxPlayerDeployedPokemon.GetHashCode();
+            if (DeployStaminaMultiplier != 0D) hash ^= DeployStaminaMultiplier.GetHashCode();
+            if (DeployAttackMultiplier != 0D) hash ^= DeployAttackMultiplier.GetHashCode();
+            if (FarInteractionRangeMeters != 0D) hash ^= FarInteractionRangeMeters.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class MapSettings : pb::IMessage<MapSettings>
+    {
+        /// <summary>Field number for the "pokemon_visible_range" field.</summary>
+        public const int PokemonVisibleRangeFieldNumber = 1;
+
+        /// <summary>Field number for the "poke_nav_range_meters" field.</summary>
+        public const int PokeNavRangeMetersFieldNumber = 2;
+
+        /// <summary>Field number for the "encounter_range_meters" field.</summary>
+        public const int EncounterRangeMetersFieldNumber = 3;
+
+        /// <summary>Field number for the "get_map_objects_min_refresh_seconds" field.</summary>
+        public const int GetMapObjectsMinRefreshSecondsFieldNumber = 4;
+
+        /// <summary>Field number for the "get_map_objects_max_refresh_seconds" field.</summary>
+        public const int GetMapObjectsMaxRefreshSecondsFieldNumber = 5;
+
+        /// <summary>Field number for the "get_map_objects_min_distance_meters" field.</summary>
+        public const int GetMapObjectsMinDistanceMetersFieldNumber = 6;
+
+        /// <summary>Field number for the "google_maps_api_key" field.</summary>
+        public const int GoogleMapsApiKeyFieldNumber = 7;
+
+        private static readonly pb::MessageParser<MapSettings> _parser =
+            new pb::MessageParser<MapSettings>(() => new MapSettings());
+
+        private double encounterRangeMeters_;
+        private float getMapObjectsMaxRefreshSeconds_;
+        private float getMapObjectsMinDistanceMeters_;
+        private float getMapObjectsMinRefreshSeconds_;
+        private string googleMapsApiKey_ = "";
+        private double pokemonVisibleRange_;
+        private double pokeNavRangeMeters_;
+
+        public MapSettings()
+        {
+            OnConstruction();
+        }
+
+        public MapSettings(MapSettings other) : this()
+        {
+            pokemonVisibleRange_ = other.pokemonVisibleRange_;
+            pokeNavRangeMeters_ = other.pokeNavRangeMeters_;
+            encounterRangeMeters_ = other.encounterRangeMeters_;
+            getMapObjectsMinRefreshSeconds_ = other.getMapObjectsMinRefreshSeconds_;
+            getMapObjectsMaxRefreshSeconds_ = other.getMapObjectsMaxRefreshSeconds_;
+            getMapObjectsMinDistanceMeters_ = other.getMapObjectsMinDistanceMeters_;
+            googleMapsApiKey_ = other.googleMapsApiKey_;
+        }
+
+        public static pb::MessageParser<MapSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[38]; }
+        }
+
+        public double PokemonVisibleRange
+        {
+            get { return pokemonVisibleRange_; }
+            set { pokemonVisibleRange_ = value; }
+        }
+
+        public double PokeNavRangeMeters
+        {
+            get { return pokeNavRangeMeters_; }
+            set { pokeNavRangeMeters_ = value; }
+        }
+
+        public double EncounterRangeMeters
+        {
+            get { return encounterRangeMeters_; }
+            set { encounterRangeMeters_ = value; }
+        }
+
+        public float GetMapObjectsMinRefreshSeconds
+        {
+            get { return getMapObjectsMinRefreshSeconds_; }
+            set { getMapObjectsMinRefreshSeconds_ = value; }
+        }
+
+        public float GetMapObjectsMaxRefreshSeconds
+        {
+            get { return getMapObjectsMaxRefreshSeconds_; }
+            set { getMapObjectsMaxRefreshSeconds_ = value; }
+        }
+
+        public float GetMapObjectsMinDistanceMeters
+        {
+            get { return getMapObjectsMinDistanceMeters_; }
+            set { getMapObjectsMinDistanceMeters_ = value; }
+        }
+
+        public string GoogleMapsApiKey
+        {
+            get { return googleMapsApiKey_; }
+            set { googleMapsApiKey_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public MapSettings Clone()
+        {
+            return new MapSettings(this);
+        }
+
+        public bool Equals(MapSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (PokemonVisibleRange != other.PokemonVisibleRange) return false;
+            if (PokeNavRangeMeters != other.PokeNavRangeMeters) return false;
+            if (EncounterRangeMeters != other.EncounterRangeMeters) return false;
+            if (GetMapObjectsMinRefreshSeconds != other.GetMapObjectsMinRefreshSeconds) return false;
+            if (GetMapObjectsMaxRefreshSeconds != other.GetMapObjectsMaxRefreshSeconds) return false;
+            if (GetMapObjectsMinDistanceMeters != other.GetMapObjectsMinDistanceMeters) return false;
+            if (GoogleMapsApiKey != other.GoogleMapsApiKey) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (PokemonVisibleRange != 0D)
+            {
+                output.WriteRawTag(9);
+                output.WriteDouble(PokemonVisibleRange);
+            }
+            if (PokeNavRangeMeters != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(PokeNavRangeMeters);
+            }
+            if (EncounterRangeMeters != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(EncounterRangeMeters);
+            }
+            if (GetMapObjectsMinRefreshSeconds != 0F)
+            {
+                output.WriteRawTag(37);
+                output.WriteFloat(GetMapObjectsMinRefreshSeconds);
+            }
+            if (GetMapObjectsMaxRefreshSeconds != 0F)
+            {
+                output.WriteRawTag(45);
+                output.WriteFloat(GetMapObjectsMaxRefreshSeconds);
+            }
+            if (GetMapObjectsMinDistanceMeters != 0F)
+            {
+                output.WriteRawTag(53);
+                output.WriteFloat(GetMapObjectsMinDistanceMeters);
+            }
+            if (GoogleMapsApiKey.Length != 0)
+            {
+                output.WriteRawTag(58);
+                output.WriteString(GoogleMapsApiKey);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (PokemonVisibleRange != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (PokeNavRangeMeters != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (EncounterRangeMeters != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (GetMapObjectsMinRefreshSeconds != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (GetMapObjectsMaxRefreshSeconds != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (GetMapObjectsMinDistanceMeters != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (GoogleMapsApiKey.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(GoogleMapsApiKey);
+            }
+            return size;
+        }
+
+        public void MergeFrom(MapSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.PokemonVisibleRange != 0D)
+            {
+                PokemonVisibleRange = other.PokemonVisibleRange;
+            }
+            if (other.PokeNavRangeMeters != 0D)
+            {
+                PokeNavRangeMeters = other.PokeNavRangeMeters;
+            }
+            if (other.EncounterRangeMeters != 0D)
+            {
+                EncounterRangeMeters = other.EncounterRangeMeters;
+            }
+            if (other.GetMapObjectsMinRefreshSeconds != 0F)
+            {
+                GetMapObjectsMinRefreshSeconds = other.GetMapObjectsMinRefreshSeconds;
+            }
+            if (other.GetMapObjectsMaxRefreshSeconds != 0F)
+            {
+                GetMapObjectsMaxRefreshSeconds = other.GetMapObjectsMaxRefreshSeconds;
+            }
+            if (other.GetMapObjectsMinDistanceMeters != 0F)
+            {
+                GetMapObjectsMinDistanceMeters = other.GetMapObjectsMinDistanceMeters;
+            }
+            if (other.GoogleMapsApiKey.Length != 0)
+            {
+                GoogleMapsApiKey = other.GoogleMapsApiKey;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            PokemonVisibleRange = input.ReadDouble();
+                            break;
+                        }
+                    case 17:
+                        {
+                            PokeNavRangeMeters = input.ReadDouble();
+                            break;
+                        }
+                    case 25:
+                        {
+                            EncounterRangeMeters = input.ReadDouble();
+                            break;
+                        }
+                    case 37:
+                        {
+                            GetMapObjectsMinRefreshSeconds = input.ReadFloat();
+                            break;
+                        }
+                    case 45:
+                        {
+                            GetMapObjectsMaxRefreshSeconds = input.ReadFloat();
+                            break;
+                        }
+                    case 53:
+                        {
+                            GetMapObjectsMinDistanceMeters = input.ReadFloat();
+                            break;
+                        }
+                    case 58:
+                        {
+                            GoogleMapsApiKey = input.ReadString();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as MapSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (PokemonVisibleRange != 0D) hash ^= PokemonVisibleRange.GetHashCode();
+            if (PokeNavRangeMeters != 0D) hash ^= PokeNavRangeMeters.GetHashCode();
+            if (EncounterRangeMeters != 0D) hash ^= EncounterRangeMeters.GetHashCode();
+            if (GetMapObjectsMinRefreshSeconds != 0F) hash ^= GetMapObjectsMinRefreshSeconds.GetHashCode();
+            if (GetMapObjectsMaxRefreshSeconds != 0F) hash ^= GetMapObjectsMaxRefreshSeconds.GetHashCode();
+            if (GetMapObjectsMinDistanceMeters != 0F) hash ^= GetMapObjectsMinDistanceMeters.GetHashCode();
+            if (GoogleMapsApiKey.Length != 0) hash ^= GoogleMapsApiKey.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class LevelSettings : pb::IMessage<LevelSettings>
+    {
+        /// <summary>Field number for the "trainer_cp_modifier" field.</summary>
+        public const int TrainerCpModifierFieldNumber = 2;
+
+        /// <summary>Field number for the "trainer_difficulty_modifier" field.</summary>
+        public const int TrainerDifficultyModifierFieldNumber = 3;
+
+        private static readonly pb::MessageParser<LevelSettings> _parser =
+            new pb::MessageParser<LevelSettings>(() => new LevelSettings());
+
+        private double trainerCpModifier_;
+        private double trainerDifficultyModifier_;
+
+        public LevelSettings()
+        {
+            OnConstruction();
+        }
+
+        public LevelSettings(LevelSettings other) : this()
+        {
+            trainerCpModifier_ = other.trainerCpModifier_;
+            trainerDifficultyModifier_ = other.trainerDifficultyModifier_;
+        }
+
+        public static pb::MessageParser<LevelSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[39]; }
+        }
+
+        public double TrainerCpModifier
+        {
+            get { return trainerCpModifier_; }
+            set { trainerCpModifier_ = value; }
+        }
+
+        public double TrainerDifficultyModifier
+        {
+            get { return trainerDifficultyModifier_; }
+            set { trainerDifficultyModifier_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public LevelSettings Clone()
+        {
+            return new LevelSettings(this);
+        }
+
+        public bool Equals(LevelSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (TrainerCpModifier != other.TrainerCpModifier) return false;
+            if (TrainerDifficultyModifier != other.TrainerDifficultyModifier) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (TrainerCpModifier != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(TrainerCpModifier);
+            }
+            if (TrainerDifficultyModifier != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(TrainerDifficultyModifier);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (TrainerCpModifier != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (TrainerDifficultyModifier != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(LevelSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.TrainerCpModifier != 0D)
+            {
+                TrainerCpModifier = other.TrainerCpModifier;
+            }
+            if (other.TrainerDifficultyModifier != 0D)
+            {
+                TrainerDifficultyModifier = other.TrainerDifficultyModifier;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 17:
+                        {
+                            TrainerCpModifier = input.ReadDouble();
+                            break;
+                        }
+                    case 25:
+                        {
+                            TrainerDifficultyModifier = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as LevelSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (TrainerCpModifier != 0D) hash ^= TrainerCpModifier.GetHashCode();
+            if (TrainerDifficultyModifier != 0D) hash ^= TrainerDifficultyModifier.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class InventorySettings : pb::IMessage<InventorySettings>
+    {
+        /// <summary>Field number for the "max_pokemon" field.</summary>
+        public const int MaxPokemonFieldNumber = 1;
+
+        /// <summary>Field number for the "max_bag_items" field.</summary>
+        public const int MaxBagItemsFieldNumber = 2;
+
+        /// <summary>Field number for the "base_pokemon" field.</summary>
+        public const int BasePokemonFieldNumber = 3;
+
+        /// <summary>Field number for the "base_bag_items" field.</summary>
+        public const int BaseBagItemsFieldNumber = 4;
+
+        /// <summary>Field number for the "base_eggs" field.</summary>
+        public const int BaseEggsFieldNumber = 5;
+
+        private static readonly pb::MessageParser<InventorySettings> _parser =
+            new pb::MessageParser<InventorySettings>(() => new InventorySettings());
+
+        private int baseBagItems_;
+        private int baseEggs_;
+        private int basePokemon_;
+        private int maxBagItems_;
+        private int maxPokemon_;
+
+        public InventorySettings()
+        {
+            OnConstruction();
+        }
+
+        public InventorySettings(InventorySettings other) : this()
+        {
+            maxPokemon_ = other.maxPokemon_;
+            maxBagItems_ = other.maxBagItems_;
+            basePokemon_ = other.basePokemon_;
+            baseBagItems_ = other.baseBagItems_;
+            baseEggs_ = other.baseEggs_;
+        }
+
+        public static pb::MessageParser<InventorySettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[40]; }
+        }
+
+        public int MaxPokemon
+        {
+            get { return maxPokemon_; }
+            set { maxPokemon_ = value; }
+        }
+
+        public int MaxBagItems
+        {
+            get { return maxBagItems_; }
+            set { maxBagItems_ = value; }
+        }
+
+        public int BasePokemon
+        {
+            get { return basePokemon_; }
+            set { basePokemon_ = value; }
+        }
+
+        public int BaseBagItems
+        {
+            get { return baseBagItems_; }
+            set { baseBagItems_ = value; }
+        }
+
+        public int BaseEggs
+        {
+            get { return baseEggs_; }
+            set { baseEggs_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public InventorySettings Clone()
+        {
+            return new InventorySettings(this);
+        }
+
+        public bool Equals(InventorySettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (MaxPokemon != other.MaxPokemon) return false;
+            if (MaxBagItems != other.MaxBagItems) return false;
+            if (BasePokemon != other.BasePokemon) return false;
+            if (BaseBagItems != other.BaseBagItems) return false;
+            if (BaseEggs != other.BaseEggs) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (MaxPokemon != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(MaxPokemon);
+            }
+            if (MaxBagItems != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(MaxBagItems);
+            }
+            if (BasePokemon != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(BasePokemon);
+            }
+            if (BaseBagItems != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(BaseBagItems);
+            }
+            if (BaseEggs != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(BaseEggs);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (MaxPokemon != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxPokemon);
+            }
+            if (MaxBagItems != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxBagItems);
+            }
+            if (BasePokemon != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BasePokemon);
+            }
+            if (BaseBagItems != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseBagItems);
+            }
+            if (BaseEggs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseEggs);
+            }
+            return size;
+        }
+
+        public void MergeFrom(InventorySettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.MaxPokemon != 0)
+            {
+                MaxPokemon = other.MaxPokemon;
+            }
+            if (other.MaxBagItems != 0)
+            {
+                MaxBagItems = other.MaxBagItems;
+            }
+            if (other.BasePokemon != 0)
+            {
+                BasePokemon = other.BasePokemon;
+            }
+            if (other.BaseBagItems != 0)
+            {
+                BaseBagItems = other.BaseBagItems;
+            }
+            if (other.BaseEggs != 0)
+            {
+                BaseEggs = other.BaseEggs;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            MaxPokemon = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            MaxBagItems = input.ReadInt32();
+                            break;
+                        }
+                    case 24:
+                        {
+                            BasePokemon = input.ReadInt32();
+                            break;
+                        }
+                    case 32:
+                        {
+                            BaseBagItems = input.ReadInt32();
+                            break;
+                        }
+                    case 40:
+                        {
+                            BaseEggs = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as InventorySettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (MaxPokemon != 0) hash ^= MaxPokemon.GetHashCode();
+            if (MaxBagItems != 0) hash ^= MaxBagItems.GetHashCode();
+            if (BasePokemon != 0) hash ^= BasePokemon.GetHashCode();
+            if (BaseBagItems != 0) hash ^= BaseBagItems.GetHashCode();
+            if (BaseEggs != 0) hash ^= BaseEggs.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PlayerUpdateRequest : pb::IMessage<PlayerUpdateRequest>
+    {
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 1;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 2;
+
+        private static readonly pb::MessageParser<PlayerUpdateRequest> _parser =
+            new pb::MessageParser<PlayerUpdateRequest>(() => new PlayerUpdateRequest());
+
+        private double latitude_;
+        private double longitude_;
+
+        public PlayerUpdateRequest()
+        {
+            OnConstruction();
+        }
+
+        public PlayerUpdateRequest(PlayerUpdateRequest other) : this()
+        {
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+        }
+
+        public static pb::MessageParser<PlayerUpdateRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[41]; }
+        }
+
+        public double Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public double Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PlayerUpdateRequest Clone()
+        {
+            return new PlayerUpdateRequest(this);
+        }
+
+        public bool Equals(PlayerUpdateRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Latitude != 0D)
+            {
+                output.WriteRawTag(9);
+                output.WriteDouble(Latitude);
+            }
+            if (Longitude != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(Longitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Latitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Longitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(PlayerUpdateRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Latitude != 0D)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0D)
+            {
+                Longitude = other.Longitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            Latitude = input.ReadDouble();
+                            break;
+                        }
+                    case 17:
+                        {
+                            Longitude = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PlayerUpdateRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PlayerUpdateResponse : pb::IMessage<PlayerUpdateResponse>
+    {
+        /// <summary>Field number for the "wild_pokemons" field.</summary>
+        public const int WildPokemonsFieldNumber = 1;
+
+        /// <summary>Field number for the "forts" field.</summary>
+        public const int FortsFieldNumber = 2;
+
+        /// <summary>Field number for the "forts_nearby" field.</summary>
+        public const int FortsNearbyFieldNumber = 3;
+
+        private static readonly pb::MessageParser<PlayerUpdateResponse> _parser =
+            new pb::MessageParser<PlayerUpdateResponse>(() => new PlayerUpdateResponse());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon>
+            _repeated_wildPokemons_codec
+                = pb::FieldCodec.ForMessage(10, global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon.Parser);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortData> _repeated_forts_codec
+            = pb::FieldCodec.ForMessage(18, global::PokemonGo.RocketAPI.GeneratedCode.FortData.Parser);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData> forts_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> wildPokemons_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon>();
+
+        private int fortsNearby_;
+
+        public PlayerUpdateResponse()
+        {
+            OnConstruction();
+        }
+
+        public PlayerUpdateResponse(PlayerUpdateResponse other) : this()
+        {
+            wildPokemons_ = other.wildPokemons_.Clone();
+            forts_ = other.forts_.Clone();
+            fortsNearby_ = other.fortsNearby_;
+        }
+
+        public static pb::MessageParser<PlayerUpdateResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[42]; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon> WildPokemons
+        {
+            get { return wildPokemons_; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortData> Forts
+        {
+            get { return forts_; }
+        }
+
+        public int FortsNearby
+        {
+            get { return fortsNearby_; }
+            set { fortsNearby_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PlayerUpdateResponse Clone()
+        {
+            return new PlayerUpdateResponse(this);
+        }
+
+        public bool Equals(PlayerUpdateResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!wildPokemons_.Equals(other.wildPokemons_)) return false;
+            if (!forts_.Equals(other.forts_)) return false;
+            if (FortsNearby != other.FortsNearby) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            wildPokemons_.WriteTo(output, _repeated_wildPokemons_codec);
+            forts_.WriteTo(output, _repeated_forts_codec);
+            if (FortsNearby != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(FortsNearby);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += wildPokemons_.CalculateSize(_repeated_wildPokemons_codec);
+            size += forts_.CalculateSize(_repeated_forts_codec);
+            if (FortsNearby != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(FortsNearby);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PlayerUpdateResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            wildPokemons_.Add(other.wildPokemons_);
+            forts_.Add(other.forts_);
+            if (other.FortsNearby != 0)
+            {
+                FortsNearby = other.FortsNearby;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            wildPokemons_.AddEntriesFrom(input, _repeated_wildPokemons_codec);
+                            break;
+                        }
+                    case 18:
+                        {
+                            forts_.AddEntriesFrom(input, _repeated_forts_codec);
+                            break;
+                        }
+                    case 24:
+                        {
+                            FortsNearby = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PlayerUpdateResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= wildPokemons_.GetHashCode();
+            hash ^= forts_.GetHashCode();
+            if (FortsNearby != 0) hash ^= FortsNearby.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    /// <summary>
+    ///     No message needed.
+    /// </summary>
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class DownloadItemTemplatesRequest : pb::IMessage<DownloadItemTemplatesRequest>
+    {
+        private static readonly pb::MessageParser<DownloadItemTemplatesRequest> _parser =
+            new pb::MessageParser<DownloadItemTemplatesRequest>(() => new DownloadItemTemplatesRequest());
+
+        public DownloadItemTemplatesRequest()
+        {
+            OnConstruction();
+        }
+
+        public DownloadItemTemplatesRequest(DownloadItemTemplatesRequest other) : this()
+        {
+        }
+
+        public static pb::MessageParser<DownloadItemTemplatesRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[43]; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public DownloadItemTemplatesRequest Clone()
+        {
+            return new DownloadItemTemplatesRequest(this);
+        }
+
+        public bool Equals(DownloadItemTemplatesRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            return size;
+        }
+
+        public void MergeFrom(DownloadItemTemplatesRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as DownloadItemTemplatesRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class DownloadItemTemplatesResponse : pb::IMessage<DownloadItemTemplatesResponse>
+    {
+        /// <summary>Field number for the "success" field.</summary>
+        public const int SuccessFieldNumber = 1;
+
+        /// <summary>Field number for the "item_templates" field.</summary>
+        public const int ItemTemplatesFieldNumber = 2;
+
+        /// <summary>Field number for the "timestamp_ms" field.</summary>
+        public const int TimestampMsFieldNumber = 3;
+
+        private static readonly pb::MessageParser<DownloadItemTemplatesResponse> _parser =
+            new pb::MessageParser<DownloadItemTemplatesResponse>(() => new DownloadItemTemplatesResponse());
+
+        private static readonly
+            pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate>
+            _repeated_itemTemplates_codec
+                = pb::FieldCodec.ForMessage(18,
+                    global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate.Parser);
+
+        private readonly
+            pbc::RepeatedField
+                <global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate>
+            itemTemplates_ =
+                new pbc::RepeatedField
+                    <global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate>();
+
+        private bool success_;
+        private ulong timestampMs_;
+
+        public DownloadItemTemplatesResponse()
+        {
+            OnConstruction();
+        }
+
+        public DownloadItemTemplatesResponse(DownloadItemTemplatesResponse other) : this()
+        {
+            success_ = other.success_;
+            itemTemplates_ = other.itemTemplates_.Clone();
+            timestampMs_ = other.timestampMs_;
+        }
+
+        public static pb::MessageParser<DownloadItemTemplatesResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[44]; }
+        }
+
+        public bool Success
+        {
+            get { return success_; }
+            set { success_ = value; }
+        }
+
+        public
+            pbc::RepeatedField
+                <global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Types.ItemTemplate>
+            ItemTemplates
+        {
+            get { return itemTemplates_; }
+        }
+
+        public ulong TimestampMs
+        {
+            get { return timestampMs_; }
+            set { timestampMs_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public DownloadItemTemplatesResponse Clone()
+        {
+            return new DownloadItemTemplatesResponse(this);
+        }
+
+        public bool Equals(DownloadItemTemplatesResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Success != other.Success) return false;
+            if (!itemTemplates_.Equals(other.itemTemplates_)) return false;
+            if (TimestampMs != other.TimestampMs) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Success != false)
+            {
+                output.WriteRawTag(8);
+                output.WriteBool(Success);
+            }
+            itemTemplates_.WriteTo(output, _repeated_itemTemplates_codec);
+            if (TimestampMs != 0UL)
+            {
+                output.WriteRawTag(24);
+                output.WriteUInt64(TimestampMs);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Success != false)
+            {
+                size += 1 + 1;
+            }
+            size += itemTemplates_.CalculateSize(_repeated_itemTemplates_codec);
+            if (TimestampMs != 0UL)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeUInt64Size(TimestampMs);
+            }
+            return size;
+        }
+
+        public void MergeFrom(DownloadItemTemplatesResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Success != false)
+            {
+                Success = other.Success;
+            }
+            itemTemplates_.Add(other.itemTemplates_);
+            if (other.TimestampMs != 0UL)
+            {
+                TimestampMs = other.TimestampMs;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Success = input.ReadBool();
+                            break;
+                        }
+                    case 18:
+                        {
+                            itemTemplates_.AddEntriesFrom(input, _repeated_itemTemplates_codec);
+                            break;
+                        }
+                    case 24:
+                        {
+                            TimestampMs = input.ReadUInt64();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as DownloadItemTemplatesResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Success != false) hash ^= Success.GetHashCode();
+            hash ^= itemTemplates_.GetHashCode();
+            if (TimestampMs != 0UL) hash ^= TimestampMs.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+
+        #region Nested types
+
+        /// <summary>Container for nested types declared in the DownloadItemTemplatesResponse message type.</summary>
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        public static partial class Types
+        {
+            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+            public sealed partial class ItemTemplate : pb::IMessage<ItemTemplate>
+            {
+                /// <summary>Field number for the "template_id" field.</summary>
+                public const int TemplateIdFieldNumber = 1;
+
+                /// <summary>Field number for the "pokemon_settings" field.</summary>
+                public const int PokemonSettingsFieldNumber = 2;
+
+                /// <summary>Field number for the "item_settings" field.</summary>
+                public const int ItemSettingsFieldNumber = 3;
+
+                /// <summary>Field number for the "move_settings" field.</summary>
+                public const int MoveSettingsFieldNumber = 4;
+
+                /// <summary>Field number for the "move_sequence_settings" field.</summary>
+                public const int MoveSequenceSettingsFieldNumber = 5;
+
+                /// <summary>Field number for the "type_effective" field.</summary>
+                public const int TypeEffectiveFieldNumber = 8;
+
+                /// <summary>Field number for the "badge_settings" field.</summary>
+                public const int BadgeSettingsFieldNumber = 10;
+
+                /// <summary>Field number for the "camera" field.</summary>
+                public const int CameraFieldNumber = 11;
+
+                /// <summary>Field number for the "player_level" field.</summary>
+                public const int PlayerLevelFieldNumber = 12;
+
+                /// <summary>Field number for the "gym_level" field.</summary>
+                public const int GymLevelFieldNumber = 13;
+
+                /// <summary>Field number for the "battle_settings" field.</summary>
+                public const int BattleSettingsFieldNumber = 14;
+
+                /// <summary>Field number for the "encounter_settings" field.</summary>
+                public const int EncounterSettingsFieldNumber = 15;
+
+                /// <summary>Field number for the "iap_item_display" field.</summary>
+                public const int IapItemDisplayFieldNumber = 16;
+
+                /// <summary>Field number for the "iap_settings" field.</summary>
+                public const int IapSettingsFieldNumber = 17;
+
+                /// <summary>Field number for the "pokemon_upgrades" field.</summary>
+                public const int PokemonUpgradesFieldNumber = 18;
+
+                /// <summary>Field number for the "equipped_badges" field.</summary>
+                public const int EquippedBadgesFieldNumber = 19;
+
+                private static readonly pb::MessageParser<ItemTemplate> _parser =
+                    new pb::MessageParser<ItemTemplate>(() => new ItemTemplate());
+
+                private global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings badgeSettings_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings battleSettings_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings camera_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings encounterSettings_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings equippedBadges_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings gymLevel_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay iapItemDisplay_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.IapSettings iapSettings_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings itemSettings_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings moveSequenceSettings_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings moveSettings_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings playerLevel_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings pokemonSettings_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings pokemonUpgrades_;
+                private string templateId_ = "";
+                private global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings typeEffective_;
+
+                public ItemTemplate()
+                {
+                    OnConstruction();
+                }
+
+                public ItemTemplate(ItemTemplate other) : this()
+                {
+                    templateId_ = other.templateId_;
+                    PokemonSettings = other.pokemonSettings_ != null ? other.PokemonSettings.Clone() : null;
+                    ItemSettings = other.itemSettings_ != null ? other.ItemSettings.Clone() : null;
+                    MoveSettings = other.moveSettings_ != null ? other.MoveSettings.Clone() : null;
+                    MoveSequenceSettings = other.moveSequenceSettings_ != null
+                        ? other.MoveSequenceSettings.Clone()
+                        : null;
+                    TypeEffective = other.typeEffective_ != null ? other.TypeEffective.Clone() : null;
+                    BadgeSettings = other.badgeSettings_ != null ? other.BadgeSettings.Clone() : null;
+                    Camera = other.camera_ != null ? other.Camera.Clone() : null;
+                    PlayerLevel = other.playerLevel_ != null ? other.PlayerLevel.Clone() : null;
+                    GymLevel = other.gymLevel_ != null ? other.GymLevel.Clone() : null;
+                    BattleSettings = other.battleSettings_ != null ? other.BattleSettings.Clone() : null;
+                    EncounterSettings = other.encounterSettings_ != null ? other.EncounterSettings.Clone() : null;
+                    IapItemDisplay = other.iapItemDisplay_ != null ? other.IapItemDisplay.Clone() : null;
+                    IapSettings = other.iapSettings_ != null ? other.IapSettings.Clone() : null;
+                    PokemonUpgrades = other.pokemonUpgrades_ != null ? other.PokemonUpgrades.Clone() : null;
+                    EquippedBadges = other.equippedBadges_ != null ? other.EquippedBadges.Clone() : null;
+                }
+
+                public static pb::MessageParser<ItemTemplate> Parser
+                {
+                    get { return _parser; }
+                }
+
+                public static pbr::MessageDescriptor Descriptor
+                {
+                    get
+                    {
+                        return
+                            global::PokemonGo.RocketAPI.GeneratedCode.DownloadItemTemplatesResponse.Descriptor
+                                .NestedTypes[0];
+                    }
+                }
+
+                public string TemplateId
+                {
+                    get { return templateId_; }
+                    set { templateId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings PokemonSettings
+                {
+                    get { return pokemonSettings_; }
+                    set { pokemonSettings_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings ItemSettings
+                {
+                    get { return itemSettings_; }
+                    set { itemSettings_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings MoveSettings
+                {
+                    get { return moveSettings_; }
+                    set { moveSettings_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings MoveSequenceSettings
+                {
+                    get { return moveSequenceSettings_; }
+                    set { moveSequenceSettings_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings TypeEffective
+                {
+                    get { return typeEffective_; }
+                    set { typeEffective_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings BadgeSettings
+                {
+                    get { return badgeSettings_; }
+                    set { badgeSettings_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings Camera
+                {
+                    get { return camera_; }
+                    set { camera_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings PlayerLevel
+                {
+                    get { return playerLevel_; }
+                    set { playerLevel_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings GymLevel
+                {
+                    get { return gymLevel_; }
+                    set { gymLevel_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings BattleSettings
+                {
+                    get { return battleSettings_; }
+                    set { battleSettings_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings EncounterSettings
+                {
+                    get { return encounterSettings_; }
+                    set { encounterSettings_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay IapItemDisplay
+                {
+                    get { return iapItemDisplay_; }
+                    set { iapItemDisplay_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.IapSettings IapSettings
+                {
+                    get { return iapSettings_; }
+                    set { iapSettings_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings PokemonUpgrades
+                {
+                    get { return pokemonUpgrades_; }
+                    set { pokemonUpgrades_ = value; }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings EquippedBadges
+                {
+                    get { return equippedBadges_; }
+                    set { equippedBadges_ = value; }
+                }
+
+                pbr::MessageDescriptor pb::IMessage.Descriptor
+                {
+                    get { return Descriptor; }
+                }
+
+                public ItemTemplate Clone()
+                {
+                    return new ItemTemplate(this);
+                }
+
+                public bool Equals(ItemTemplate other)
+                {
+                    if (ReferenceEquals(other, null))
+                    {
+                        return false;
+                    }
+                    if (ReferenceEquals(other, this))
+                    {
+                        return true;
+                    }
+                    if (TemplateId != other.TemplateId) return false;
+                    if (!Equals(PokemonSettings, other.PokemonSettings)) return false;
+                    if (!Equals(ItemSettings, other.ItemSettings)) return false;
+                    if (!Equals(MoveSettings, other.MoveSettings)) return false;
+                    if (!Equals(MoveSequenceSettings, other.MoveSequenceSettings)) return false;
+                    if (!Equals(TypeEffective, other.TypeEffective)) return false;
+                    if (!Equals(BadgeSettings, other.BadgeSettings)) return false;
+                    if (!Equals(Camera, other.Camera)) return false;
+                    if (!Equals(PlayerLevel, other.PlayerLevel)) return false;
+                    if (!Equals(GymLevel, other.GymLevel)) return false;
+                    if (!Equals(BattleSettings, other.BattleSettings)) return false;
+                    if (!Equals(EncounterSettings, other.EncounterSettings)) return false;
+                    if (!Equals(IapItemDisplay, other.IapItemDisplay)) return false;
+                    if (!Equals(IapSettings, other.IapSettings)) return false;
+                    if (!Equals(PokemonUpgrades, other.PokemonUpgrades)) return false;
+                    if (!Equals(EquippedBadges, other.EquippedBadges)) return false;
+                    return true;
+                }
+
+                public void WriteTo(pb::CodedOutputStream output)
+                {
+                    if (TemplateId.Length != 0)
+                    {
+                        output.WriteRawTag(10);
+                        output.WriteString(TemplateId);
+                    }
+                    if (pokemonSettings_ != null)
+                    {
+                        output.WriteRawTag(18);
+                        output.WriteMessage(PokemonSettings);
+                    }
+                    if (itemSettings_ != null)
+                    {
+                        output.WriteRawTag(26);
+                        output.WriteMessage(ItemSettings);
+                    }
+                    if (moveSettings_ != null)
+                    {
+                        output.WriteRawTag(34);
+                        output.WriteMessage(MoveSettings);
+                    }
+                    if (moveSequenceSettings_ != null)
+                    {
+                        output.WriteRawTag(42);
+                        output.WriteMessage(MoveSequenceSettings);
+                    }
+                    if (typeEffective_ != null)
+                    {
+                        output.WriteRawTag(66);
+                        output.WriteMessage(TypeEffective);
+                    }
+                    if (badgeSettings_ != null)
+                    {
+                        output.WriteRawTag(82);
+                        output.WriteMessage(BadgeSettings);
+                    }
+                    if (camera_ != null)
+                    {
+                        output.WriteRawTag(90);
+                        output.WriteMessage(Camera);
+                    }
+                    if (playerLevel_ != null)
+                    {
+                        output.WriteRawTag(98);
+                        output.WriteMessage(PlayerLevel);
+                    }
+                    if (gymLevel_ != null)
+                    {
+                        output.WriteRawTag(106);
+                        output.WriteMessage(GymLevel);
+                    }
+                    if (battleSettings_ != null)
+                    {
+                        output.WriteRawTag(114);
+                        output.WriteMessage(BattleSettings);
+                    }
+                    if (encounterSettings_ != null)
+                    {
+                        output.WriteRawTag(122);
+                        output.WriteMessage(EncounterSettings);
+                    }
+                    if (iapItemDisplay_ != null)
+                    {
+                        output.WriteRawTag(130, 1);
+                        output.WriteMessage(IapItemDisplay);
+                    }
+                    if (iapSettings_ != null)
+                    {
+                        output.WriteRawTag(138, 1);
+                        output.WriteMessage(IapSettings);
+                    }
+                    if (pokemonUpgrades_ != null)
+                    {
+                        output.WriteRawTag(146, 1);
+                        output.WriteMessage(PokemonUpgrades);
+                    }
+                    if (equippedBadges_ != null)
+                    {
+                        output.WriteRawTag(154, 1);
+                        output.WriteMessage(EquippedBadges);
+                    }
+                }
+
+                public int CalculateSize()
+                {
+                    var size = 0;
+                    if (TemplateId.Length != 0)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeStringSize(TemplateId);
+                    }
+                    if (pokemonSettings_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonSettings);
+                    }
+                    if (itemSettings_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(ItemSettings);
+                    }
+                    if (moveSettings_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(MoveSettings);
+                    }
+                    if (moveSequenceSettings_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(MoveSequenceSettings);
+                    }
+                    if (typeEffective_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(TypeEffective);
+                    }
+                    if (badgeSettings_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(BadgeSettings);
+                    }
+                    if (camera_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(Camera);
+                    }
+                    if (playerLevel_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(PlayerLevel);
+                    }
+                    if (gymLevel_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(GymLevel);
+                    }
+                    if (battleSettings_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(BattleSettings);
+                    }
+                    if (encounterSettings_ != null)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeMessageSize(EncounterSettings);
+                    }
+                    if (iapItemDisplay_ != null)
+                    {
+                        size += 2 + pb::CodedOutputStream.ComputeMessageSize(IapItemDisplay);
+                    }
+                    if (iapSettings_ != null)
+                    {
+                        size += 2 + pb::CodedOutputStream.ComputeMessageSize(IapSettings);
+                    }
+                    if (pokemonUpgrades_ != null)
+                    {
+                        size += 2 + pb::CodedOutputStream.ComputeMessageSize(PokemonUpgrades);
+                    }
+                    if (equippedBadges_ != null)
+                    {
+                        size += 2 + pb::CodedOutputStream.ComputeMessageSize(EquippedBadges);
+                    }
+                    return size;
+                }
+
+                public void MergeFrom(ItemTemplate other)
+                {
+                    if (other == null)
+                    {
+                        return;
+                    }
+                    if (other.TemplateId.Length != 0)
+                    {
+                        TemplateId = other.TemplateId;
+                    }
+                    if (other.pokemonSettings_ != null)
+                    {
+                        if (pokemonSettings_ == null)
+                        {
+                            pokemonSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings();
+                        }
+                        PokemonSettings.MergeFrom(other.PokemonSettings);
+                    }
+                    if (other.itemSettings_ != null)
+                    {
+                        if (itemSettings_ == null)
+                        {
+                            itemSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings();
+                        }
+                        ItemSettings.MergeFrom(other.ItemSettings);
+                    }
+                    if (other.moveSettings_ != null)
+                    {
+                        if (moveSettings_ == null)
+                        {
+                            moveSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings();
+                        }
+                        MoveSettings.MergeFrom(other.MoveSettings);
+                    }
+                    if (other.moveSequenceSettings_ != null)
+                    {
+                        if (moveSequenceSettings_ == null)
+                        {
+                            moveSequenceSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings();
+                        }
+                        MoveSequenceSettings.MergeFrom(other.MoveSequenceSettings);
+                    }
+                    if (other.typeEffective_ != null)
+                    {
+                        if (typeEffective_ == null)
+                        {
+                            typeEffective_ = new global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings();
+                        }
+                        TypeEffective.MergeFrom(other.TypeEffective);
+                    }
+                    if (other.badgeSettings_ != null)
+                    {
+                        if (badgeSettings_ == null)
+                        {
+                            badgeSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings();
+                        }
+                        BadgeSettings.MergeFrom(other.BadgeSettings);
+                    }
+                    if (other.camera_ != null)
+                    {
+                        if (camera_ == null)
+                        {
+                            camera_ = new global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings();
+                        }
+                        Camera.MergeFrom(other.Camera);
+                    }
+                    if (other.playerLevel_ != null)
+                    {
+                        if (playerLevel_ == null)
+                        {
+                            playerLevel_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings();
+                        }
+                        PlayerLevel.MergeFrom(other.PlayerLevel);
+                    }
+                    if (other.gymLevel_ != null)
+                    {
+                        if (gymLevel_ == null)
+                        {
+                            gymLevel_ = new global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings();
+                        }
+                        GymLevel.MergeFrom(other.GymLevel);
+                    }
+                    if (other.battleSettings_ != null)
+                    {
+                        if (battleSettings_ == null)
+                        {
+                            battleSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings();
+                        }
+                        BattleSettings.MergeFrom(other.BattleSettings);
+                    }
+                    if (other.encounterSettings_ != null)
+                    {
+                        if (encounterSettings_ == null)
+                        {
+                            encounterSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings();
+                        }
+                        EncounterSettings.MergeFrom(other.EncounterSettings);
+                    }
+                    if (other.iapItemDisplay_ != null)
+                    {
+                        if (iapItemDisplay_ == null)
+                        {
+                            iapItemDisplay_ = new global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay();
+                        }
+                        IapItemDisplay.MergeFrom(other.IapItemDisplay);
+                    }
+                    if (other.iapSettings_ != null)
+                    {
+                        if (iapSettings_ == null)
+                        {
+                            iapSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.IapSettings();
+                        }
+                        IapSettings.MergeFrom(other.IapSettings);
+                    }
+                    if (other.pokemonUpgrades_ != null)
+                    {
+                        if (pokemonUpgrades_ == null)
+                        {
+                            pokemonUpgrades_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings();
+                        }
+                        PokemonUpgrades.MergeFrom(other.PokemonUpgrades);
+                    }
+                    if (other.equippedBadges_ != null)
+                    {
+                        if (equippedBadges_ == null)
+                        {
+                            equippedBadges_ = new global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings();
+                        }
+                        EquippedBadges.MergeFrom(other.EquippedBadges);
+                    }
+                }
+
+                public void MergeFrom(pb::CodedInputStream input)
+                {
+                    uint tag;
+                    while ((tag = input.ReadTag()) != 0)
+                    {
+                        switch (tag)
+                        {
+                            default:
+                                input.SkipLastField();
+                                break;
+                            case 10:
+                                {
+                                    TemplateId = input.ReadString();
+                                    break;
+                                }
+                            case 18:
+                                {
+                                    if (pokemonSettings_ == null)
+                                    {
+                                        pokemonSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonSettings();
+                                    }
+                                    input.ReadMessage(pokemonSettings_);
+                                    break;
+                                }
+                            case 26:
+                                {
+                                    if (itemSettings_ == null)
+                                    {
+                                        itemSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.ItemSettings();
+                                    }
+                                    input.ReadMessage(itemSettings_);
+                                    break;
+                                }
+                            case 34:
+                                {
+                                    if (moveSettings_ == null)
+                                    {
+                                        moveSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.MoveSettings();
+                                    }
+                                    input.ReadMessage(moveSettings_);
+                                    break;
+                                }
+                            case 42:
+                                {
+                                    if (moveSequenceSettings_ == null)
+                                    {
+                                        moveSequenceSettings_ =
+                                            new global::PokemonGo.RocketAPI.GeneratedCode.MoveSequenceSettings();
+                                    }
+                                    input.ReadMessage(moveSequenceSettings_);
+                                    break;
+                                }
+                            case 66:
+                                {
+                                    if (typeEffective_ == null)
+                                    {
+                                        typeEffective_ =
+                                            new global::PokemonGo.RocketAPI.GeneratedCode.TypeEffectiveSettings();
+                                    }
+                                    input.ReadMessage(typeEffective_);
+                                    break;
+                                }
+                            case 82:
+                                {
+                                    if (badgeSettings_ == null)
+                                    {
+                                        badgeSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.BadgeSettings();
+                                    }
+                                    input.ReadMessage(badgeSettings_);
+                                    break;
+                                }
+                            case 90:
+                                {
+                                    if (camera_ == null)
+                                    {
+                                        camera_ = new global::PokemonGo.RocketAPI.GeneratedCode.CameraSettings();
+                                    }
+                                    input.ReadMessage(camera_);
+                                    break;
+                                }
+                            case 98:
+                                {
+                                    if (playerLevel_ == null)
+                                    {
+                                        playerLevel_ = new global::PokemonGo.RocketAPI.GeneratedCode.PlayerLevelSettings();
+                                    }
+                                    input.ReadMessage(playerLevel_);
+                                    break;
+                                }
+                            case 106:
+                                {
+                                    if (gymLevel_ == null)
+                                    {
+                                        gymLevel_ = new global::PokemonGo.RocketAPI.GeneratedCode.GymLevelSettings();
+                                    }
+                                    input.ReadMessage(gymLevel_);
+                                    break;
+                                }
+                            case 114:
+                                {
+                                    if (battleSettings_ == null)
+                                    {
+                                        battleSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.GymBattleSettings();
+                                    }
+                                    input.ReadMessage(battleSettings_);
+                                    break;
+                                }
+                            case 122:
+                                {
+                                    if (encounterSettings_ == null)
+                                    {
+                                        encounterSettings_ =
+                                            new global::PokemonGo.RocketAPI.GeneratedCode.EncounterSettings();
+                                    }
+                                    input.ReadMessage(encounterSettings_);
+                                    break;
+                                }
+                            case 130:
+                                {
+                                    if (iapItemDisplay_ == null)
+                                    {
+                                        iapItemDisplay_ = new global::PokemonGo.RocketAPI.GeneratedCode.IapItemDisplay();
+                                    }
+                                    input.ReadMessage(iapItemDisplay_);
+                                    break;
+                                }
+                            case 138:
+                                {
+                                    if (iapSettings_ == null)
+                                    {
+                                        iapSettings_ = new global::PokemonGo.RocketAPI.GeneratedCode.IapSettings();
+                                    }
+                                    input.ReadMessage(iapSettings_);
+                                    break;
+                                }
+                            case 146:
+                                {
+                                    if (pokemonUpgrades_ == null)
+                                    {
+                                        pokemonUpgrades_ =
+                                            new global::PokemonGo.RocketAPI.GeneratedCode.PokemonUpgradeSettings();
+                                    }
+                                    input.ReadMessage(pokemonUpgrades_);
+                                    break;
+                                }
+                            case 154:
+                                {
+                                    if (equippedBadges_ == null)
+                                    {
+                                        equippedBadges_ =
+                                            new global::PokemonGo.RocketAPI.GeneratedCode.EquippedBadgeSettings();
+                                    }
+                                    input.ReadMessage(equippedBadges_);
+                                    break;
+                                }
+                        }
+                    }
+                }
+
+                public override bool Equals(object other)
+                {
+                    return Equals(other as ItemTemplate);
+                }
+
+                public override int GetHashCode()
+                {
+                    var hash = 1;
+                    if (TemplateId.Length != 0) hash ^= TemplateId.GetHashCode();
+                    if (pokemonSettings_ != null) hash ^= PokemonSettings.GetHashCode();
+                    if (itemSettings_ != null) hash ^= ItemSettings.GetHashCode();
+                    if (moveSettings_ != null) hash ^= MoveSettings.GetHashCode();
+                    if (moveSequenceSettings_ != null) hash ^= MoveSequenceSettings.GetHashCode();
+                    if (typeEffective_ != null) hash ^= TypeEffective.GetHashCode();
+                    if (badgeSettings_ != null) hash ^= BadgeSettings.GetHashCode();
+                    if (camera_ != null) hash ^= Camera.GetHashCode();
+                    if (playerLevel_ != null) hash ^= PlayerLevel.GetHashCode();
+                    if (gymLevel_ != null) hash ^= GymLevel.GetHashCode();
+                    if (battleSettings_ != null) hash ^= BattleSettings.GetHashCode();
+                    if (encounterSettings_ != null) hash ^= EncounterSettings.GetHashCode();
+                    if (iapItemDisplay_ != null) hash ^= IapItemDisplay.GetHashCode();
+                    if (iapSettings_ != null) hash ^= IapSettings.GetHashCode();
+                    if (pokemonUpgrades_ != null) hash ^= PokemonUpgrades.GetHashCode();
+                    if (equippedBadges_ != null) hash ^= EquippedBadges.GetHashCode();
+                    return hash;
+                }
+
+                partial void OnConstruction();
+
+                public override string ToString()
+                {
+                    return pb::JsonFormatter.ToDiagnosticString(this);
+                }
+            }
+        }
+
+        #endregion
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class UseItemCaptureRequest : pb::IMessage<UseItemCaptureRequest>
+    {
+        /// <summary>Field number for the "item_id" field.</summary>
+        public const int ItemIdFieldNumber = 1;
+
+        /// <summary>Field number for the "encounter_id" field.</summary>
+        public const int EncounterIdFieldNumber = 2;
+
+        /// <summary>Field number for the "spawn_point_guid" field.</summary>
+        public const int SpawnPointGuidFieldNumber = 3;
+
+        private static readonly pb::MessageParser<UseItemCaptureRequest> _parser =
+            new pb::MessageParser<UseItemCaptureRequest>(() => new UseItemCaptureRequest());
+
+        private ulong encounterId_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemId itemId_ = 0;
+        private string spawnPointGuid_ = "";
+
+        public UseItemCaptureRequest()
+        {
+            OnConstruction();
+        }
+
+        public UseItemCaptureRequest(UseItemCaptureRequest other) : this()
+        {
+            itemId_ = other.itemId_;
+            encounterId_ = other.encounterId_;
+            spawnPointGuid_ = other.spawnPointGuid_;
+        }
+
+        public static pb::MessageParser<UseItemCaptureRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[45]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemId ItemId
+        {
+            get { return itemId_; }
+            set { itemId_ = value; }
+        }
+
+        public ulong EncounterId
+        {
+            get { return encounterId_; }
+            set { encounterId_ = value; }
+        }
+
+        public string SpawnPointGuid
+        {
+            get { return spawnPointGuid_; }
+            set { spawnPointGuid_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public UseItemCaptureRequest Clone()
+        {
+            return new UseItemCaptureRequest(this);
+        }
+
+        public bool Equals(UseItemCaptureRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ItemId != other.ItemId) return false;
+            if (EncounterId != other.EncounterId) return false;
+            if (SpawnPointGuid != other.SpawnPointGuid) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ItemId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)ItemId);
+            }
+            if (EncounterId != 0UL)
+            {
+                output.WriteRawTag(17);
+                output.WriteFixed64(EncounterId);
+            }
+            if (SpawnPointGuid.Length != 0)
+            {
+                output.WriteRawTag(26);
+                output.WriteString(SpawnPointGuid);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ItemId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
+            }
+            if (EncounterId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            if (SpawnPointGuid.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnPointGuid);
+            }
+            return size;
+        }
+
+        public void MergeFrom(UseItemCaptureRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ItemId != 0)
+            {
+                ItemId = other.ItemId;
+            }
+            if (other.EncounterId != 0UL)
+            {
+                EncounterId = other.EncounterId;
+            }
+            if (other.SpawnPointGuid.Length != 0)
+            {
+                SpawnPointGuid = other.SpawnPointGuid;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            itemId_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemId)input.ReadEnum();
+                            break;
+                        }
+                    case 17:
+                        {
+                            EncounterId = input.ReadFixed64();
+                            break;
+                        }
+                    case 26:
+                        {
+                            SpawnPointGuid = input.ReadString();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as UseItemCaptureRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ItemId != 0) hash ^= ItemId.GetHashCode();
+            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
+            if (SpawnPointGuid.Length != 0) hash ^= SpawnPointGuid.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class UseItemCaptureResponse : pb::IMessage<UseItemCaptureResponse>
+    {
+        /// <summary>Field number for the "success" field.</summary>
+        public const int SuccessFieldNumber = 1;
+
+        /// <summary>Field number for the "item_capture_mult" field.</summary>
+        public const int ItemCaptureMultFieldNumber = 2;
+
+        /// <summary>Field number for the "item_flee_mult" field.</summary>
+        public const int ItemFleeMultFieldNumber = 3;
+
+        /// <summary>Field number for the "stop_movement" field.</summary>
+        public const int StopMovementFieldNumber = 4;
+
+        /// <summary>Field number for the "stop_attack" field.</summary>
+        public const int StopAttackFieldNumber = 5;
+
+        /// <summary>Field number for the "target_max" field.</summary>
+        public const int TargetMaxFieldNumber = 6;
+
+        /// <summary>Field number for the "target_slow" field.</summary>
+        public const int TargetSlowFieldNumber = 7;
+
+        private static readonly pb::MessageParser<UseItemCaptureResponse> _parser =
+            new pb::MessageParser<UseItemCaptureResponse>(() => new UseItemCaptureResponse());
+
+        private double itemCaptureMult_;
+        private double itemFleeMult_;
+        private bool stopAttack_;
+        private bool stopMovement_;
+        private bool success_;
+        private bool targetMax_;
+        private bool targetSlow_;
+
+        public UseItemCaptureResponse()
+        {
+            OnConstruction();
+        }
+
+        public UseItemCaptureResponse(UseItemCaptureResponse other) : this()
+        {
+            success_ = other.success_;
+            itemCaptureMult_ = other.itemCaptureMult_;
+            itemFleeMult_ = other.itemFleeMult_;
+            stopMovement_ = other.stopMovement_;
+            stopAttack_ = other.stopAttack_;
+            targetMax_ = other.targetMax_;
+            targetSlow_ = other.targetSlow_;
+        }
+
+        public static pb::MessageParser<UseItemCaptureResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[46]; }
+        }
+
+        public bool Success
+        {
+            get { return success_; }
+            set { success_ = value; }
+        }
+
+        public double ItemCaptureMult
+        {
+            get { return itemCaptureMult_; }
+            set { itemCaptureMult_ = value; }
+        }
+
+        public double ItemFleeMult
+        {
+            get { return itemFleeMult_; }
+            set { itemFleeMult_ = value; }
+        }
+
+        public bool StopMovement
+        {
+            get { return stopMovement_; }
+            set { stopMovement_ = value; }
+        }
+
+        public bool StopAttack
+        {
+            get { return stopAttack_; }
+            set { stopAttack_ = value; }
+        }
+
+        public bool TargetMax
+        {
+            get { return targetMax_; }
+            set { targetMax_ = value; }
+        }
+
+        public bool TargetSlow
+        {
+            get { return targetSlow_; }
+            set { targetSlow_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public UseItemCaptureResponse Clone()
+        {
+            return new UseItemCaptureResponse(this);
+        }
+
+        public bool Equals(UseItemCaptureResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Success != other.Success) return false;
+            if (ItemCaptureMult != other.ItemCaptureMult) return false;
+            if (ItemFleeMult != other.ItemFleeMult) return false;
+            if (StopMovement != other.StopMovement) return false;
+            if (StopAttack != other.StopAttack) return false;
+            if (TargetMax != other.TargetMax) return false;
+            if (TargetSlow != other.TargetSlow) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Success != false)
+            {
+                output.WriteRawTag(8);
+                output.WriteBool(Success);
+            }
+            if (ItemCaptureMult != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(ItemCaptureMult);
+            }
+            if (ItemFleeMult != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(ItemFleeMult);
+            }
+            if (StopMovement != false)
+            {
+                output.WriteRawTag(32);
+                output.WriteBool(StopMovement);
+            }
+            if (StopAttack != false)
+            {
+                output.WriteRawTag(40);
+                output.WriteBool(StopAttack);
+            }
+            if (TargetMax != false)
+            {
+                output.WriteRawTag(48);
+                output.WriteBool(TargetMax);
+            }
+            if (TargetSlow != false)
+            {
+                output.WriteRawTag(56);
+                output.WriteBool(TargetSlow);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Success != false)
+            {
+                size += 1 + 1;
+            }
+            if (ItemCaptureMult != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (ItemFleeMult != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (StopMovement != false)
+            {
+                size += 1 + 1;
+            }
+            if (StopAttack != false)
+            {
+                size += 1 + 1;
+            }
+            if (TargetMax != false)
+            {
+                size += 1 + 1;
+            }
+            if (TargetSlow != false)
+            {
+                size += 1 + 1;
+            }
+            return size;
+        }
+
+        public void MergeFrom(UseItemCaptureResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Success != false)
+            {
+                Success = other.Success;
+            }
+            if (other.ItemCaptureMult != 0D)
+            {
+                ItemCaptureMult = other.ItemCaptureMult;
+            }
+            if (other.ItemFleeMult != 0D)
+            {
+                ItemFleeMult = other.ItemFleeMult;
+            }
+            if (other.StopMovement != false)
+            {
+                StopMovement = other.StopMovement;
+            }
+            if (other.StopAttack != false)
+            {
+                StopAttack = other.StopAttack;
+            }
+            if (other.TargetMax != false)
+            {
+                TargetMax = other.TargetMax;
+            }
+            if (other.TargetSlow != false)
+            {
+                TargetSlow = other.TargetSlow;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Success = input.ReadBool();
+                            break;
+                        }
+                    case 17:
+                        {
+                            ItemCaptureMult = input.ReadDouble();
+                            break;
+                        }
+                    case 25:
+                        {
+                            ItemFleeMult = input.ReadDouble();
+                            break;
+                        }
+                    case 32:
+                        {
+                            StopMovement = input.ReadBool();
+                            break;
+                        }
+                    case 40:
+                        {
+                            StopAttack = input.ReadBool();
+                            break;
+                        }
+                    case 48:
+                        {
+                            TargetMax = input.ReadBool();
+                            break;
+                        }
+                    case 56:
+                        {
+                            TargetSlow = input.ReadBool();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as UseItemCaptureResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Success != false) hash ^= Success.GetHashCode();
+            if (ItemCaptureMult != 0D) hash ^= ItemCaptureMult.GetHashCode();
+            if (ItemFleeMult != 0D) hash ^= ItemFleeMult.GetHashCode();
+            if (StopMovement != false) hash ^= StopMovement.GetHashCode();
+            if (StopAttack != false) hash ^= StopAttack.GetHashCode();
+            if (TargetMax != false) hash ^= TargetMax.GetHashCode();
+            if (TargetSlow != false) hash ^= TargetSlow.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class ReleasePokemonRequest : pb::IMessage<ReleasePokemonRequest>
+    {
+        /// <summary>Field number for the "pokemon_id" field.</summary>
+        public const int PokemonIdFieldNumber = 1;
+
+        private static readonly pb::MessageParser<ReleasePokemonRequest> _parser =
+            new pb::MessageParser<ReleasePokemonRequest>(() => new ReleasePokemonRequest());
+
+        private ulong pokemonId_;
+
+        public ReleasePokemonRequest()
+        {
+            OnConstruction();
+        }
+
+        public ReleasePokemonRequest(ReleasePokemonRequest other) : this()
+        {
+            pokemonId_ = other.pokemonId_;
+        }
+
+        public static pb::MessageParser<ReleasePokemonRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[47]; }
+        }
+
+        public ulong PokemonId
+        {
+            get { return pokemonId_; }
+            set { pokemonId_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public ReleasePokemonRequest Clone()
+        {
+            return new ReleasePokemonRequest(this);
+        }
+
+        public bool Equals(ReleasePokemonRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (PokemonId != other.PokemonId) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (PokemonId != 0UL)
+            {
+                output.WriteRawTag(9);
+                output.WriteFixed64(PokemonId);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (PokemonId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(ReleasePokemonRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.PokemonId != 0UL)
+            {
+                PokemonId = other.PokemonId;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            PokemonId = input.ReadFixed64();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as ReleasePokemonRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (PokemonId != 0UL) hash ^= PokemonId.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class ReleasePokemonResponse : pb::IMessage<ReleasePokemonResponse>
+    {
+        /// <summary>Field number for the "result" field.</summary>
+        public const int ResultFieldNumber = 1;
+
+        /// <summary>Field number for the "candy_awarded" field.</summary>
+        public const int CandyAwardedFieldNumber = 2;
+
+        private static readonly pb::MessageParser<ReleasePokemonResponse> _parser =
+            new pb::MessageParser<ReleasePokemonResponse>(() => new ReleasePokemonResponse());
+
+        private int candyAwarded_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Types.Result result_ = 0;
+
+        public ReleasePokemonResponse()
+        {
+            OnConstruction();
+        }
+
+        public ReleasePokemonResponse(ReleasePokemonResponse other) : this()
+        {
+            result_ = other.result_;
+            candyAwarded_ = other.candyAwarded_;
+        }
+
+        public static pb::MessageParser<ReleasePokemonResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[48]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Types.Result Result
+        {
+            get { return result_; }
+            set { result_ = value; }
+        }
+
+        public int CandyAwarded
+        {
+            get { return candyAwarded_; }
+            set { candyAwarded_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public ReleasePokemonResponse Clone()
+        {
+            return new ReleasePokemonResponse(this);
+        }
+
+        public bool Equals(ReleasePokemonResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Result != other.Result) return false;
+            if (CandyAwarded != other.CandyAwarded) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Result != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)Result);
+            }
+            if (CandyAwarded != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(CandyAwarded);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Result != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Result);
+            }
+            if (CandyAwarded != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(CandyAwarded);
+            }
+            return size;
+        }
+
+        public void MergeFrom(ReleasePokemonResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Result != 0)
+            {
+                Result = other.Result;
+            }
+            if (other.CandyAwarded != 0)
+            {
+                CandyAwarded = other.CandyAwarded;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            result_ =
+                                (global::PokemonGo.RocketAPI.GeneratedCode.ReleasePokemonResponse.Types.Result)
+                                    input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            CandyAwarded = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as ReleasePokemonResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Result != 0) hash ^= Result.GetHashCode();
+            if (CandyAwarded != 0) hash ^= CandyAwarded.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+
+        #region Nested types
+
+        /// <summary>Container for nested types declared in the ReleasePokemonResponse message type.</summary>
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        public static partial class Types
+        {
+            public enum Result
+            {
+                [pbr::OriginalName("UNSET")]
+                Unset = 0,
+                [pbr::OriginalName("SUCCESS")]
+                Success = 1,
+                [pbr::OriginalName("POKEMON_DEPLOYED")]
+                PokemonDeployed = 2,
+                [pbr::OriginalName("FAILED")]
+                Failed = 3,
+                [pbr::OriginalName("ERROR_POKEMON_IS_EGG")]
+                ErrorPokemonIsEgg = 4,
+            }
+        }
+
+        #endregion
+    }
+
+    /// <summary>
+    ///     No message needed.
+    /// </summary>
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GetHatchedEggsRequest : pb::IMessage<GetHatchedEggsRequest>
+    {
+        private static readonly pb::MessageParser<GetHatchedEggsRequest> _parser =
+            new pb::MessageParser<GetHatchedEggsRequest>(() => new GetHatchedEggsRequest());
+
+        public GetHatchedEggsRequest()
+        {
+            OnConstruction();
+        }
+
+        public GetHatchedEggsRequest(GetHatchedEggsRequest other) : this()
+        {
+        }
+
+        public static pb::MessageParser<GetHatchedEggsRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[49]; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GetHatchedEggsRequest Clone()
+        {
+            return new GetHatchedEggsRequest(this);
+        }
+
+        public bool Equals(GetHatchedEggsRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            return size;
+        }
+
+        public void MergeFrom(GetHatchedEggsRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GetHatchedEggsRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    /// <summary>
+    ///     Confirm if this is correct, I think that it should be "repeated HatchedEgg hatched_eggs" or something like that.
+    /// </summary>
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GetHatchedEggsResponse : pb::IMessage<GetHatchedEggsResponse>
+    {
+        /// <summary>Field number for the "success" field.</summary>
+        public const int SuccessFieldNumber = 1;
+
+        /// <summary>Field number for the "pokemon_id" field.</summary>
+        public const int PokemonIdFieldNumber = 2;
+
+        /// <summary>Field number for the "experience_awarded" field.</summary>
+        public const int ExperienceAwardedFieldNumber = 3;
+
+        /// <summary>Field number for the "candy_awarded" field.</summary>
+        public const int CandyAwardedFieldNumber = 4;
+
+        /// <summary>Field number for the "stardust_awarded" field.</summary>
+        public const int StardustAwardedFieldNumber = 5;
+
+        private static readonly pb::MessageParser<GetHatchedEggsResponse> _parser =
+            new pb::MessageParser<GetHatchedEggsResponse>(() => new GetHatchedEggsResponse());
+
+        private static readonly pb::FieldCodec<ulong> _repeated_pokemonId_codec
+            = pb::FieldCodec.ForUInt64(18);
+
+        private static readonly pb::FieldCodec<int> _repeated_experienceAwarded_codec
+            = pb::FieldCodec.ForInt32(26);
+
+        private static readonly pb::FieldCodec<int> _repeated_candyAwarded_codec
+            = pb::FieldCodec.ForInt32(34);
+
+        private static readonly pb::FieldCodec<int> _repeated_stardustAwarded_codec
+            = pb::FieldCodec.ForInt32(42);
+
+        private readonly pbc::RepeatedField<int> candyAwarded_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<int> experienceAwarded_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<ulong> pokemonId_ = new pbc::RepeatedField<ulong>();
+        private readonly pbc::RepeatedField<int> stardustAwarded_ = new pbc::RepeatedField<int>();
+        private bool success_;
+
+        public GetHatchedEggsResponse()
+        {
+            OnConstruction();
+        }
+
+        public GetHatchedEggsResponse(GetHatchedEggsResponse other) : this()
+        {
+            success_ = other.success_;
+            pokemonId_ = other.pokemonId_.Clone();
+            experienceAwarded_ = other.experienceAwarded_.Clone();
+            candyAwarded_ = other.candyAwarded_.Clone();
+            stardustAwarded_ = other.stardustAwarded_.Clone();
+        }
+
+        public static pb::MessageParser<GetHatchedEggsResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[50]; }
+        }
+
+        public bool Success
+        {
+            get { return success_; }
+            set { success_ = value; }
+        }
+
+        /// <summary>
+        ///     Might be POGOProtos.Enums.Pokemon
+        /// </summary>
+        public pbc::RepeatedField<ulong> PokemonId
+        {
+            get { return pokemonId_; }
+        }
+
+        public pbc::RepeatedField<int> ExperienceAwarded
+        {
+            get { return experienceAwarded_; }
+        }
+
+        public pbc::RepeatedField<int> CandyAwarded
+        {
+            get { return candyAwarded_; }
+        }
+
+        public pbc::RepeatedField<int> StardustAwarded
+        {
+            get { return stardustAwarded_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GetHatchedEggsResponse Clone()
+        {
+            return new GetHatchedEggsResponse(this);
+        }
+
+        public bool Equals(GetHatchedEggsResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Success != other.Success) return false;
+            if (!pokemonId_.Equals(other.pokemonId_)) return false;
+            if (!experienceAwarded_.Equals(other.experienceAwarded_)) return false;
+            if (!candyAwarded_.Equals(other.candyAwarded_)) return false;
+            if (!stardustAwarded_.Equals(other.stardustAwarded_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Success != false)
+            {
+                output.WriteRawTag(8);
+                output.WriteBool(Success);
+            }
+            pokemonId_.WriteTo(output, _repeated_pokemonId_codec);
+            experienceAwarded_.WriteTo(output, _repeated_experienceAwarded_codec);
+            candyAwarded_.WriteTo(output, _repeated_candyAwarded_codec);
+            stardustAwarded_.WriteTo(output, _repeated_stardustAwarded_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Success != false)
+            {
+                size += 1 + 1;
+            }
+            size += pokemonId_.CalculateSize(_repeated_pokemonId_codec);
+            size += experienceAwarded_.CalculateSize(_repeated_experienceAwarded_codec);
+            size += candyAwarded_.CalculateSize(_repeated_candyAwarded_codec);
+            size += stardustAwarded_.CalculateSize(_repeated_stardustAwarded_codec);
+            return size;
+        }
+
+        public void MergeFrom(GetHatchedEggsResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Success != false)
+            {
+                Success = other.Success;
+            }
+            pokemonId_.Add(other.pokemonId_);
+            experienceAwarded_.Add(other.experienceAwarded_);
+            candyAwarded_.Add(other.candyAwarded_);
+            stardustAwarded_.Add(other.stardustAwarded_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Success = input.ReadBool();
+                            break;
+                        }
+                    case 18:
+                    case 16:
+                        {
+                            pokemonId_.AddEntriesFrom(input, _repeated_pokemonId_codec);
+                            break;
+                        }
+                    case 26:
+                    case 24:
+                        {
+                            experienceAwarded_.AddEntriesFrom(input, _repeated_experienceAwarded_codec);
+                            break;
+                        }
+                    case 34:
+                    case 32:
+                        {
+                            candyAwarded_.AddEntriesFrom(input, _repeated_candyAwarded_codec);
+                            break;
+                        }
+                    case 42:
+                    case 40:
+                        {
+                            stardustAwarded_.AddEntriesFrom(input, _repeated_stardustAwarded_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GetHatchedEggsResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Success != false) hash ^= Success.GetHashCode();
+            hash ^= pokemonId_.GetHashCode();
+            hash ^= experienceAwarded_.GetHashCode();
+            hash ^= candyAwarded_.GetHashCode();
+            hash ^= stardustAwarded_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortSearchRequest : pb::IMessage<FortSearchRequest>
+    {
+        /// <summary>Field number for the "fort_id" field.</summary>
+        public const int FortIdFieldNumber = 1;
+
+        /// <summary>Field number for the "player_latitude" field.</summary>
+        public const int PlayerLatitudeFieldNumber = 2;
+
+        /// <summary>Field number for the "player_longitude" field.</summary>
+        public const int PlayerLongitudeFieldNumber = 3;
+
+        /// <summary>Field number for the "fort_latitude" field.</summary>
+        public const int FortLatitudeFieldNumber = 4;
+
+        /// <summary>Field number for the "fort_longitude" field.</summary>
+        public const int FortLongitudeFieldNumber = 5;
+
+        private static readonly pb::MessageParser<FortSearchRequest> _parser =
+            new pb::MessageParser<FortSearchRequest>(() => new FortSearchRequest());
+
+        private string fortId_ = "";
+        private double fortLatitude_;
+        private double fortLongitude_;
+        private double playerLatitude_;
+        private double playerLongitude_;
+
+        public FortSearchRequest()
+        {
+            OnConstruction();
+        }
+
+        public FortSearchRequest(FortSearchRequest other) : this()
+        {
+            fortId_ = other.fortId_;
+            playerLatitude_ = other.playerLatitude_;
+            playerLongitude_ = other.playerLongitude_;
+            fortLatitude_ = other.fortLatitude_;
+            fortLongitude_ = other.fortLongitude_;
+        }
+
+        public static pb::MessageParser<FortSearchRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[51]; }
+        }
+
+        public string FortId
+        {
+            get { return fortId_; }
+            set { fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public double PlayerLatitude
+        {
+            get { return playerLatitude_; }
+            set { playerLatitude_ = value; }
+        }
+
+        public double PlayerLongitude
+        {
+            get { return playerLongitude_; }
+            set { playerLongitude_ = value; }
+        }
+
+        public double FortLatitude
+        {
+            get { return fortLatitude_; }
+            set { fortLatitude_ = value; }
+        }
+
+        public double FortLongitude
+        {
+            get { return fortLongitude_; }
+            set { fortLongitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortSearchRequest Clone()
+        {
+            return new FortSearchRequest(this);
+        }
+
+        public bool Equals(FortSearchRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (FortId != other.FortId) return false;
+            if (PlayerLatitude != other.PlayerLatitude) return false;
+            if (PlayerLongitude != other.PlayerLongitude) return false;
+            if (FortLatitude != other.FortLatitude) return false;
+            if (FortLongitude != other.FortLongitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (FortId.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(FortId);
+            }
+            if (PlayerLatitude != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(PlayerLatitude);
+            }
+            if (PlayerLongitude != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(PlayerLongitude);
+            }
+            if (FortLatitude != 0D)
+            {
+                output.WriteRawTag(33);
+                output.WriteDouble(FortLatitude);
+            }
+            if (FortLongitude != 0D)
+            {
+                output.WriteRawTag(41);
+                output.WriteDouble(FortLongitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (FortId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
+            }
+            if (PlayerLatitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (PlayerLongitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (FortLatitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (FortLongitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortSearchRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.FortId.Length != 0)
+            {
+                FortId = other.FortId;
+            }
+            if (other.PlayerLatitude != 0D)
+            {
+                PlayerLatitude = other.PlayerLatitude;
+            }
+            if (other.PlayerLongitude != 0D)
+            {
+                PlayerLongitude = other.PlayerLongitude;
+            }
+            if (other.FortLatitude != 0D)
+            {
+                FortLatitude = other.FortLatitude;
+            }
+            if (other.FortLongitude != 0D)
+            {
+                FortLongitude = other.FortLongitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            FortId = input.ReadString();
+                            break;
+                        }
+                    case 17:
+                        {
+                            PlayerLatitude = input.ReadDouble();
+                            break;
+                        }
+                    case 25:
+                        {
+                            PlayerLongitude = input.ReadDouble();
+                            break;
+                        }
+                    case 33:
+                        {
+                            FortLatitude = input.ReadDouble();
+                            break;
+                        }
+                    case 41:
+                        {
+                            FortLongitude = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortSearchRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
+            if (PlayerLatitude != 0D) hash ^= PlayerLatitude.GetHashCode();
+            if (PlayerLongitude != 0D) hash ^= PlayerLongitude.GetHashCode();
+            if (FortLatitude != 0D) hash ^= FortLatitude.GetHashCode();
+            if (FortLongitude != 0D) hash ^= FortLongitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortSearchResponse : pb::IMessage<FortSearchResponse>
+    {
+        /// <summary>Field number for the "result" field.</summary>
+        public const int ResultFieldNumber = 1;
+
+        /// <summary>Field number for the "items_awarded" field.</summary>
+        public const int ItemsAwardedFieldNumber = 2;
+
+        /// <summary>Field number for the "gems_awarded" field.</summary>
+        public const int GemsAwardedFieldNumber = 3;
+
+        /// <summary>Field number for the "pokemon_data_egg" field.</summary>
+        public const int PokemonDataEggFieldNumber = 4;
+
+        /// <summary>Field number for the "experience_awarded" field.</summary>
+        public const int ExperienceAwardedFieldNumber = 5;
+
+        /// <summary>Field number for the "cooldown_complete_timestamp_ms" field.</summary>
+        public const int CooldownCompleteTimestampMsFieldNumber = 6;
+
+        /// <summary>Field number for the "chain_hack_sequence_number" field.</summary>
+        public const int ChainHackSequenceNumberFieldNumber = 7;
+
+        private static readonly pb::MessageParser<FortSearchResponse> _parser =
+            new pb::MessageParser<FortSearchResponse>(() => new FortSearchResponse());
+
+        private static readonly
+            pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward>
+            _repeated_itemsAwarded_codec
+                = pb::FieldCodec.ForMessage(18,
+                    global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward.Parser);
+
+        private readonly
+            pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward>
+            itemsAwarded_ =
+                new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward>();
+
+        private int chainHackSequenceNumber_;
+        private long cooldownCompleteTimestampMs_;
+        private int experienceAwarded_;
+        private int gemsAwarded_;
+        private PokemonData pokemonDataEgg_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.Result result_ = 0;
+
+        public FortSearchResponse()
+        {
+            OnConstruction();
+        }
+
+        public FortSearchResponse(FortSearchResponse other) : this()
+        {
+            result_ = other.result_;
+            itemsAwarded_ = other.itemsAwarded_.Clone();
+            gemsAwarded_ = other.gemsAwarded_;
+            PokemonDataEgg = other.pokemonDataEgg_ != null ? other.PokemonDataEgg.Clone() : null;
+            experienceAwarded_ = other.experienceAwarded_;
+            cooldownCompleteTimestampMs_ = other.cooldownCompleteTimestampMs_;
+            chainHackSequenceNumber_ = other.chainHackSequenceNumber_;
+        }
+
+        public static pb::MessageParser<FortSearchResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[52]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.Result Result
+        {
+            get { return result_; }
+            set { result_ = value; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.ItemAward>
+            ItemsAwarded
+        {
+            get { return itemsAwarded_; }
+        }
+
+        public int GemsAwarded
+        {
+            get { return gemsAwarded_; }
+            set { gemsAwarded_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData PokemonDataEgg
+        {
+            get { return pokemonDataEgg_; }
+            set { pokemonDataEgg_ = value; }
+        }
+
+        public int ExperienceAwarded
+        {
+            get { return experienceAwarded_; }
+            set { experienceAwarded_ = value; }
+        }
+
+        public long CooldownCompleteTimestampMs
+        {
+            get { return cooldownCompleteTimestampMs_; }
+            set { cooldownCompleteTimestampMs_ = value; }
+        }
+
+        public int ChainHackSequenceNumber
+        {
+            get { return chainHackSequenceNumber_; }
+            set { chainHackSequenceNumber_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortSearchResponse Clone()
+        {
+            return new FortSearchResponse(this);
+        }
+
+        public bool Equals(FortSearchResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Result != other.Result) return false;
+            if (!itemsAwarded_.Equals(other.itemsAwarded_)) return false;
+            if (GemsAwarded != other.GemsAwarded) return false;
+            if (!Equals(PokemonDataEgg, other.PokemonDataEgg)) return false;
+            if (ExperienceAwarded != other.ExperienceAwarded) return false;
+            if (CooldownCompleteTimestampMs != other.CooldownCompleteTimestampMs) return false;
+            if (ChainHackSequenceNumber != other.ChainHackSequenceNumber) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Result != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)Result);
+            }
+            itemsAwarded_.WriteTo(output, _repeated_itemsAwarded_codec);
+            if (GemsAwarded != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(GemsAwarded);
+            }
+            if (pokemonDataEgg_ != null)
+            {
+                output.WriteRawTag(34);
+                output.WriteMessage(PokemonDataEgg);
+            }
+            if (ExperienceAwarded != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(ExperienceAwarded);
+            }
+            if (CooldownCompleteTimestampMs != 0L)
+            {
+                output.WriteRawTag(48);
+                output.WriteInt64(CooldownCompleteTimestampMs);
+            }
+            if (ChainHackSequenceNumber != 0)
+            {
+                output.WriteRawTag(56);
+                output.WriteInt32(ChainHackSequenceNumber);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Result != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Result);
+            }
+            size += itemsAwarded_.CalculateSize(_repeated_itemsAwarded_codec);
+            if (GemsAwarded != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(GemsAwarded);
+            }
+            if (pokemonDataEgg_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonDataEgg);
+            }
+            if (ExperienceAwarded != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ExperienceAwarded);
+            }
+            if (CooldownCompleteTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(CooldownCompleteTimestampMs);
+            }
+            if (ChainHackSequenceNumber != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ChainHackSequenceNumber);
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortSearchResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Result != 0)
+            {
+                Result = other.Result;
+            }
+            itemsAwarded_.Add(other.itemsAwarded_);
+            if (other.GemsAwarded != 0)
+            {
+                GemsAwarded = other.GemsAwarded;
+            }
+            if (other.pokemonDataEgg_ != null)
+            {
+                if (pokemonDataEgg_ == null)
+                {
+                    pokemonDataEgg_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                }
+                PokemonDataEgg.MergeFrom(other.PokemonDataEgg);
+            }
+            if (other.ExperienceAwarded != 0)
+            {
+                ExperienceAwarded = other.ExperienceAwarded;
+            }
+            if (other.CooldownCompleteTimestampMs != 0L)
+            {
+                CooldownCompleteTimestampMs = other.CooldownCompleteTimestampMs;
+            }
+            if (other.ChainHackSequenceNumber != 0)
+            {
+                ChainHackSequenceNumber = other.ChainHackSequenceNumber;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            result_ =
+                                (global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Types.Result)input.ReadEnum();
+                            break;
+                        }
+                    case 18:
+                        {
+                            itemsAwarded_.AddEntriesFrom(input, _repeated_itemsAwarded_codec);
+                            break;
+                        }
+                    case 24:
+                        {
+                            GemsAwarded = input.ReadInt32();
+                            break;
+                        }
+                    case 34:
+                        {
+                            if (pokemonDataEgg_ == null)
+                            {
+                                pokemonDataEgg_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                            }
+                            input.ReadMessage(pokemonDataEgg_);
+                            break;
+                        }
+                    case 40:
+                        {
+                            ExperienceAwarded = input.ReadInt32();
+                            break;
+                        }
+                    case 48:
+                        {
+                            CooldownCompleteTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 56:
+                        {
+                            ChainHackSequenceNumber = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortSearchResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Result != 0) hash ^= Result.GetHashCode();
+            hash ^= itemsAwarded_.GetHashCode();
+            if (GemsAwarded != 0) hash ^= GemsAwarded.GetHashCode();
+            if (pokemonDataEgg_ != null) hash ^= PokemonDataEgg.GetHashCode();
+            if (ExperienceAwarded != 0) hash ^= ExperienceAwarded.GetHashCode();
+            if (CooldownCompleteTimestampMs != 0L) hash ^= CooldownCompleteTimestampMs.GetHashCode();
+            if (ChainHackSequenceNumber != 0) hash ^= ChainHackSequenceNumber.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+
+        #region Nested types
+
+        /// <summary>Container for nested types declared in the FortSearchResponse message type.</summary>
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        public static partial class Types
+        {
+            public enum Result
+            {
+                [pbr::OriginalName("NO_RESULT_SET")]
+                NoResultSet = 0,
+                [pbr::OriginalName("SUCCESS")]
+                Success = 1,
+                [pbr::OriginalName("OUT_OF_RANGE")]
+                OutOfRange = 2,
+                [pbr::OriginalName("IN_COOLDOWN_PERIOD")]
+                InCooldownPeriod = 3,
+                [pbr::OriginalName("INVENTORY_FULL")]
+                InventoryFull = 4,
+            }
+
+            [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+            public sealed partial class ItemAward : pb::IMessage<ItemAward>
+            {
+                /// <summary>Field number for the "item_id" field.</summary>
+                public const int ItemIdFieldNumber = 1;
+
+                /// <summary>Field number for the "item_count" field.</summary>
+                public const int ItemCountFieldNumber = 2;
+
+                private static readonly pb::MessageParser<ItemAward> _parser =
+                    new pb::MessageParser<ItemAward>(() => new ItemAward());
+
+                private int itemCount_;
+                private global::PokemonGo.RocketAPI.GeneratedCode.ItemId itemId_ = 0;
+
+                public ItemAward()
+                {
+                    OnConstruction();
+                }
+
+                public ItemAward(ItemAward other) : this()
+                {
+                    itemId_ = other.itemId_;
+                    itemCount_ = other.itemCount_;
+                }
+
+                public static pb::MessageParser<ItemAward> Parser
+                {
+                    get { return _parser; }
+                }
+
+                public static pbr::MessageDescriptor Descriptor
+                {
+                    get
+                    {
+                        return global::PokemonGo.RocketAPI.GeneratedCode.FortSearchResponse.Descriptor.NestedTypes[0];
+                    }
+                }
+
+                public global::PokemonGo.RocketAPI.GeneratedCode.ItemId ItemId
+                {
+                    get { return itemId_; }
+                    set { itemId_ = value; }
+                }
+
+                public int ItemCount
+                {
+                    get { return itemCount_; }
+                    set { itemCount_ = value; }
+                }
+
+                pbr::MessageDescriptor pb::IMessage.Descriptor
+                {
+                    get { return Descriptor; }
+                }
+
+                public ItemAward Clone()
+                {
+                    return new ItemAward(this);
+                }
+
+                public bool Equals(ItemAward other)
+                {
+                    if (ReferenceEquals(other, null))
+                    {
+                        return false;
+                    }
+                    if (ReferenceEquals(other, this))
+                    {
+                        return true;
+                    }
+                    if (ItemId != other.ItemId) return false;
+                    if (ItemCount != other.ItemCount) return false;
+                    return true;
+                }
+
+                public void WriteTo(pb::CodedOutputStream output)
+                {
+                    if (ItemId != 0)
+                    {
+                        output.WriteRawTag(8);
+                        output.WriteEnum((int)ItemId);
+                    }
+                    if (ItemCount != 0)
+                    {
+                        output.WriteRawTag(16);
+                        output.WriteInt32(ItemCount);
+                    }
+                }
+
+                public int CalculateSize()
+                {
+                    var size = 0;
+                    if (ItemId != 0)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
+                    }
+                    if (ItemCount != 0)
+                    {
+                        size += 1 + pb::CodedOutputStream.ComputeInt32Size(ItemCount);
+                    }
+                    return size;
+                }
+
+                public void MergeFrom(ItemAward other)
+                {
+                    if (other == null)
+                    {
+                        return;
+                    }
+                    if (other.ItemId != 0)
+                    {
+                        ItemId = other.ItemId;
+                    }
+                    if (other.ItemCount != 0)
+                    {
+                        ItemCount = other.ItemCount;
+                    }
+                }
+
+                public void MergeFrom(pb::CodedInputStream input)
+                {
+                    uint tag;
+                    while ((tag = input.ReadTag()) != 0)
+                    {
+                        switch (tag)
+                        {
+                            default:
+                                input.SkipLastField();
+                                break;
+                            case 8:
+                                {
+                                    itemId_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemId)input.ReadEnum();
+                                    break;
+                                }
+                            case 16:
+                                {
+                                    ItemCount = input.ReadInt32();
+                                    break;
+                                }
+                        }
+                    }
+                }
+
+                public override bool Equals(object other)
+                {
+                    return Equals(other as ItemAward);
+                }
+
+                public override int GetHashCode()
+                {
+                    var hash = 1;
+                    if (ItemId != 0) hash ^= ItemId.GetHashCode();
+                    if (ItemCount != 0) hash ^= ItemCount.GetHashCode();
+                    return hash;
+                }
+
+                partial void OnConstruction();
+
+                public override string ToString()
+                {
+                    return pb::JsonFormatter.ToDiagnosticString(this);
+                }
+            }
+        }
+
+        #endregion
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortDetailsRequest : pb::IMessage<FortDetailsRequest>
+    {
+        /// <summary>Field number for the "fort_id" field.</summary>
+        public const int FortIdFieldNumber = 1;
+
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 2;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 3;
+
+        private static readonly pb::MessageParser<FortDetailsRequest> _parser =
+            new pb::MessageParser<FortDetailsRequest>(() => new FortDetailsRequest());
+
+        private string fortId_ = "";
+        private double latitude_;
+        private double longitude_;
+
+        public FortDetailsRequest()
+        {
+            OnConstruction();
+        }
+
+        public FortDetailsRequest(FortDetailsRequest other) : this()
+        {
+            fortId_ = other.fortId_;
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+        }
+
+        public static pb::MessageParser<FortDetailsRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[53]; }
+        }
+
+        public string FortId
+        {
+            get { return fortId_; }
+            set { fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public double Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public double Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortDetailsRequest Clone()
+        {
+            return new FortDetailsRequest(this);
+        }
+
+        public bool Equals(FortDetailsRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (FortId != other.FortId) return false;
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (FortId.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(FortId);
+            }
+            if (Latitude != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(Latitude);
+            }
+            if (Longitude != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(Longitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (FortId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
+            }
+            if (Latitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Longitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortDetailsRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.FortId.Length != 0)
+            {
+                FortId = other.FortId;
+            }
+            if (other.Latitude != 0D)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0D)
+            {
+                Longitude = other.Longitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            FortId = input.ReadString();
+                            break;
+                        }
+                    case 17:
+                        {
+                            Latitude = input.ReadDouble();
+                            break;
+                        }
+                    case 25:
+                        {
+                            Longitude = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortDetailsRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
+            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortDetailsResponse : pb::IMessage<FortDetailsResponse>
+    {
+        /// <summary>Field number for the "fort_id" field.</summary>
+        public const int FortIdFieldNumber = 1;
+
+        /// <summary>Field number for the "team_color" field.</summary>
+        public const int TeamColorFieldNumber = 2;
+
+        /// <summary>Field number for the "pokemon_data" field.</summary>
+        public const int PokemonDataFieldNumber = 3;
+
+        /// <summary>Field number for the "name" field.</summary>
+        public const int NameFieldNumber = 4;
+
+        /// <summary>Field number for the "image_urls" field.</summary>
+        public const int ImageUrlsFieldNumber = 5;
+
+        /// <summary>Field number for the "fp" field.</summary>
+        public const int FpFieldNumber = 6;
+
+        /// <summary>Field number for the "stamina" field.</summary>
+        public const int StaminaFieldNumber = 7;
+
+        /// <summary>Field number for the "max_stamina" field.</summary>
+        public const int MaxStaminaFieldNumber = 8;
+
+        /// <summary>Field number for the "type" field.</summary>
+        public const int TypeFieldNumber = 9;
+
+        /// <summary>Field number for the "latitude" field.</summary>
+        public const int LatitudeFieldNumber = 10;
+
+        /// <summary>Field number for the "longitude" field.</summary>
+        public const int LongitudeFieldNumber = 11;
+
+        /// <summary>Field number for the "description" field.</summary>
+        public const int DescriptionFieldNumber = 12;
+
+        /// <summary>Field number for the "modifiers" field.</summary>
+        public const int ModifiersFieldNumber = 13;
+
+        private static readonly pb::MessageParser<FortDetailsResponse> _parser =
+            new pb::MessageParser<FortDetailsResponse>(() => new FortDetailsResponse());
+
+        private static readonly pb::FieldCodec<string> _repeated_imageUrls_codec
+            = pb::FieldCodec.ForString(42);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.FortModifier>
+            _repeated_modifiers_codec
+                = pb::FieldCodec.ForMessage(106, global::PokemonGo.RocketAPI.GeneratedCode.FortModifier.Parser);
+
+        private readonly pbc::RepeatedField<string> imageUrls_ = new pbc::RepeatedField<string>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortModifier> modifiers_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortModifier>();
+
+        private string description_ = "";
+        private string fortId_ = "";
+        private int fp_;
+        private double latitude_;
+        private double longitude_;
+        private int maxStamina_;
+        private string name_ = "";
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemonData_;
+        private int stamina_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.TeamColor teamColor_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.FortType type_ = 0;
+
+        public FortDetailsResponse()
+        {
+            OnConstruction();
+        }
+
+        public FortDetailsResponse(FortDetailsResponse other) : this()
+        {
+            fortId_ = other.fortId_;
+            teamColor_ = other.teamColor_;
+            PokemonData = other.pokemonData_ != null ? other.PokemonData.Clone() : null;
+            name_ = other.name_;
+            imageUrls_ = other.imageUrls_.Clone();
+            fp_ = other.fp_;
+            stamina_ = other.stamina_;
+            maxStamina_ = other.maxStamina_;
+            type_ = other.type_;
+            latitude_ = other.latitude_;
+            longitude_ = other.longitude_;
+            description_ = other.description_;
+            modifiers_ = other.modifiers_.Clone();
+        }
+
+        public static pb::MessageParser<FortDetailsResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[54]; }
+        }
+
+        public string FortId
+        {
+            get { return fortId_; }
+            set { fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.TeamColor TeamColor
+        {
+            get { return teamColor_; }
+            set { teamColor_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData PokemonData
+        {
+            get { return pokemonData_; }
+            set { pokemonData_ = value; }
+        }
+
+        public string Name
+        {
+            get { return name_; }
+            set { name_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public pbc::RepeatedField<string> ImageUrls
+        {
+            get { return imageUrls_; }
+        }
+
+        public int Fp
+        {
+            get { return fp_; }
+            set { fp_ = value; }
+        }
+
+        public int Stamina
+        {
+            get { return stamina_; }
+            set { stamina_ = value; }
+        }
+
+        public int MaxStamina
+        {
+            get { return maxStamina_; }
+            set { maxStamina_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FortType Type
+        {
+            get { return type_; }
+            set { type_ = value; }
+        }
+
+        public double Latitude
+        {
+            get { return latitude_; }
+            set { latitude_ = value; }
+        }
+
+        public double Longitude
+        {
+            get { return longitude_; }
+            set { longitude_ = value; }
+        }
+
+        public string Description
+        {
+            get { return description_; }
+            set { description_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.FortModifier> Modifiers
+        {
+            get { return modifiers_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortDetailsResponse Clone()
+        {
+            return new FortDetailsResponse(this);
+        }
+
+        public bool Equals(FortDetailsResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (FortId != other.FortId) return false;
+            if (TeamColor != other.TeamColor) return false;
+            if (!Equals(PokemonData, other.PokemonData)) return false;
+            if (Name != other.Name) return false;
+            if (!imageUrls_.Equals(other.imageUrls_)) return false;
+            if (Fp != other.Fp) return false;
+            if (Stamina != other.Stamina) return false;
+            if (MaxStamina != other.MaxStamina) return false;
+            if (Type != other.Type) return false;
+            if (Latitude != other.Latitude) return false;
+            if (Longitude != other.Longitude) return false;
+            if (Description != other.Description) return false;
+            if (!modifiers_.Equals(other.modifiers_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (FortId.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(FortId);
+            }
+            if (TeamColor != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)TeamColor);
+            }
+            if (pokemonData_ != null)
+            {
+                output.WriteRawTag(26);
+                output.WriteMessage(PokemonData);
+            }
+            if (Name.Length != 0)
+            {
+                output.WriteRawTag(34);
+                output.WriteString(Name);
+            }
+            imageUrls_.WriteTo(output, _repeated_imageUrls_codec);
+            if (Fp != 0)
+            {
+                output.WriteRawTag(48);
+                output.WriteInt32(Fp);
+            }
+            if (Stamina != 0)
+            {
+                output.WriteRawTag(56);
+                output.WriteInt32(Stamina);
+            }
+            if (MaxStamina != 0)
+            {
+                output.WriteRawTag(64);
+                output.WriteInt32(MaxStamina);
+            }
+            if (Type != 0)
+            {
+                output.WriteRawTag(72);
+                output.WriteEnum((int)Type);
+            }
+            if (Latitude != 0D)
+            {
+                output.WriteRawTag(81);
+                output.WriteDouble(Latitude);
+            }
+            if (Longitude != 0D)
+            {
+                output.WriteRawTag(89);
+                output.WriteDouble(Longitude);
+            }
+            if (Description.Length != 0)
+            {
+                output.WriteRawTag(98);
+                output.WriteString(Description);
+            }
+            modifiers_.WriteTo(output, _repeated_modifiers_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (FortId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
+            }
+            if (TeamColor != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)TeamColor);
+            }
+            if (pokemonData_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonData);
+            }
+            if (Name.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Name);
+            }
+            size += imageUrls_.CalculateSize(_repeated_imageUrls_codec);
+            if (Fp != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Fp);
+            }
+            if (Stamina != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Stamina);
+            }
+            if (MaxStamina != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxStamina);
+            }
+            if (Type != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Type);
+            }
+            if (Latitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Longitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (Description.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Description);
+            }
+            size += modifiers_.CalculateSize(_repeated_modifiers_codec);
+            return size;
+        }
+
+        public void MergeFrom(FortDetailsResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.FortId.Length != 0)
+            {
+                FortId = other.FortId;
+            }
+            if (other.TeamColor != 0)
+            {
+                TeamColor = other.TeamColor;
+            }
+            if (other.pokemonData_ != null)
+            {
+                if (pokemonData_ == null)
+                {
+                    pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                }
+                PokemonData.MergeFrom(other.PokemonData);
+            }
+            if (other.Name.Length != 0)
+            {
+                Name = other.Name;
+            }
+            imageUrls_.Add(other.imageUrls_);
+            if (other.Fp != 0)
+            {
+                Fp = other.Fp;
+            }
+            if (other.Stamina != 0)
+            {
+                Stamina = other.Stamina;
+            }
+            if (other.MaxStamina != 0)
+            {
+                MaxStamina = other.MaxStamina;
+            }
+            if (other.Type != 0)
+            {
+                Type = other.Type;
+            }
+            if (other.Latitude != 0D)
+            {
+                Latitude = other.Latitude;
+            }
+            if (other.Longitude != 0D)
+            {
+                Longitude = other.Longitude;
+            }
+            if (other.Description.Length != 0)
+            {
+                Description = other.Description;
+            }
+            modifiers_.Add(other.modifiers_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            FortId = input.ReadString();
+                            break;
+                        }
+                    case 16:
+                        {
+                            teamColor_ = (global::PokemonGo.RocketAPI.GeneratedCode.TeamColor)input.ReadEnum();
+                            break;
+                        }
+                    case 26:
+                        {
+                            if (pokemonData_ == null)
+                            {
+                                pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                            }
+                            input.ReadMessage(pokemonData_);
+                            break;
+                        }
+                    case 34:
+                        {
+                            Name = input.ReadString();
+                            break;
+                        }
+                    case 42:
+                        {
+                            imageUrls_.AddEntriesFrom(input, _repeated_imageUrls_codec);
+                            break;
+                        }
+                    case 48:
+                        {
+                            Fp = input.ReadInt32();
+                            break;
+                        }
+                    case 56:
+                        {
+                            Stamina = input.ReadInt32();
+                            break;
+                        }
+                    case 64:
+                        {
+                            MaxStamina = input.ReadInt32();
+                            break;
+                        }
+                    case 72:
+                        {
+                            type_ = (global::PokemonGo.RocketAPI.GeneratedCode.FortType)input.ReadEnum();
+                            break;
+                        }
+                    case 81:
+                        {
+                            Latitude = input.ReadDouble();
+                            break;
+                        }
+                    case 89:
+                        {
+                            Longitude = input.ReadDouble();
+                            break;
+                        }
+                    case 98:
+                        {
+                            Description = input.ReadString();
+                            break;
+                        }
+                    case 106:
+                        {
+                            modifiers_.AddEntriesFrom(input, _repeated_modifiers_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortDetailsResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
+            if (TeamColor != 0) hash ^= TeamColor.GetHashCode();
+            if (pokemonData_ != null) hash ^= PokemonData.GetHashCode();
+            if (Name.Length != 0) hash ^= Name.GetHashCode();
+            hash ^= imageUrls_.GetHashCode();
+            if (Fp != 0) hash ^= Fp.GetHashCode();
+            if (Stamina != 0) hash ^= Stamina.GetHashCode();
+            if (MaxStamina != 0) hash ^= MaxStamina.GetHashCode();
+            if (Type != 0) hash ^= Type.GetHashCode();
+            if (Latitude != 0D) hash ^= Latitude.GetHashCode();
+            if (Longitude != 0D) hash ^= Longitude.GetHashCode();
+            if (Description.Length != 0) hash ^= Description.GetHashCode();
+            hash ^= modifiers_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortModifier : pb::IMessage<FortModifier>
+    {
+        /// <summary>Field number for the "item_id" field.</summary>
+        public const int ItemIdFieldNumber = 1;
+
+        /// <summary>Field number for the "expiration_timestamp_ms" field.</summary>
+        public const int ExpirationTimestampMsFieldNumber = 2;
+
+        /// <summary>Field number for the "deployer_player_codename" field.</summary>
+        public const int DeployerPlayerCodenameFieldNumber = 3;
+
+        private static readonly pb::MessageParser<FortModifier> _parser =
+            new pb::MessageParser<FortModifier>(() => new FortModifier());
+
+        private string deployerPlayerCodename_ = "";
+        private long expirationTimestampMs_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemId itemId_ = 0;
+
+        public FortModifier()
+        {
+            OnConstruction();
+        }
+
+        public FortModifier(FortModifier other) : this()
+        {
+            itemId_ = other.itemId_;
+            expirationTimestampMs_ = other.expirationTimestampMs_;
+            deployerPlayerCodename_ = other.deployerPlayerCodename_;
+        }
+
+        public static pb::MessageParser<FortModifier> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[55]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemId ItemId
+        {
+            get { return itemId_; }
+            set { itemId_ = value; }
+        }
+
+        public long ExpirationTimestampMs
+        {
+            get { return expirationTimestampMs_; }
+            set { expirationTimestampMs_ = value; }
+        }
+
+        public string DeployerPlayerCodename
+        {
+            get { return deployerPlayerCodename_; }
+            set { deployerPlayerCodename_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortModifier Clone()
+        {
+            return new FortModifier(this);
+        }
+
+        public bool Equals(FortModifier other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ItemId != other.ItemId) return false;
+            if (ExpirationTimestampMs != other.ExpirationTimestampMs) return false;
+            if (DeployerPlayerCodename != other.DeployerPlayerCodename) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ItemId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)ItemId);
+            }
+            if (ExpirationTimestampMs != 0L)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt64(ExpirationTimestampMs);
+            }
+            if (DeployerPlayerCodename.Length != 0)
+            {
+                output.WriteRawTag(26);
+                output.WriteString(DeployerPlayerCodename);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ItemId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
+            }
+            if (ExpirationTimestampMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(ExpirationTimestampMs);
+            }
+            if (DeployerPlayerCodename.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(DeployerPlayerCodename);
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortModifier other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ItemId != 0)
+            {
+                ItemId = other.ItemId;
+            }
+            if (other.ExpirationTimestampMs != 0L)
+            {
+                ExpirationTimestampMs = other.ExpirationTimestampMs;
+            }
+            if (other.DeployerPlayerCodename.Length != 0)
+            {
+                DeployerPlayerCodename = other.DeployerPlayerCodename;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            itemId_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemId)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            ExpirationTimestampMs = input.ReadInt64();
+                            break;
+                        }
+                    case 26:
+                        {
+                            DeployerPlayerCodename = input.ReadString();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortModifier);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ItemId != 0) hash ^= ItemId.GetHashCode();
+            if (ExpirationTimestampMs != 0L) hash ^= ExpirationTimestampMs.GetHashCode();
+            if (DeployerPlayerCodename.Length != 0) hash ^= DeployerPlayerCodename.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EncounterRequest : pb::IMessage<EncounterRequest>
+    {
+        /// <summary>Field number for the "encounter_id" field.</summary>
+        public const int EncounterIdFieldNumber = 1;
+
+        /// <summary>Field number for the "spawnpoint_id" field.</summary>
+        public const int SpawnpointIdFieldNumber = 2;
+
+        /// <summary>Field number for the "player_latitude" field.</summary>
+        public const int PlayerLatitudeFieldNumber = 3;
+
+        /// <summary>Field number for the "player_longitude" field.</summary>
+        public const int PlayerLongitudeFieldNumber = 4;
+
+        private static readonly pb::MessageParser<EncounterRequest> _parser =
+            new pb::MessageParser<EncounterRequest>(() => new EncounterRequest());
+
+        private ulong encounterId_;
+        private double playerLatitude_;
+        private double playerLongitude_;
+        private string spawnpointId_ = "";
+
+        public EncounterRequest()
+        {
+            OnConstruction();
+        }
+
+        public EncounterRequest(EncounterRequest other) : this()
+        {
+            encounterId_ = other.encounterId_;
+            spawnpointId_ = other.spawnpointId_;
+            playerLatitude_ = other.playerLatitude_;
+            playerLongitude_ = other.playerLongitude_;
+        }
+
+        public static pb::MessageParser<EncounterRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[56]; }
+        }
+
+        public ulong EncounterId
+        {
+            get { return encounterId_; }
+            set { encounterId_ = value; }
+        }
+
+        public string SpawnpointId
+        {
+            get { return spawnpointId_; }
+            set { spawnpointId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public double PlayerLatitude
+        {
+            get { return playerLatitude_; }
+            set { playerLatitude_ = value; }
+        }
+
+        public double PlayerLongitude
+        {
+            get { return playerLongitude_; }
+            set { playerLongitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EncounterRequest Clone()
+        {
+            return new EncounterRequest(this);
+        }
+
+        public bool Equals(EncounterRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (EncounterId != other.EncounterId) return false;
+            if (SpawnpointId != other.SpawnpointId) return false;
+            if (PlayerLatitude != other.PlayerLatitude) return false;
+            if (PlayerLongitude != other.PlayerLongitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (EncounterId != 0UL)
+            {
+                output.WriteRawTag(9);
+                output.WriteFixed64(EncounterId);
+            }
+            if (SpawnpointId.Length != 0)
+            {
+                output.WriteRawTag(18);
+                output.WriteString(SpawnpointId);
+            }
+            if (PlayerLatitude != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(PlayerLatitude);
+            }
+            if (PlayerLongitude != 0D)
+            {
+                output.WriteRawTag(33);
+                output.WriteDouble(PlayerLongitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (EncounterId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            if (SpawnpointId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnpointId);
+            }
+            if (PlayerLatitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (PlayerLongitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(EncounterRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.EncounterId != 0UL)
+            {
+                EncounterId = other.EncounterId;
+            }
+            if (other.SpawnpointId.Length != 0)
+            {
+                SpawnpointId = other.SpawnpointId;
+            }
+            if (other.PlayerLatitude != 0D)
+            {
+                PlayerLatitude = other.PlayerLatitude;
+            }
+            if (other.PlayerLongitude != 0D)
+            {
+                PlayerLongitude = other.PlayerLongitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            EncounterId = input.ReadFixed64();
+                            break;
+                        }
+                    case 18:
+                        {
+                            SpawnpointId = input.ReadString();
+                            break;
+                        }
+                    case 25:
+                        {
+                            PlayerLatitude = input.ReadDouble();
+                            break;
+                        }
+                    case 33:
+                        {
+                            PlayerLongitude = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EncounterRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
+            if (SpawnpointId.Length != 0) hash ^= SpawnpointId.GetHashCode();
+            if (PlayerLatitude != 0D) hash ^= PlayerLatitude.GetHashCode();
+            if (PlayerLongitude != 0D) hash ^= PlayerLongitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EncounterResponse : pb::IMessage<EncounterResponse>
+    {
+        /// <summary>Field number for the "wild_pokemon" field.</summary>
+        public const int WildPokemonFieldNumber = 1;
+
+        /// <summary>Field number for the "background" field.</summary>
+        public const int BackgroundFieldNumber = 2;
+
+        /// <summary>Field number for the "status" field.</summary>
+        public const int StatusFieldNumber = 3;
+
+        /// <summary>Field number for the "capture_probability" field.</summary>
+        public const int CaptureProbabilityFieldNumber = 4;
+
+        private static readonly pb::MessageParser<EncounterResponse> _parser =
+            new pb::MessageParser<EncounterResponse>(() => new EncounterResponse());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Background background_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability captureProbability_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Status status_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon wildPokemon_;
+
+        public EncounterResponse()
+        {
+            OnConstruction();
+        }
+
+        public EncounterResponse(EncounterResponse other) : this()
+        {
+            WildPokemon = other.wildPokemon_ != null ? other.WildPokemon.Clone() : null;
+            background_ = other.background_;
+            status_ = other.status_;
+            CaptureProbability = other.captureProbability_ != null ? other.CaptureProbability.Clone() : null;
+        }
+
+        public static pb::MessageParser<EncounterResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[57]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon WildPokemon
+        {
+            get { return wildPokemon_; }
+            set { wildPokemon_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Background Background
+        {
+            get { return background_; }
+            set { background_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Status Status
+        {
+            get { return status_; }
+            set { status_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability CaptureProbability
+        {
+            get { return captureProbability_; }
+            set { captureProbability_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EncounterResponse Clone()
+        {
+            return new EncounterResponse(this);
+        }
+
+        public bool Equals(EncounterResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!Equals(WildPokemon, other.WildPokemon)) return false;
+            if (Background != other.Background) return false;
+            if (Status != other.Status) return false;
+            if (!Equals(CaptureProbability, other.CaptureProbability)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (wildPokemon_ != null)
+            {
+                output.WriteRawTag(10);
+                output.WriteMessage(WildPokemon);
+            }
+            if (Background != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)Background);
+            }
+            if (Status != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteEnum((int)Status);
+            }
+            if (captureProbability_ != null)
+            {
+                output.WriteRawTag(34);
+                output.WriteMessage(CaptureProbability);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (wildPokemon_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(WildPokemon);
+            }
+            if (Background != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Background);
+            }
+            if (Status != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Status);
+            }
+            if (captureProbability_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(CaptureProbability);
+            }
+            return size;
+        }
+
+        public void MergeFrom(EncounterResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.wildPokemon_ != null)
+            {
+                if (wildPokemon_ == null)
+                {
+                    wildPokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon();
+                }
+                WildPokemon.MergeFrom(other.WildPokemon);
+            }
+            if (other.Background != 0)
+            {
+                Background = other.Background;
+            }
+            if (other.Status != 0)
+            {
+                Status = other.Status;
+            }
+            if (other.captureProbability_ != null)
+            {
+                if (captureProbability_ == null)
+                {
+                    captureProbability_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability();
+                }
+                CaptureProbability.MergeFrom(other.CaptureProbability);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            if (wildPokemon_ == null)
+                            {
+                                wildPokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.WildPokemon();
+                            }
+                            input.ReadMessage(wildPokemon_);
+                            break;
+                        }
+                    case 16:
+                        {
+                            background_ =
+                                (global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Background)
+                                    input.ReadEnum();
+                            break;
+                        }
+                    case 24:
+                        {
+                            status_ =
+                                (global::PokemonGo.RocketAPI.GeneratedCode.EncounterResponse.Types.Status)input.ReadEnum();
+                            break;
+                        }
+                    case 34:
+                        {
+                            if (captureProbability_ == null)
+                            {
+                                captureProbability_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability();
+                            }
+                            input.ReadMessage(captureProbability_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EncounterResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (wildPokemon_ != null) hash ^= WildPokemon.GetHashCode();
+            if (Background != 0) hash ^= Background.GetHashCode();
+            if (Status != 0) hash ^= Status.GetHashCode();
+            if (captureProbability_ != null) hash ^= CaptureProbability.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+
+        #region Nested types
+
+        /// <summary>Container for nested types declared in the EncounterResponse message type.</summary>
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        public static partial class Types
+        {
+            public enum Background
+            {
+                [pbr::OriginalName("PARK")]
+                Park = 0,
+                [pbr::OriginalName("DESERT")]
+                Desert = 1,
+            }
+
+            public enum Status
+            {
+                [pbr::OriginalName("ENCOUNTER_ERROR")]
+                EncounterError = 0,
+                [pbr::OriginalName("ENCOUNTER_SUCCESS")]
+                EncounterSuccess = 1,
+                [pbr::OriginalName("ENCOUNTER_NOT_FOUND")]
+                EncounterNotFound = 2,
+                [pbr::OriginalName("ENCOUNTER_CLOSED")]
+                EncounterClosed = 3,
+                [pbr::OriginalName("ENCOUNTER_POKEMON_FLED")]
+                EncounterPokemonFled = 4,
+                [pbr::OriginalName("ENCOUNTER_NOT_IN_RANGE")]
+                EncounterNotInRange = 5,
+                [pbr::OriginalName("ENCOUNTER_ALREADY_HAPPENED")]
+                EncounterAlreadyHappened = 6,
+                [pbr::OriginalName("POKEMON_INVENTORY_FULL")]
+                PokemonInventoryFull = 7,
+            }
+        }
+
+        #endregion
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class CaptureProbability : pb::IMessage<CaptureProbability>
+    {
+        /// <summary>Field number for the "pokeball_type" field.</summary>
+        public const int PokeballTypeFieldNumber = 1;
+
+        /// <summary>Field number for the "capture_probability" field.</summary>
+        public const int CaptureProbability_FieldNumber = 2;
+
+        /// <summary>Field number for the "reticle_difficulty_scale" field.</summary>
+        public const int ReticleDifficultyScaleFieldNumber = 12;
+
+        private static readonly pb::MessageParser<CaptureProbability> _parser =
+            new pb::MessageParser<CaptureProbability>(() => new CaptureProbability());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.ItemId>
+            _repeated_pokeballType_codec
+                = pb::FieldCodec.ForEnum(10, x => (int)x, x => (global::PokemonGo.RocketAPI.GeneratedCode.ItemId)x);
+
+        private static readonly pb::FieldCodec<float> _repeated_captureProbability_codec
+            = pb::FieldCodec.ForFloat(18);
+
+        private readonly pbc::RepeatedField<float> captureProbability_ = new pbc::RepeatedField<float>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemId> pokeballType_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemId>();
+
+        private double reticleDifficultyScale_;
+
+        public CaptureProbability()
+        {
+            OnConstruction();
+        }
+
+        public CaptureProbability(CaptureProbability other) : this()
+        {
+            pokeballType_ = other.pokeballType_.Clone();
+            captureProbability_ = other.captureProbability_.Clone();
+            reticleDifficultyScale_ = other.reticleDifficultyScale_;
+        }
+
+        public static pb::MessageParser<CaptureProbability> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[58]; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemId> PokeballType
+        {
+            get { return pokeballType_; }
+        }
+
+        public pbc::RepeatedField<float> CaptureProbability_
+        {
+            get { return captureProbability_; }
+        }
+
+        public double ReticleDifficultyScale
+        {
+            get { return reticleDifficultyScale_; }
+            set { reticleDifficultyScale_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public CaptureProbability Clone()
+        {
+            return new CaptureProbability(this);
+        }
+
+        public bool Equals(CaptureProbability other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!pokeballType_.Equals(other.pokeballType_)) return false;
+            if (!captureProbability_.Equals(other.captureProbability_)) return false;
+            if (ReticleDifficultyScale != other.ReticleDifficultyScale) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            pokeballType_.WriteTo(output, _repeated_pokeballType_codec);
+            captureProbability_.WriteTo(output, _repeated_captureProbability_codec);
+            if (ReticleDifficultyScale != 0D)
+            {
+                output.WriteRawTag(97);
+                output.WriteDouble(ReticleDifficultyScale);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += pokeballType_.CalculateSize(_repeated_pokeballType_codec);
+            size += captureProbability_.CalculateSize(_repeated_captureProbability_codec);
+            if (ReticleDifficultyScale != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(CaptureProbability other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            pokeballType_.Add(other.pokeballType_);
+            captureProbability_.Add(other.captureProbability_);
+            if (other.ReticleDifficultyScale != 0D)
+            {
+                ReticleDifficultyScale = other.ReticleDifficultyScale;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                    case 8:
+                        {
+                            pokeballType_.AddEntriesFrom(input, _repeated_pokeballType_codec);
+                            break;
+                        }
+                    case 18:
+                    case 21:
+                        {
+                            captureProbability_.AddEntriesFrom(input, _repeated_captureProbability_codec);
+                            break;
+                        }
+                    case 97:
+                        {
+                            ReticleDifficultyScale = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as CaptureProbability);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= pokeballType_.GetHashCode();
+            hash ^= captureProbability_.GetHashCode();
+            if (ReticleDifficultyScale != 0D) hash ^= ReticleDifficultyScale.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class DiskEncounterRequest : pb::IMessage<DiskEncounterRequest>
+    {
+        /// <summary>Field number for the "encounter_id" field.</summary>
+        public const int EncounterIdFieldNumber = 1;
+
+        /// <summary>Field number for the "fort_id" field.</summary>
+        public const int FortIdFieldNumber = 2;
+
+        /// <summary>Field number for the "player_latitude" field.</summary>
+        public const int PlayerLatitudeFieldNumber = 3;
+
+        /// <summary>Field number for the "player_longitude" field.</summary>
+        public const int PlayerLongitudeFieldNumber = 4;
+
+        private static readonly pb::MessageParser<DiskEncounterRequest> _parser =
+            new pb::MessageParser<DiskEncounterRequest>(() => new DiskEncounterRequest());
+
+        private ulong encounterId_;
+        private string fortId_ = "";
+        private double playerLatitude_;
+        private double playerLongitude_;
+
+        public DiskEncounterRequest()
+        {
+            OnConstruction();
+        }
+
+        public DiskEncounterRequest(DiskEncounterRequest other) : this()
+        {
+            encounterId_ = other.encounterId_;
+            fortId_ = other.fortId_;
+            playerLatitude_ = other.playerLatitude_;
+            playerLongitude_ = other.playerLongitude_;
+        }
+
+        public static pb::MessageParser<DiskEncounterRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[59]; }
+        }
+
+        public ulong EncounterId
+        {
+            get { return encounterId_; }
+            set { encounterId_ = value; }
+        }
+
+        public string FortId
+        {
+            get { return fortId_; }
+            set { fortId_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public double PlayerLatitude
+        {
+            get { return playerLatitude_; }
+            set { playerLatitude_ = value; }
+        }
+
+        public double PlayerLongitude
+        {
+            get { return playerLongitude_; }
+            set { playerLongitude_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public DiskEncounterRequest Clone()
+        {
+            return new DiskEncounterRequest(this);
+        }
+
+        public bool Equals(DiskEncounterRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (EncounterId != other.EncounterId) return false;
+            if (FortId != other.FortId) return false;
+            if (PlayerLatitude != other.PlayerLatitude) return false;
+            if (PlayerLongitude != other.PlayerLongitude) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (EncounterId != 0UL)
+            {
+                output.WriteRawTag(9);
+                output.WriteFixed64(EncounterId);
+            }
+            if (FortId.Length != 0)
+            {
+                output.WriteRawTag(18);
+                output.WriteString(FortId);
+            }
+            if (PlayerLatitude != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(PlayerLatitude);
+            }
+            if (PlayerLongitude != 0D)
+            {
+                output.WriteRawTag(33);
+                output.WriteDouble(PlayerLongitude);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (EncounterId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            if (FortId.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(FortId);
+            }
+            if (PlayerLatitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (PlayerLongitude != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(DiskEncounterRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.EncounterId != 0UL)
+            {
+                EncounterId = other.EncounterId;
+            }
+            if (other.FortId.Length != 0)
+            {
+                FortId = other.FortId;
+            }
+            if (other.PlayerLatitude != 0D)
+            {
+                PlayerLatitude = other.PlayerLatitude;
+            }
+            if (other.PlayerLongitude != 0D)
+            {
+                PlayerLongitude = other.PlayerLongitude;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            EncounterId = input.ReadFixed64();
+                            break;
+                        }
+                    case 18:
+                        {
+                            FortId = input.ReadString();
+                            break;
+                        }
+                    case 25:
+                        {
+                            PlayerLatitude = input.ReadDouble();
+                            break;
+                        }
+                    case 33:
+                        {
+                            PlayerLongitude = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as DiskEncounterRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
+            if (FortId.Length != 0) hash ^= FortId.GetHashCode();
+            if (PlayerLatitude != 0D) hash ^= PlayerLatitude.GetHashCode();
+            if (PlayerLongitude != 0D) hash ^= PlayerLongitude.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class DiskEncounterResponse : pb::IMessage<DiskEncounterResponse>
+    {
+        /// <summary>Field number for the "result" field.</summary>
+        public const int ResultFieldNumber = 1;
+
+        /// <summary>Field number for the "pokemon_data" field.</summary>
+        public const int PokemonDataFieldNumber = 2;
+
+        /// <summary>Field number for the "capture_probability" field.</summary>
+        public const int CaptureProbabilityFieldNumber = 3;
+
+        private static readonly pb::MessageParser<DiskEncounterResponse> _parser =
+            new pb::MessageParser<DiskEncounterResponse>(() => new DiskEncounterResponse());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability captureProbability_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonData pokemonData_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Types.Result result_ = 0;
+
+        public DiskEncounterResponse()
+        {
+            OnConstruction();
+        }
+
+        public DiskEncounterResponse(DiskEncounterResponse other) : this()
+        {
+            result_ = other.result_;
+            PokemonData = other.pokemonData_ != null ? other.PokemonData.Clone() : null;
+            CaptureProbability = other.captureProbability_ != null ? other.CaptureProbability.Clone() : null;
+        }
+
+        public static pb::MessageParser<DiskEncounterResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[60]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Types.Result Result
+        {
+            get { return result_; }
+            set { result_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonData PokemonData
+        {
+            get { return pokemonData_; }
+            set { pokemonData_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability CaptureProbability
+        {
+            get { return captureProbability_; }
+            set { captureProbability_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public DiskEncounterResponse Clone()
+        {
+            return new DiskEncounterResponse(this);
+        }
+
+        public bool Equals(DiskEncounterResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Result != other.Result) return false;
+            if (!Equals(PokemonData, other.PokemonData)) return false;
+            if (!Equals(CaptureProbability, other.CaptureProbability)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Result != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)Result);
+            }
+            if (pokemonData_ != null)
+            {
+                output.WriteRawTag(18);
+                output.WriteMessage(PokemonData);
+            }
+            if (captureProbability_ != null)
+            {
+                output.WriteRawTag(26);
+                output.WriteMessage(CaptureProbability);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Result != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Result);
+            }
+            if (pokemonData_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(PokemonData);
+            }
+            if (captureProbability_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(CaptureProbability);
+            }
+            return size;
+        }
+
+        public void MergeFrom(DiskEncounterResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Result != 0)
+            {
+                Result = other.Result;
+            }
+            if (other.pokemonData_ != null)
+            {
+                if (pokemonData_ == null)
+                {
+                    pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                }
+                PokemonData.MergeFrom(other.PokemonData);
+            }
+            if (other.captureProbability_ != null)
+            {
+                if (captureProbability_ == null)
+                {
+                    captureProbability_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability();
+                }
+                CaptureProbability.MergeFrom(other.CaptureProbability);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            result_ =
+                                (global::PokemonGo.RocketAPI.GeneratedCode.DiskEncounterResponse.Types.Result)
+                                    input.ReadEnum();
+                            break;
+                        }
+                    case 18:
+                        {
+                            if (pokemonData_ == null)
+                            {
+                                pokemonData_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokemonData();
+                            }
+                            input.ReadMessage(pokemonData_);
+                            break;
+                        }
+                    case 26:
+                        {
+                            if (captureProbability_ == null)
+                            {
+                                captureProbability_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureProbability();
+                            }
+                            input.ReadMessage(captureProbability_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as DiskEncounterResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Result != 0) hash ^= Result.GetHashCode();
+            if (pokemonData_ != null) hash ^= PokemonData.GetHashCode();
+            if (captureProbability_ != null) hash ^= CaptureProbability.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+
+        #region Nested types
+
+        /// <summary>Container for nested types declared in the DiskEncounterResponse message type.</summary>
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        public static partial class Types
+        {
+            public enum Result
+            {
+                [pbr::OriginalName("UNKNOWN")]
+                Unknown = 0,
+                [pbr::OriginalName("SUCCESS")]
+                Success = 1,
+                [pbr::OriginalName("NOT_AVAILABLE")]
+                NotAvailable = 2,
+                [pbr::OriginalName("NOT_IN_RANGE")]
+                NotInRange = 3,
+                [pbr::OriginalName("ENCOUNTER_ALREADY_FINISHED")]
+                EncounterAlreadyFinished = 4,
+                [pbr::OriginalName("POKEMON_INVENTORY_FULL")]
+                PokemonInventoryFull = 5,
+            }
+        }
+
+        #endregion
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class CatchPokemonRequest : pb::IMessage<CatchPokemonRequest>
+    {
+        /// <summary>Field number for the "encounter_id" field.</summary>
+        public const int EncounterIdFieldNumber = 1;
+
+        /// <summary>Field number for the "pokeball" field.</summary>
+        public const int PokeballFieldNumber = 2;
+
+        /// <summary>Field number for the "normalized_reticle_size" field.</summary>
+        public const int NormalizedReticleSizeFieldNumber = 3;
+
+        /// <summary>Field number for the "spawn_point_guid" field.</summary>
+        public const int SpawnPointGuidFieldNumber = 4;
+
+        /// <summary>Field number for the "hit_pokemon" field.</summary>
+        public const int HitPokemonFieldNumber = 5;
+
+        /// <summary>Field number for the "spin_modifier" field.</summary>
+        public const int SpinModifierFieldNumber = 6;
+
+        /// <summary>Field number for the "NormalizedHitPosition" field.</summary>
+        public const int NormalizedHitPositionFieldNumber = 7;
+
+        private static readonly pb::MessageParser<CatchPokemonRequest> _parser =
+            new pb::MessageParser<CatchPokemonRequest>(() => new CatchPokemonRequest());
+
+        private ulong encounterId_;
+        private bool hitPokemon_;
+        private double normalizedHitPosition_;
+        private double normalizedReticleSize_;
+        private int pokeball_;
+        private string spawnPointGuid_ = "";
+        private double spinModifier_;
+
+        public CatchPokemonRequest()
+        {
+            OnConstruction();
+        }
+
+        public CatchPokemonRequest(CatchPokemonRequest other) : this()
+        {
+            encounterId_ = other.encounterId_;
+            pokeball_ = other.pokeball_;
+            normalizedReticleSize_ = other.normalizedReticleSize_;
+            spawnPointGuid_ = other.spawnPointGuid_;
+            hitPokemon_ = other.hitPokemon_;
+            spinModifier_ = other.spinModifier_;
+            normalizedHitPosition_ = other.normalizedHitPosition_;
+        }
+
+        public static pb::MessageParser<CatchPokemonRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[61]; }
+        }
+
+        public ulong EncounterId
+        {
+            get { return encounterId_; }
+            set { encounterId_ = value; }
+        }
+
+        public int Pokeball
+        {
+            get { return pokeball_; }
+            set { pokeball_ = value; }
+        }
+
+        public double NormalizedReticleSize
+        {
+            get { return normalizedReticleSize_; }
+            set { normalizedReticleSize_ = value; }
+        }
+
+        public string SpawnPointGuid
+        {
+            get { return spawnPointGuid_; }
+            set { spawnPointGuid_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public bool HitPokemon
+        {
+            get { return hitPokemon_; }
+            set { hitPokemon_ = value; }
+        }
+
+        public double SpinModifier
+        {
+            get { return spinModifier_; }
+            set { spinModifier_ = value; }
+        }
+
+        public double NormalizedHitPosition
+        {
+            get { return normalizedHitPosition_; }
+            set { normalizedHitPosition_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public CatchPokemonRequest Clone()
+        {
+            return new CatchPokemonRequest(this);
+        }
+
+        public bool Equals(CatchPokemonRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (EncounterId != other.EncounterId) return false;
+            if (Pokeball != other.Pokeball) return false;
+            if (NormalizedReticleSize != other.NormalizedReticleSize) return false;
+            if (SpawnPointGuid != other.SpawnPointGuid) return false;
+            if (HitPokemon != other.HitPokemon) return false;
+            if (SpinModifier != other.SpinModifier) return false;
+            if (NormalizedHitPosition != other.NormalizedHitPosition) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (EncounterId != 0UL)
+            {
+                output.WriteRawTag(9);
+                output.WriteFixed64(EncounterId);
+            }
+            if (Pokeball != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(Pokeball);
+            }
+            if (NormalizedReticleSize != 0D)
+            {
+                output.WriteRawTag(25);
+                output.WriteDouble(NormalizedReticleSize);
+            }
+            if (SpawnPointGuid.Length != 0)
+            {
+                output.WriteRawTag(34);
+                output.WriteString(SpawnPointGuid);
+            }
+            if (HitPokemon != false)
+            {
+                output.WriteRawTag(40);
+                output.WriteBool(HitPokemon);
+            }
+            if (SpinModifier != 0D)
+            {
+                output.WriteRawTag(49);
+                output.WriteDouble(SpinModifier);
+            }
+            if (NormalizedHitPosition != 0D)
+            {
+                output.WriteRawTag(57);
+                output.WriteDouble(NormalizedHitPosition);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (EncounterId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            if (Pokeball != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Pokeball);
+            }
+            if (NormalizedReticleSize != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (SpawnPointGuid.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(SpawnPointGuid);
+            }
+            if (HitPokemon != false)
+            {
+                size += 1 + 1;
+            }
+            if (SpinModifier != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (NormalizedHitPosition != 0D)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(CatchPokemonRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.EncounterId != 0UL)
+            {
+                EncounterId = other.EncounterId;
+            }
+            if (other.Pokeball != 0)
+            {
+                Pokeball = other.Pokeball;
+            }
+            if (other.NormalizedReticleSize != 0D)
+            {
+                NormalizedReticleSize = other.NormalizedReticleSize;
+            }
+            if (other.SpawnPointGuid.Length != 0)
+            {
+                SpawnPointGuid = other.SpawnPointGuid;
+            }
+            if (other.HitPokemon != false)
+            {
+                HitPokemon = other.HitPokemon;
+            }
+            if (other.SpinModifier != 0D)
+            {
+                SpinModifier = other.SpinModifier;
+            }
+            if (other.NormalizedHitPosition != 0D)
+            {
+                NormalizedHitPosition = other.NormalizedHitPosition;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            EncounterId = input.ReadFixed64();
+                            break;
+                        }
+                    case 16:
+                        {
+                            Pokeball = input.ReadInt32();
+                            break;
+                        }
+                    case 25:
+                        {
+                            NormalizedReticleSize = input.ReadDouble();
+                            break;
+                        }
+                    case 34:
+                        {
+                            SpawnPointGuid = input.ReadString();
+                            break;
+                        }
+                    case 40:
+                        {
+                            HitPokemon = input.ReadBool();
+                            break;
+                        }
+                    case 49:
+                        {
+                            SpinModifier = input.ReadDouble();
+                            break;
+                        }
+                    case 57:
+                        {
+                            NormalizedHitPosition = input.ReadDouble();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as CatchPokemonRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (EncounterId != 0UL) hash ^= EncounterId.GetHashCode();
+            if (Pokeball != 0) hash ^= Pokeball.GetHashCode();
+            if (NormalizedReticleSize != 0D) hash ^= NormalizedReticleSize.GetHashCode();
+            if (SpawnPointGuid.Length != 0) hash ^= SpawnPointGuid.GetHashCode();
+            if (HitPokemon != false) hash ^= HitPokemon.GetHashCode();
+            if (SpinModifier != 0D) hash ^= SpinModifier.GetHashCode();
+            if (NormalizedHitPosition != 0D) hash ^= NormalizedHitPosition.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class CatchPokemonResponse : pb::IMessage<CatchPokemonResponse>
+    {
+        /// <summary>Field number for the "status" field.</summary>
+        public const int StatusFieldNumber = 1;
+
+        /// <summary>Field number for the "miss_percent" field.</summary>
+        public const int MissPercentFieldNumber = 2;
+
+        /// <summary>Field number for the "captured_pokemon_id" field.</summary>
+        public const int CapturedPokemonIdFieldNumber = 3;
+
+        /// <summary>Field number for the "scores" field.</summary>
+        public const int ScoresFieldNumber = 4;
+
+        private static readonly pb::MessageParser<CatchPokemonResponse> _parser =
+            new pb::MessageParser<CatchPokemonResponse>(() => new CatchPokemonResponse());
+
+        private ulong capturedPokemonId_;
+        private double missPercent_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore scores_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Types.CatchStatus status_ = 0;
+
+        public CatchPokemonResponse()
+        {
+            OnConstruction();
+        }
+
+        public CatchPokemonResponse(CatchPokemonResponse other) : this()
+        {
+            status_ = other.status_;
+            missPercent_ = other.missPercent_;
+            capturedPokemonId_ = other.capturedPokemonId_;
+            Scores = other.scores_ != null ? other.Scores.Clone() : null;
+        }
+
+        public static pb::MessageParser<CatchPokemonResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[62]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Types.CatchStatus Status
+        {
+            get { return status_; }
+            set { status_ = value; }
+        }
+
+        public double MissPercent
+        {
+            get { return missPercent_; }
+            set { missPercent_ = value; }
+        }
+
+        public ulong CapturedPokemonId
+        {
+            get { return capturedPokemonId_; }
+            set { capturedPokemonId_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore Scores
+        {
+            get { return scores_; }
+            set { scores_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public CatchPokemonResponse Clone()
+        {
+            return new CatchPokemonResponse(this);
+        }
+
+        public bool Equals(CatchPokemonResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Status != other.Status) return false;
+            if (MissPercent != other.MissPercent) return false;
+            if (CapturedPokemonId != other.CapturedPokemonId) return false;
+            if (!Equals(Scores, other.Scores)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Status != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)Status);
+            }
+            if (MissPercent != 0D)
+            {
+                output.WriteRawTag(17);
+                output.WriteDouble(MissPercent);
+            }
+            if (CapturedPokemonId != 0UL)
+            {
+                output.WriteRawTag(24);
+                output.WriteUInt64(CapturedPokemonId);
+            }
+            if (scores_ != null)
+            {
+                output.WriteRawTag(34);
+                output.WriteMessage(Scores);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Status != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Status);
+            }
+            if (MissPercent != 0D)
+            {
+                size += 1 + 8;
+            }
+            if (CapturedPokemonId != 0UL)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeUInt64Size(CapturedPokemonId);
+            }
+            if (scores_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Scores);
+            }
+            return size;
+        }
+
+        public void MergeFrom(CatchPokemonResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Status != 0)
+            {
+                Status = other.Status;
+            }
+            if (other.MissPercent != 0D)
+            {
+                MissPercent = other.MissPercent;
+            }
+            if (other.CapturedPokemonId != 0UL)
+            {
+                CapturedPokemonId = other.CapturedPokemonId;
+            }
+            if (other.scores_ != null)
+            {
+                if (scores_ == null)
+                {
+                    scores_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore();
+                }
+                Scores.MergeFrom(other.Scores);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            status_ =
+                                (global::PokemonGo.RocketAPI.GeneratedCode.CatchPokemonResponse.Types.CatchStatus)
+                                    input.ReadEnum();
+                            break;
+                        }
+                    case 17:
+                        {
+                            MissPercent = input.ReadDouble();
+                            break;
+                        }
+                    case 24:
+                        {
+                            CapturedPokemonId = input.ReadUInt64();
+                            break;
+                        }
+                    case 34:
+                        {
+                            if (scores_ == null)
+                            {
+                                scores_ = new global::PokemonGo.RocketAPI.GeneratedCode.CaptureScore();
+                            }
+                            input.ReadMessage(scores_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as CatchPokemonResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Status != 0) hash ^= Status.GetHashCode();
+            if (MissPercent != 0D) hash ^= MissPercent.GetHashCode();
+            if (CapturedPokemonId != 0UL) hash ^= CapturedPokemonId.GetHashCode();
+            if (scores_ != null) hash ^= Scores.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+
+        #region Nested types
+
+        /// <summary>Container for nested types declared in the CatchPokemonResponse message type.</summary>
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        public static partial class Types
+        {
+            public enum CatchStatus
+            {
+                [pbr::OriginalName("CATCH_ERROR")]
+                CatchError = 0,
+                [pbr::OriginalName("CATCH_SUCCESS")]
+                CatchSuccess = 1,
+                [pbr::OriginalName("CATCH_ESCAPE")]
+                CatchEscape = 2,
+                [pbr::OriginalName("CATCH_FLEE")]
+                CatchFlee = 3,
+                [pbr::OriginalName("CATCH_MISSED")]
+                CatchMissed = 4,
+            }
+        }
+
+        #endregion
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class CaptureScore : pb::IMessage<CaptureScore>
+    {
+        /// <summary>Field number for the "activity_type" field.</summary>
+        public const int ActivityTypeFieldNumber = 1;
+
+        /// <summary>Field number for the "xp" field.</summary>
+        public const int XpFieldNumber = 2;
+
+        /// <summary>Field number for the "candy" field.</summary>
+        public const int CandyFieldNumber = 3;
+
+        /// <summary>Field number for the "stardust" field.</summary>
+        public const int StardustFieldNumber = 4;
+
+        private static readonly pb::MessageParser<CaptureScore> _parser =
+            new pb::MessageParser<CaptureScore>(() => new CaptureScore());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.ActivityType>
+            _repeated_activityType_codec
+                = pb::FieldCodec.ForEnum(10, x => (int)x,
+                    x => (global::PokemonGo.RocketAPI.GeneratedCode.ActivityType)x);
+
+        private static readonly pb::FieldCodec<int> _repeated_xp_codec
+            = pb::FieldCodec.ForInt32(18);
+
+        private static readonly pb::FieldCodec<int> _repeated_candy_codec
+            = pb::FieldCodec.ForInt32(26);
+
+        private static readonly pb::FieldCodec<int> _repeated_stardust_codec
+            = pb::FieldCodec.ForInt32(34);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ActivityType> activityType_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ActivityType>();
+
+        private readonly pbc::RepeatedField<int> candy_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<int> stardust_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<int> xp_ = new pbc::RepeatedField<int>();
+
+        public CaptureScore()
+        {
+            OnConstruction();
+        }
+
+        public CaptureScore(CaptureScore other) : this()
+        {
+            activityType_ = other.activityType_.Clone();
+            xp_ = other.xp_.Clone();
+            candy_ = other.candy_.Clone();
+            stardust_ = other.stardust_.Clone();
+        }
+
+        public static pb::MessageParser<CaptureScore> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[63]; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ActivityType> ActivityType
+        {
+            get { return activityType_; }
+        }
+
+        public pbc::RepeatedField<int> Xp
+        {
+            get { return xp_; }
+        }
+
+        public pbc::RepeatedField<int> Candy
+        {
+            get { return candy_; }
+        }
+
+        public pbc::RepeatedField<int> Stardust
+        {
+            get { return stardust_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public CaptureScore Clone()
+        {
+            return new CaptureScore(this);
+        }
+
+        public bool Equals(CaptureScore other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!activityType_.Equals(other.activityType_)) return false;
+            if (!xp_.Equals(other.xp_)) return false;
+            if (!candy_.Equals(other.candy_)) return false;
+            if (!stardust_.Equals(other.stardust_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            activityType_.WriteTo(output, _repeated_activityType_codec);
+            xp_.WriteTo(output, _repeated_xp_codec);
+            candy_.WriteTo(output, _repeated_candy_codec);
+            stardust_.WriteTo(output, _repeated_stardust_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += activityType_.CalculateSize(_repeated_activityType_codec);
+            size += xp_.CalculateSize(_repeated_xp_codec);
+            size += candy_.CalculateSize(_repeated_candy_codec);
+            size += stardust_.CalculateSize(_repeated_stardust_codec);
+            return size;
+        }
+
+        public void MergeFrom(CaptureScore other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            activityType_.Add(other.activityType_);
+            xp_.Add(other.xp_);
+            candy_.Add(other.candy_);
+            stardust_.Add(other.stardust_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                    case 8:
+                        {
+                            activityType_.AddEntriesFrom(input, _repeated_activityType_codec);
+                            break;
+                        }
+                    case 18:
+                    case 16:
+                        {
+                            xp_.AddEntriesFrom(input, _repeated_xp_codec);
+                            break;
+                        }
+                    case 26:
+                    case 24:
+                        {
+                            candy_.AddEntriesFrom(input, _repeated_candy_codec);
+                            break;
+                        }
+                    case 34:
+                    case 32:
+                        {
+                            stardust_.AddEntriesFrom(input, _repeated_stardust_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as CaptureScore);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= activityType_.GetHashCode();
+            hash ^= xp_.GetHashCode();
+            hash ^= candy_.GetHashCode();
+            hash ^= stardust_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    /// <summary>
+    ///     No message needed.
+    /// </summary>
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class CheckAwardedBadgesRequest : pb::IMessage<CheckAwardedBadgesRequest>
+    {
+        private static readonly pb::MessageParser<CheckAwardedBadgesRequest> _parser =
+            new pb::MessageParser<CheckAwardedBadgesRequest>(() => new CheckAwardedBadgesRequest());
+
+        public CheckAwardedBadgesRequest()
+        {
+            OnConstruction();
+        }
+
+        public CheckAwardedBadgesRequest(CheckAwardedBadgesRequest other) : this()
+        {
+        }
+
+        public static pb::MessageParser<CheckAwardedBadgesRequest> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[64]; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public CheckAwardedBadgesRequest Clone()
+        {
+            return new CheckAwardedBadgesRequest(this);
+        }
+
+        public bool Equals(CheckAwardedBadgesRequest other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            return size;
+        }
+
+        public void MergeFrom(CheckAwardedBadgesRequest other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as CheckAwardedBadgesRequest);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    /// <summary>
+    ///     Confirm if this is correct, I think that it should be "repeated AwardedBadge awarded_badges" or something like
+    ///     that.
+    /// </summary>
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class CheckAwardedBadgesResponse : pb::IMessage<CheckAwardedBadgesResponse>
+    {
+        /// <summary>Field number for the "success" field.</summary>
+        public const int SuccessFieldNumber = 1;
+
+        /// <summary>Field number for the "awarded_badges" field.</summary>
+        public const int AwardedBadgesFieldNumber = 2;
+
+        /// <summary>Field number for the "awarded_badge_levels" field.</summary>
+        public const int AwardedBadgeLevelsFieldNumber = 3;
+
+        private static readonly pb::MessageParser<CheckAwardedBadgesResponse> _parser =
+            new pb::MessageParser<CheckAwardedBadgesResponse>(() => new CheckAwardedBadgesResponse());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.BadgeType>
+            _repeated_awardedBadges_codec
+                = pb::FieldCodec.ForEnum(18, x => (int)x, x => (global::PokemonGo.RocketAPI.GeneratedCode.BadgeType)x);
+
+        private static readonly pb::FieldCodec<int> _repeated_awardedBadgeLevels_codec
+            = pb::FieldCodec.ForInt32(26);
+
+        private readonly pbc::RepeatedField<int> awardedBadgeLevels_ = new pbc::RepeatedField<int>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.BadgeType> awardedBadges_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.BadgeType>();
+
+        private bool success_;
+
+        public CheckAwardedBadgesResponse()
+        {
+            OnConstruction();
+        }
+
+        public CheckAwardedBadgesResponse(CheckAwardedBadgesResponse other) : this()
+        {
+            success_ = other.success_;
+            awardedBadges_ = other.awardedBadges_.Clone();
+            awardedBadgeLevels_ = other.awardedBadgeLevels_.Clone();
+        }
+
+        public static pb::MessageParser<CheckAwardedBadgesResponse> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[65]; }
+        }
+
+        public bool Success
+        {
+            get { return success_; }
+            set { success_ = value; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.BadgeType> AwardedBadges
+        {
+            get { return awardedBadges_; }
+        }
+
+        public pbc::RepeatedField<int> AwardedBadgeLevels
+        {
+            get { return awardedBadgeLevels_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public CheckAwardedBadgesResponse Clone()
+        {
+            return new CheckAwardedBadgesResponse(this);
+        }
+
+        public bool Equals(CheckAwardedBadgesResponse other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Success != other.Success) return false;
+            if (!awardedBadges_.Equals(other.awardedBadges_)) return false;
+            if (!awardedBadgeLevels_.Equals(other.awardedBadgeLevels_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Success != false)
+            {
+                output.WriteRawTag(8);
+                output.WriteBool(Success);
+            }
+            awardedBadges_.WriteTo(output, _repeated_awardedBadges_codec);
+            awardedBadgeLevels_.WriteTo(output, _repeated_awardedBadgeLevels_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Success != false)
+            {
+                size += 1 + 1;
+            }
+            size += awardedBadges_.CalculateSize(_repeated_awardedBadges_codec);
+            size += awardedBadgeLevels_.CalculateSize(_repeated_awardedBadgeLevels_codec);
+            return size;
+        }
+
+        public void MergeFrom(CheckAwardedBadgesResponse other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Success != false)
+            {
+                Success = other.Success;
+            }
+            awardedBadges_.Add(other.awardedBadges_);
+            awardedBadgeLevels_.Add(other.awardedBadgeLevels_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Success = input.ReadBool();
+                            break;
+                        }
+                    case 18:
+                    case 16:
+                        {
+                            awardedBadges_.AddEntriesFrom(input, _repeated_awardedBadges_codec);
+                            break;
+                        }
+                    case 26:
+                    case 24:
+                        {
+                            awardedBadgeLevels_.AddEntriesFrom(input, _repeated_awardedBadgeLevels_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as CheckAwardedBadgesResponse);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Success != false) hash ^= Success.GetHashCode();
+            hash ^= awardedBadges_.GetHashCode();
+            hash ^= awardedBadgeLevels_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EquippedBadgeSettings : pb::IMessage<EquippedBadgeSettings>
+    {
+        /// <summary>Field number for the "equip_badge_cooldown_ms" field.</summary>
+        public const int EquipBadgeCooldownMsFieldNumber = 1;
+
+        /// <summary>Field number for the "catch_probability_bonus" field.</summary>
+        public const int CatchProbabilityBonusFieldNumber = 2;
+
+        /// <summary>Field number for the "flee_probability_bonus" field.</summary>
+        public const int FleeProbabilityBonusFieldNumber = 3;
+
+        private static readonly pb::MessageParser<EquippedBadgeSettings> _parser =
+            new pb::MessageParser<EquippedBadgeSettings>(() => new EquippedBadgeSettings());
+
+        private static readonly pb::FieldCodec<float> _repeated_catchProbabilityBonus_codec
+            = pb::FieldCodec.ForFloat(18);
+
+        private static readonly pb::FieldCodec<float> _repeated_fleeProbabilityBonus_codec
+            = pb::FieldCodec.ForFloat(26);
+
+        private readonly pbc::RepeatedField<float> catchProbabilityBonus_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> fleeProbabilityBonus_ = new pbc::RepeatedField<float>();
+        private long equipBadgeCooldownMs_;
+
+        public EquippedBadgeSettings()
+        {
+            OnConstruction();
+        }
+
+        public EquippedBadgeSettings(EquippedBadgeSettings other) : this()
+        {
+            equipBadgeCooldownMs_ = other.equipBadgeCooldownMs_;
+            catchProbabilityBonus_ = other.catchProbabilityBonus_.Clone();
+            fleeProbabilityBonus_ = other.fleeProbabilityBonus_.Clone();
+        }
+
+        public static pb::MessageParser<EquippedBadgeSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[66]; }
+        }
+
+        public long EquipBadgeCooldownMs
+        {
+            get { return equipBadgeCooldownMs_; }
+            set { equipBadgeCooldownMs_ = value; }
+        }
+
+        public pbc::RepeatedField<float> CatchProbabilityBonus
+        {
+            get { return catchProbabilityBonus_; }
+        }
+
+        public pbc::RepeatedField<float> FleeProbabilityBonus
+        {
+            get { return fleeProbabilityBonus_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EquippedBadgeSettings Clone()
+        {
+            return new EquippedBadgeSettings(this);
+        }
+
+        public bool Equals(EquippedBadgeSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (EquipBadgeCooldownMs != other.EquipBadgeCooldownMs) return false;
+            if (!catchProbabilityBonus_.Equals(other.catchProbabilityBonus_)) return false;
+            if (!fleeProbabilityBonus_.Equals(other.fleeProbabilityBonus_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (EquipBadgeCooldownMs != 0L)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt64(EquipBadgeCooldownMs);
+            }
+            catchProbabilityBonus_.WriteTo(output, _repeated_catchProbabilityBonus_codec);
+            fleeProbabilityBonus_.WriteTo(output, _repeated_fleeProbabilityBonus_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (EquipBadgeCooldownMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(EquipBadgeCooldownMs);
+            }
+            size += catchProbabilityBonus_.CalculateSize(_repeated_catchProbabilityBonus_codec);
+            size += fleeProbabilityBonus_.CalculateSize(_repeated_fleeProbabilityBonus_codec);
+            return size;
+        }
+
+        public void MergeFrom(EquippedBadgeSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.EquipBadgeCooldownMs != 0L)
+            {
+                EquipBadgeCooldownMs = other.EquipBadgeCooldownMs;
+            }
+            catchProbabilityBonus_.Add(other.catchProbabilityBonus_);
+            fleeProbabilityBonus_.Add(other.fleeProbabilityBonus_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            EquipBadgeCooldownMs = input.ReadInt64();
+                            break;
+                        }
+                    case 18:
+                    case 21:
+                        {
+                            catchProbabilityBonus_.AddEntriesFrom(input, _repeated_catchProbabilityBonus_codec);
+                            break;
+                        }
+                    case 26:
+                    case 29:
+                        {
+                            fleeProbabilityBonus_.AddEntriesFrom(input, _repeated_fleeProbabilityBonus_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EquippedBadgeSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (EquipBadgeCooldownMs != 0L) hash ^= EquipBadgeCooldownMs.GetHashCode();
+            hash ^= catchProbabilityBonus_.GetHashCode();
+            hash ^= fleeProbabilityBonus_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PokemonUpgradeSettings : pb::IMessage<PokemonUpgradeSettings>
+    {
+        /// <summary>Field number for the "upgrades_per_level" field.</summary>
+        public const int UpgradesPerLevelFieldNumber = 1;
+
+        /// <summary>Field number for the "allowed_levels_above_player" field.</summary>
+        public const int AllowedLevelsAbovePlayerFieldNumber = 2;
+
+        /// <summary>Field number for the "candy_cost" field.</summary>
+        public const int CandyCostFieldNumber = 3;
+
+        /// <summary>Field number for the "stardust_cost" field.</summary>
+        public const int StardustCostFieldNumber = 4;
+
+        private static readonly pb::MessageParser<PokemonUpgradeSettings> _parser =
+            new pb::MessageParser<PokemonUpgradeSettings>(() => new PokemonUpgradeSettings());
+
+        private static readonly pb::FieldCodec<int> _repeated_candyCost_codec
+            = pb::FieldCodec.ForInt32(26);
+
+        private static readonly pb::FieldCodec<int> _repeated_stardustCost_codec
+            = pb::FieldCodec.ForInt32(34);
+
+        private readonly pbc::RepeatedField<int> candyCost_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<int> stardustCost_ = new pbc::RepeatedField<int>();
+        private int allowedLevelsAbovePlayer_;
+        private int upgradesPerLevel_;
+
+        public PokemonUpgradeSettings()
+        {
+            OnConstruction();
+        }
+
+        public PokemonUpgradeSettings(PokemonUpgradeSettings other) : this()
+        {
+            upgradesPerLevel_ = other.upgradesPerLevel_;
+            allowedLevelsAbovePlayer_ = other.allowedLevelsAbovePlayer_;
+            candyCost_ = other.candyCost_.Clone();
+            stardustCost_ = other.stardustCost_.Clone();
+        }
+
+        public static pb::MessageParser<PokemonUpgradeSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[67]; }
+        }
+
+        public int UpgradesPerLevel
+        {
+            get { return upgradesPerLevel_; }
+            set { upgradesPerLevel_ = value; }
+        }
+
+        public int AllowedLevelsAbovePlayer
+        {
+            get { return allowedLevelsAbovePlayer_; }
+            set { allowedLevelsAbovePlayer_ = value; }
+        }
+
+        public pbc::RepeatedField<int> CandyCost
+        {
+            get { return candyCost_; }
+        }
+
+        public pbc::RepeatedField<int> StardustCost
+        {
+            get { return stardustCost_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PokemonUpgradeSettings Clone()
+        {
+            return new PokemonUpgradeSettings(this);
+        }
+
+        public bool Equals(PokemonUpgradeSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (UpgradesPerLevel != other.UpgradesPerLevel) return false;
+            if (AllowedLevelsAbovePlayer != other.AllowedLevelsAbovePlayer) return false;
+            if (!candyCost_.Equals(other.candyCost_)) return false;
+            if (!stardustCost_.Equals(other.stardustCost_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (UpgradesPerLevel != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(UpgradesPerLevel);
+            }
+            if (AllowedLevelsAbovePlayer != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(AllowedLevelsAbovePlayer);
+            }
+            candyCost_.WriteTo(output, _repeated_candyCost_codec);
+            stardustCost_.WriteTo(output, _repeated_stardustCost_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (UpgradesPerLevel != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(UpgradesPerLevel);
+            }
+            if (AllowedLevelsAbovePlayer != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(AllowedLevelsAbovePlayer);
+            }
+            size += candyCost_.CalculateSize(_repeated_candyCost_codec);
+            size += stardustCost_.CalculateSize(_repeated_stardustCost_codec);
+            return size;
+        }
+
+        public void MergeFrom(PokemonUpgradeSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.UpgradesPerLevel != 0)
+            {
+                UpgradesPerLevel = other.UpgradesPerLevel;
+            }
+            if (other.AllowedLevelsAbovePlayer != 0)
+            {
+                AllowedLevelsAbovePlayer = other.AllowedLevelsAbovePlayer;
+            }
+            candyCost_.Add(other.candyCost_);
+            stardustCost_.Add(other.stardustCost_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            UpgradesPerLevel = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            AllowedLevelsAbovePlayer = input.ReadInt32();
+                            break;
+                        }
+                    case 26:
+                    case 24:
+                        {
+                            candyCost_.AddEntriesFrom(input, _repeated_candyCost_codec);
+                            break;
+                        }
+                    case 34:
+                    case 32:
+                        {
+                            stardustCost_.AddEntriesFrom(input, _repeated_stardustCost_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PokemonUpgradeSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (UpgradesPerLevel != 0) hash ^= UpgradesPerLevel.GetHashCode();
+            if (AllowedLevelsAbovePlayer != 0) hash ^= AllowedLevelsAbovePlayer.GetHashCode();
+            hash ^= candyCost_.GetHashCode();
+            hash ^= stardustCost_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class IapSettings : pb::IMessage<IapSettings>
+    {
+        /// <summary>Field number for the "daily_bonus_coins" field.</summary>
+        public const int DailyBonusCoinsFieldNumber = 1;
+
+        /// <summary>Field number for the "daily_defender_bonus_per_pokemon" field.</summary>
+        public const int DailyDefenderBonusPerPokemonFieldNumber = 2;
+
+        /// <summary>Field number for the "daily_defender_bonus_max_defenders" field.</summary>
+        public const int DailyDefenderBonusMaxDefendersFieldNumber = 3;
+
+        /// <summary>Field number for the "daily_defender_bonus_currency" field.</summary>
+        public const int DailyDefenderBonusCurrencyFieldNumber = 4;
+
+        /// <summary>Field number for the "min_time_between_claims_ms" field.</summary>
+        public const int MinTimeBetweenClaimsMsFieldNumber = 5;
+
+        /// <summary>Field number for the "daily_bonus_enabled" field.</summary>
+        public const int DailyBonusEnabledFieldNumber = 6;
+
+        /// <summary>Field number for the "daily_defender_bonus_enabled" field.</summary>
+        public const int DailyDefenderBonusEnabledFieldNumber = 7;
+
+        private static readonly pb::MessageParser<IapSettings> _parser =
+            new pb::MessageParser<IapSettings>(() => new IapSettings());
+
+        private static readonly pb::FieldCodec<int> _repeated_dailyDefenderBonusPerPokemon_codec
+            = pb::FieldCodec.ForInt32(18);
+
+        private static readonly pb::FieldCodec<string> _repeated_dailyDefenderBonusCurrency_codec
+            = pb::FieldCodec.ForString(34);
+
+        private readonly pbc::RepeatedField<string> dailyDefenderBonusCurrency_ = new pbc::RepeatedField<string>();
+        private readonly pbc::RepeatedField<int> dailyDefenderBonusPerPokemon_ = new pbc::RepeatedField<int>();
+        private int dailyBonusCoins_;
+        private bool dailyBonusEnabled_;
+        private bool dailyDefenderBonusEnabled_;
+        private int dailyDefenderBonusMaxDefenders_;
+        private long minTimeBetweenClaimsMs_;
+
+        public IapSettings()
+        {
+            OnConstruction();
+        }
+
+        public IapSettings(IapSettings other) : this()
+        {
+            dailyBonusCoins_ = other.dailyBonusCoins_;
+            dailyDefenderBonusPerPokemon_ = other.dailyDefenderBonusPerPokemon_.Clone();
+            dailyDefenderBonusMaxDefenders_ = other.dailyDefenderBonusMaxDefenders_;
+            dailyDefenderBonusCurrency_ = other.dailyDefenderBonusCurrency_.Clone();
+            minTimeBetweenClaimsMs_ = other.minTimeBetweenClaimsMs_;
+            dailyBonusEnabled_ = other.dailyBonusEnabled_;
+            dailyDefenderBonusEnabled_ = other.dailyDefenderBonusEnabled_;
+        }
+
+        public static pb::MessageParser<IapSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[68]; }
+        }
+
+        public int DailyBonusCoins
+        {
+            get { return dailyBonusCoins_; }
+            set { dailyBonusCoins_ = value; }
+        }
+
+        public pbc::RepeatedField<int> DailyDefenderBonusPerPokemon
+        {
+            get { return dailyDefenderBonusPerPokemon_; }
+        }
+
+        public int DailyDefenderBonusMaxDefenders
+        {
+            get { return dailyDefenderBonusMaxDefenders_; }
+            set { dailyDefenderBonusMaxDefenders_ = value; }
+        }
+
+        public pbc::RepeatedField<string> DailyDefenderBonusCurrency
+        {
+            get { return dailyDefenderBonusCurrency_; }
+        }
+
+        public long MinTimeBetweenClaimsMs
+        {
+            get { return minTimeBetweenClaimsMs_; }
+            set { minTimeBetweenClaimsMs_ = value; }
+        }
+
+        public bool DailyBonusEnabled
+        {
+            get { return dailyBonusEnabled_; }
+            set { dailyBonusEnabled_ = value; }
+        }
+
+        public bool DailyDefenderBonusEnabled
+        {
+            get { return dailyDefenderBonusEnabled_; }
+            set { dailyDefenderBonusEnabled_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public IapSettings Clone()
+        {
+            return new IapSettings(this);
+        }
+
+        public bool Equals(IapSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (DailyBonusCoins != other.DailyBonusCoins) return false;
+            if (!dailyDefenderBonusPerPokemon_.Equals(other.dailyDefenderBonusPerPokemon_)) return false;
+            if (DailyDefenderBonusMaxDefenders != other.DailyDefenderBonusMaxDefenders) return false;
+            if (!dailyDefenderBonusCurrency_.Equals(other.dailyDefenderBonusCurrency_)) return false;
+            if (MinTimeBetweenClaimsMs != other.MinTimeBetweenClaimsMs) return false;
+            if (DailyBonusEnabled != other.DailyBonusEnabled) return false;
+            if (DailyDefenderBonusEnabled != other.DailyDefenderBonusEnabled) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (DailyBonusCoins != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(DailyBonusCoins);
+            }
+            dailyDefenderBonusPerPokemon_.WriteTo(output, _repeated_dailyDefenderBonusPerPokemon_codec);
+            if (DailyDefenderBonusMaxDefenders != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(DailyDefenderBonusMaxDefenders);
+            }
+            dailyDefenderBonusCurrency_.WriteTo(output, _repeated_dailyDefenderBonusCurrency_codec);
+            if (MinTimeBetweenClaimsMs != 0L)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt64(MinTimeBetweenClaimsMs);
+            }
+            if (DailyBonusEnabled != false)
+            {
+                output.WriteRawTag(48);
+                output.WriteBool(DailyBonusEnabled);
+            }
+            if (DailyDefenderBonusEnabled != false)
+            {
+                output.WriteRawTag(56);
+                output.WriteBool(DailyDefenderBonusEnabled);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (DailyBonusCoins != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DailyBonusCoins);
+            }
+            size += dailyDefenderBonusPerPokemon_.CalculateSize(_repeated_dailyDefenderBonusPerPokemon_codec);
+            if (DailyDefenderBonusMaxDefenders != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DailyDefenderBonusMaxDefenders);
+            }
+            size += dailyDefenderBonusCurrency_.CalculateSize(_repeated_dailyDefenderBonusCurrency_codec);
+            if (MinTimeBetweenClaimsMs != 0L)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt64Size(MinTimeBetweenClaimsMs);
+            }
+            if (DailyBonusEnabled != false)
+            {
+                size += 1 + 1;
+            }
+            if (DailyDefenderBonusEnabled != false)
+            {
+                size += 1 + 1;
+            }
+            return size;
+        }
+
+        public void MergeFrom(IapSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.DailyBonusCoins != 0)
+            {
+                DailyBonusCoins = other.DailyBonusCoins;
+            }
+            dailyDefenderBonusPerPokemon_.Add(other.dailyDefenderBonusPerPokemon_);
+            if (other.DailyDefenderBonusMaxDefenders != 0)
+            {
+                DailyDefenderBonusMaxDefenders = other.DailyDefenderBonusMaxDefenders;
+            }
+            dailyDefenderBonusCurrency_.Add(other.dailyDefenderBonusCurrency_);
+            if (other.MinTimeBetweenClaimsMs != 0L)
+            {
+                MinTimeBetweenClaimsMs = other.MinTimeBetweenClaimsMs;
+            }
+            if (other.DailyBonusEnabled != false)
+            {
+                DailyBonusEnabled = other.DailyBonusEnabled;
+            }
+            if (other.DailyDefenderBonusEnabled != false)
+            {
+                DailyDefenderBonusEnabled = other.DailyDefenderBonusEnabled;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            DailyBonusCoins = input.ReadInt32();
+                            break;
+                        }
+                    case 18:
+                    case 16:
+                        {
+                            dailyDefenderBonusPerPokemon_.AddEntriesFrom(input, _repeated_dailyDefenderBonusPerPokemon_codec);
+                            break;
+                        }
+                    case 24:
+                        {
+                            DailyDefenderBonusMaxDefenders = input.ReadInt32();
+                            break;
+                        }
+                    case 34:
+                        {
+                            dailyDefenderBonusCurrency_.AddEntriesFrom(input, _repeated_dailyDefenderBonusCurrency_codec);
+                            break;
+                        }
+                    case 40:
+                        {
+                            MinTimeBetweenClaimsMs = input.ReadInt64();
+                            break;
+                        }
+                    case 48:
+                        {
+                            DailyBonusEnabled = input.ReadBool();
+                            break;
+                        }
+                    case 56:
+                        {
+                            DailyDefenderBonusEnabled = input.ReadBool();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as IapSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (DailyBonusCoins != 0) hash ^= DailyBonusCoins.GetHashCode();
+            hash ^= dailyDefenderBonusPerPokemon_.GetHashCode();
+            if (DailyDefenderBonusMaxDefenders != 0) hash ^= DailyDefenderBonusMaxDefenders.GetHashCode();
+            hash ^= dailyDefenderBonusCurrency_.GetHashCode();
+            if (MinTimeBetweenClaimsMs != 0L) hash ^= MinTimeBetweenClaimsMs.GetHashCode();
+            if (DailyBonusEnabled != false) hash ^= DailyBonusEnabled.GetHashCode();
+            if (DailyDefenderBonusEnabled != false) hash ^= DailyDefenderBonusEnabled.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class IapItemDisplay : pb::IMessage<IapItemDisplay>
+    {
+        /// <summary>Field number for the "sku" field.</summary>
+        public const int SkuFieldNumber = 1;
+
+        /// <summary>Field number for the "category" field.</summary>
+        public const int CategoryFieldNumber = 2;
+
+        /// <summary>Field number for the "sort_order" field.</summary>
+        public const int SortOrderFieldNumber = 3;
+
+        /// <summary>Field number for the "item_ids" field.</summary>
+        public const int ItemIdsFieldNumber = 4;
+
+        /// <summary>Field number for the "counts" field.</summary>
+        public const int CountsFieldNumber = 5;
+
+        private static readonly pb::MessageParser<IapItemDisplay> _parser =
+            new pb::MessageParser<IapItemDisplay>(() => new IapItemDisplay());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.ItemId> _repeated_itemIds_codec
+            = pb::FieldCodec.ForEnum(34, x => (int)x, x => (global::PokemonGo.RocketAPI.GeneratedCode.ItemId)x);
+
+        private static readonly pb::FieldCodec<int> _repeated_counts_codec
+            = pb::FieldCodec.ForInt32(42);
+
+        private readonly pbc::RepeatedField<int> counts_ = new pbc::RepeatedField<int>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemId> itemIds_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemId>();
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.HoloIapItemCategory category_ = 0;
+        private string sku_ = "";
+        private int sortOrder_;
+
+        public IapItemDisplay()
+        {
+            OnConstruction();
+        }
+
+        public IapItemDisplay(IapItemDisplay other) : this()
+        {
+            sku_ = other.sku_;
+            category_ = other.category_;
+            sortOrder_ = other.sortOrder_;
+            itemIds_ = other.itemIds_.Clone();
+            counts_ = other.counts_.Clone();
+        }
+
+        public static pb::MessageParser<IapItemDisplay> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[69]; }
+        }
+
+        public string Sku
+        {
+            get { return sku_; }
+            set { sku_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.HoloIapItemCategory Category
+        {
+            get { return category_; }
+            set { category_ = value; }
+        }
+
+        public int SortOrder
+        {
+            get { return sortOrder_; }
+            set { sortOrder_ = value; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemId> ItemIds
+        {
+            get { return itemIds_; }
+        }
+
+        public pbc::RepeatedField<int> Counts
+        {
+            get { return counts_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public IapItemDisplay Clone()
+        {
+            return new IapItemDisplay(this);
+        }
+
+        public bool Equals(IapItemDisplay other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Sku != other.Sku) return false;
+            if (Category != other.Category) return false;
+            if (SortOrder != other.SortOrder) return false;
+            if (!itemIds_.Equals(other.itemIds_)) return false;
+            if (!counts_.Equals(other.counts_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Sku.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(Sku);
+            }
+            if (Category != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)Category);
+            }
+            if (SortOrder != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(SortOrder);
+            }
+            itemIds_.WriteTo(output, _repeated_itemIds_codec);
+            counts_.WriteTo(output, _repeated_counts_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Sku.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(Sku);
+            }
+            if (Category != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Category);
+            }
+            if (SortOrder != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(SortOrder);
+            }
+            size += itemIds_.CalculateSize(_repeated_itemIds_codec);
+            size += counts_.CalculateSize(_repeated_counts_codec);
+            return size;
+        }
+
+        public void MergeFrom(IapItemDisplay other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Sku.Length != 0)
+            {
+                Sku = other.Sku;
+            }
+            if (other.Category != 0)
+            {
+                Category = other.Category;
+            }
+            if (other.SortOrder != 0)
+            {
+                SortOrder = other.SortOrder;
+            }
+            itemIds_.Add(other.itemIds_);
+            counts_.Add(other.counts_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            Sku = input.ReadString();
+                            break;
+                        }
+                    case 16:
+                        {
+                            category_ = (global::PokemonGo.RocketAPI.GeneratedCode.HoloIapItemCategory)input.ReadEnum();
+                            break;
+                        }
+                    case 24:
+                        {
+                            SortOrder = input.ReadInt32();
+                            break;
+                        }
+                    case 34:
+                    case 32:
+                        {
+                            itemIds_.AddEntriesFrom(input, _repeated_itemIds_codec);
+                            break;
+                        }
+                    case 42:
+                    case 40:
+                        {
+                            counts_.AddEntriesFrom(input, _repeated_counts_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as IapItemDisplay);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Sku.Length != 0) hash ^= Sku.GetHashCode();
+            if (Category != 0) hash ^= Category.GetHashCode();
+            if (SortOrder != 0) hash ^= SortOrder.GetHashCode();
+            hash ^= itemIds_.GetHashCode();
+            hash ^= counts_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EncounterSettings : pb::IMessage<EncounterSettings>
+    {
+        /// <summary>Field number for the "spin_bonus_threshold" field.</summary>
+        public const int SpinBonusThresholdFieldNumber = 1;
+
+        /// <summary>Field number for the "excellent_throw_threshold" field.</summary>
+        public const int ExcellentThrowThresholdFieldNumber = 2;
+
+        /// <summary>Field number for the "great_throw_threshold" field.</summary>
+        public const int GreatThrowThresholdFieldNumber = 3;
+
+        /// <summary>Field number for the "nice_throw_threshold" field.</summary>
+        public const int NiceThrowThresholdFieldNumber = 4;
+
+        /// <summary>Field number for the "milestone_threshold" field.</summary>
+        public const int MilestoneThresholdFieldNumber = 5;
+
+        private static readonly pb::MessageParser<EncounterSettings> _parser =
+            new pb::MessageParser<EncounterSettings>(() => new EncounterSettings());
+
+        private float excellentThrowThreshold_;
+        private float greatThrowThreshold_;
+        private int milestoneThreshold_;
+        private float niceThrowThreshold_;
+        private float spinBonusThreshold_;
+
+        public EncounterSettings()
+        {
+            OnConstruction();
+        }
+
+        public EncounterSettings(EncounterSettings other) : this()
+        {
+            spinBonusThreshold_ = other.spinBonusThreshold_;
+            excellentThrowThreshold_ = other.excellentThrowThreshold_;
+            greatThrowThreshold_ = other.greatThrowThreshold_;
+            niceThrowThreshold_ = other.niceThrowThreshold_;
+            milestoneThreshold_ = other.milestoneThreshold_;
+        }
+
+        public static pb::MessageParser<EncounterSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[70]; }
+        }
+
+        public float SpinBonusThreshold
+        {
+            get { return spinBonusThreshold_; }
+            set { spinBonusThreshold_ = value; }
+        }
+
+        public float ExcellentThrowThreshold
+        {
+            get { return excellentThrowThreshold_; }
+            set { excellentThrowThreshold_ = value; }
+        }
+
+        public float GreatThrowThreshold
+        {
+            get { return greatThrowThreshold_; }
+            set { greatThrowThreshold_ = value; }
+        }
+
+        public float NiceThrowThreshold
+        {
+            get { return niceThrowThreshold_; }
+            set { niceThrowThreshold_ = value; }
+        }
+
+        public int MilestoneThreshold
+        {
+            get { return milestoneThreshold_; }
+            set { milestoneThreshold_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EncounterSettings Clone()
+        {
+            return new EncounterSettings(this);
+        }
+
+        public bool Equals(EncounterSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (SpinBonusThreshold != other.SpinBonusThreshold) return false;
+            if (ExcellentThrowThreshold != other.ExcellentThrowThreshold) return false;
+            if (GreatThrowThreshold != other.GreatThrowThreshold) return false;
+            if (NiceThrowThreshold != other.NiceThrowThreshold) return false;
+            if (MilestoneThreshold != other.MilestoneThreshold) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (SpinBonusThreshold != 0F)
+            {
+                output.WriteRawTag(13);
+                output.WriteFloat(SpinBonusThreshold);
+            }
+            if (ExcellentThrowThreshold != 0F)
+            {
+                output.WriteRawTag(21);
+                output.WriteFloat(ExcellentThrowThreshold);
+            }
+            if (GreatThrowThreshold != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(GreatThrowThreshold);
+            }
+            if (NiceThrowThreshold != 0F)
+            {
+                output.WriteRawTag(37);
+                output.WriteFloat(NiceThrowThreshold);
+            }
+            if (MilestoneThreshold != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(MilestoneThreshold);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (SpinBonusThreshold != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (ExcellentThrowThreshold != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (GreatThrowThreshold != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (NiceThrowThreshold != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (MilestoneThreshold != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MilestoneThreshold);
+            }
+            return size;
+        }
+
+        public void MergeFrom(EncounterSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.SpinBonusThreshold != 0F)
+            {
+                SpinBonusThreshold = other.SpinBonusThreshold;
+            }
+            if (other.ExcellentThrowThreshold != 0F)
+            {
+                ExcellentThrowThreshold = other.ExcellentThrowThreshold;
+            }
+            if (other.GreatThrowThreshold != 0F)
+            {
+                GreatThrowThreshold = other.GreatThrowThreshold;
+            }
+            if (other.NiceThrowThreshold != 0F)
+            {
+                NiceThrowThreshold = other.NiceThrowThreshold;
+            }
+            if (other.MilestoneThreshold != 0)
+            {
+                MilestoneThreshold = other.MilestoneThreshold;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 13:
+                        {
+                            SpinBonusThreshold = input.ReadFloat();
+                            break;
+                        }
+                    case 21:
+                        {
+                            ExcellentThrowThreshold = input.ReadFloat();
+                            break;
+                        }
+                    case 29:
+                        {
+                            GreatThrowThreshold = input.ReadFloat();
+                            break;
+                        }
+                    case 37:
+                        {
+                            NiceThrowThreshold = input.ReadFloat();
+                            break;
+                        }
+                    case 40:
+                        {
+                            MilestoneThreshold = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EncounterSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (SpinBonusThreshold != 0F) hash ^= SpinBonusThreshold.GetHashCode();
+            if (ExcellentThrowThreshold != 0F) hash ^= ExcellentThrowThreshold.GetHashCode();
+            if (GreatThrowThreshold != 0F) hash ^= GreatThrowThreshold.GetHashCode();
+            if (NiceThrowThreshold != 0F) hash ^= NiceThrowThreshold.GetHashCode();
+            if (MilestoneThreshold != 0) hash ^= MilestoneThreshold.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GymBattleSettings : pb::IMessage<GymBattleSettings>
+    {
+        /// <summary>Field number for the "energy_per_sec" field.</summary>
+        public const int EnergyPerSecFieldNumber = 1;
+
+        /// <summary>Field number for the "dodge_energy_cost" field.</summary>
+        public const int DodgeEnergyCostFieldNumber = 2;
+
+        /// <summary>Field number for the "retarget_seconds" field.</summary>
+        public const int RetargetSecondsFieldNumber = 3;
+
+        /// <summary>Field number for the "enemy_attack_interval" field.</summary>
+        public const int EnemyAttackIntervalFieldNumber = 4;
+
+        /// <summary>Field number for the "attack_server_interval" field.</summary>
+        public const int AttackServerIntervalFieldNumber = 5;
+
+        /// <summary>Field number for the "round_duration_seconds" field.</summary>
+        public const int RoundDurationSecondsFieldNumber = 6;
+
+        /// <summary>Field number for the "bonus_time_per_ally_seconds" field.</summary>
+        public const int BonusTimePerAllySecondsFieldNumber = 7;
+
+        /// <summary>Field number for the "maximum_attackers_per_battle" field.</summary>
+        public const int MaximumAttackersPerBattleFieldNumber = 8;
+
+        /// <summary>Field number for the "same_type_attack_bonus_multiplier" field.</summary>
+        public const int SameTypeAttackBonusMultiplierFieldNumber = 9;
+
+        /// <summary>Field number for the "maximum_energy" field.</summary>
+        public const int MaximumEnergyFieldNumber = 10;
+
+        /// <summary>Field number for the "energy_delta_per_health_lost" field.</summary>
+        public const int EnergyDeltaPerHealthLostFieldNumber = 11;
+
+        /// <summary>Field number for the "dodge_duration_ms" field.</summary>
+        public const int DodgeDurationMsFieldNumber = 12;
+
+        /// <summary>Field number for the "minimum_player_level" field.</summary>
+        public const int MinimumPlayerLevelFieldNumber = 13;
+
+        /// <summary>Field number for the "swap_duration_ms" field.</summary>
+        public const int SwapDurationMsFieldNumber = 14;
+
+        private static readonly pb::MessageParser<GymBattleSettings> _parser =
+            new pb::MessageParser<GymBattleSettings>(() => new GymBattleSettings());
+
+        private float attackServerInterval_;
+        private float bonusTimePerAllySeconds_;
+        private int dodgeDurationMs_;
+        private float dodgeEnergyCost_;
+        private float enemyAttackInterval_;
+        private float energyDeltaPerHealthLost_;
+        private float energyPerSec_;
+        private int maximumAttackersPerBattle_;
+        private int maximumEnergy_;
+        private int minimumPlayerLevel_;
+        private float retargetSeconds_;
+        private float roundDurationSeconds_;
+        private float sameTypeAttackBonusMultiplier_;
+        private int swapDurationMs_;
+
+        public GymBattleSettings()
+        {
+            OnConstruction();
+        }
+
+        public GymBattleSettings(GymBattleSettings other) : this()
+        {
+            energyPerSec_ = other.energyPerSec_;
+            dodgeEnergyCost_ = other.dodgeEnergyCost_;
+            retargetSeconds_ = other.retargetSeconds_;
+            enemyAttackInterval_ = other.enemyAttackInterval_;
+            attackServerInterval_ = other.attackServerInterval_;
+            roundDurationSeconds_ = other.roundDurationSeconds_;
+            bonusTimePerAllySeconds_ = other.bonusTimePerAllySeconds_;
+            maximumAttackersPerBattle_ = other.maximumAttackersPerBattle_;
+            sameTypeAttackBonusMultiplier_ = other.sameTypeAttackBonusMultiplier_;
+            maximumEnergy_ = other.maximumEnergy_;
+            energyDeltaPerHealthLost_ = other.energyDeltaPerHealthLost_;
+            dodgeDurationMs_ = other.dodgeDurationMs_;
+            minimumPlayerLevel_ = other.minimumPlayerLevel_;
+            swapDurationMs_ = other.swapDurationMs_;
+        }
+
+        public static pb::MessageParser<GymBattleSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[71]; }
+        }
+
+        public float EnergyPerSec
+        {
+            get { return energyPerSec_; }
+            set { energyPerSec_ = value; }
+        }
+
+        public float DodgeEnergyCost
+        {
+            get { return dodgeEnergyCost_; }
+            set { dodgeEnergyCost_ = value; }
+        }
+
+        public float RetargetSeconds
+        {
+            get { return retargetSeconds_; }
+            set { retargetSeconds_ = value; }
+        }
+
+        public float EnemyAttackInterval
+        {
+            get { return enemyAttackInterval_; }
+            set { enemyAttackInterval_ = value; }
+        }
+
+        public float AttackServerInterval
+        {
+            get { return attackServerInterval_; }
+            set { attackServerInterval_ = value; }
+        }
+
+        public float RoundDurationSeconds
+        {
+            get { return roundDurationSeconds_; }
+            set { roundDurationSeconds_ = value; }
+        }
+
+        public float BonusTimePerAllySeconds
+        {
+            get { return bonusTimePerAllySeconds_; }
+            set { bonusTimePerAllySeconds_ = value; }
+        }
+
+        public int MaximumAttackersPerBattle
+        {
+            get { return maximumAttackersPerBattle_; }
+            set { maximumAttackersPerBattle_ = value; }
+        }
+
+        public float SameTypeAttackBonusMultiplier
+        {
+            get { return sameTypeAttackBonusMultiplier_; }
+            set { sameTypeAttackBonusMultiplier_ = value; }
+        }
+
+        public int MaximumEnergy
+        {
+            get { return maximumEnergy_; }
+            set { maximumEnergy_ = value; }
+        }
+
+        public float EnergyDeltaPerHealthLost
+        {
+            get { return energyDeltaPerHealthLost_; }
+            set { energyDeltaPerHealthLost_ = value; }
+        }
+
+        public int DodgeDurationMs
+        {
+            get { return dodgeDurationMs_; }
+            set { dodgeDurationMs_ = value; }
+        }
+
+        public int MinimumPlayerLevel
+        {
+            get { return minimumPlayerLevel_; }
+            set { minimumPlayerLevel_ = value; }
+        }
+
+        public int SwapDurationMs
+        {
+            get { return swapDurationMs_; }
+            set { swapDurationMs_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GymBattleSettings Clone()
+        {
+            return new GymBattleSettings(this);
+        }
+
+        public bool Equals(GymBattleSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (EnergyPerSec != other.EnergyPerSec) return false;
+            if (DodgeEnergyCost != other.DodgeEnergyCost) return false;
+            if (RetargetSeconds != other.RetargetSeconds) return false;
+            if (EnemyAttackInterval != other.EnemyAttackInterval) return false;
+            if (AttackServerInterval != other.AttackServerInterval) return false;
+            if (RoundDurationSeconds != other.RoundDurationSeconds) return false;
+            if (BonusTimePerAllySeconds != other.BonusTimePerAllySeconds) return false;
+            if (MaximumAttackersPerBattle != other.MaximumAttackersPerBattle) return false;
+            if (SameTypeAttackBonusMultiplier != other.SameTypeAttackBonusMultiplier) return false;
+            if (MaximumEnergy != other.MaximumEnergy) return false;
+            if (EnergyDeltaPerHealthLost != other.EnergyDeltaPerHealthLost) return false;
+            if (DodgeDurationMs != other.DodgeDurationMs) return false;
+            if (MinimumPlayerLevel != other.MinimumPlayerLevel) return false;
+            if (SwapDurationMs != other.SwapDurationMs) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (EnergyPerSec != 0F)
+            {
+                output.WriteRawTag(13);
+                output.WriteFloat(EnergyPerSec);
+            }
+            if (DodgeEnergyCost != 0F)
+            {
+                output.WriteRawTag(21);
+                output.WriteFloat(DodgeEnergyCost);
+            }
+            if (RetargetSeconds != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(RetargetSeconds);
+            }
+            if (EnemyAttackInterval != 0F)
+            {
+                output.WriteRawTag(37);
+                output.WriteFloat(EnemyAttackInterval);
+            }
+            if (AttackServerInterval != 0F)
+            {
+                output.WriteRawTag(45);
+                output.WriteFloat(AttackServerInterval);
+            }
+            if (RoundDurationSeconds != 0F)
+            {
+                output.WriteRawTag(53);
+                output.WriteFloat(RoundDurationSeconds);
+            }
+            if (BonusTimePerAllySeconds != 0F)
+            {
+                output.WriteRawTag(61);
+                output.WriteFloat(BonusTimePerAllySeconds);
+            }
+            if (MaximumAttackersPerBattle != 0)
+            {
+                output.WriteRawTag(64);
+                output.WriteInt32(MaximumAttackersPerBattle);
+            }
+            if (SameTypeAttackBonusMultiplier != 0F)
+            {
+                output.WriteRawTag(77);
+                output.WriteFloat(SameTypeAttackBonusMultiplier);
+            }
+            if (MaximumEnergy != 0)
+            {
+                output.WriteRawTag(80);
+                output.WriteInt32(MaximumEnergy);
+            }
+            if (EnergyDeltaPerHealthLost != 0F)
+            {
+                output.WriteRawTag(93);
+                output.WriteFloat(EnergyDeltaPerHealthLost);
+            }
+            if (DodgeDurationMs != 0)
+            {
+                output.WriteRawTag(96);
+                output.WriteInt32(DodgeDurationMs);
+            }
+            if (MinimumPlayerLevel != 0)
+            {
+                output.WriteRawTag(104);
+                output.WriteInt32(MinimumPlayerLevel);
+            }
+            if (SwapDurationMs != 0)
+            {
+                output.WriteRawTag(112);
+                output.WriteInt32(SwapDurationMs);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (EnergyPerSec != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (DodgeEnergyCost != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (RetargetSeconds != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (EnemyAttackInterval != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (AttackServerInterval != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (RoundDurationSeconds != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (BonusTimePerAllySeconds != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (MaximumAttackersPerBattle != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaximumAttackersPerBattle);
+            }
+            if (SameTypeAttackBonusMultiplier != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (MaximumEnergy != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaximumEnergy);
+            }
+            if (EnergyDeltaPerHealthLost != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (DodgeDurationMs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DodgeDurationMs);
+            }
+            if (MinimumPlayerLevel != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MinimumPlayerLevel);
+            }
+            if (SwapDurationMs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(SwapDurationMs);
+            }
+            return size;
+        }
+
+        public void MergeFrom(GymBattleSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.EnergyPerSec != 0F)
+            {
+                EnergyPerSec = other.EnergyPerSec;
+            }
+            if (other.DodgeEnergyCost != 0F)
+            {
+                DodgeEnergyCost = other.DodgeEnergyCost;
+            }
+            if (other.RetargetSeconds != 0F)
+            {
+                RetargetSeconds = other.RetargetSeconds;
+            }
+            if (other.EnemyAttackInterval != 0F)
+            {
+                EnemyAttackInterval = other.EnemyAttackInterval;
+            }
+            if (other.AttackServerInterval != 0F)
+            {
+                AttackServerInterval = other.AttackServerInterval;
+            }
+            if (other.RoundDurationSeconds != 0F)
+            {
+                RoundDurationSeconds = other.RoundDurationSeconds;
+            }
+            if (other.BonusTimePerAllySeconds != 0F)
+            {
+                BonusTimePerAllySeconds = other.BonusTimePerAllySeconds;
+            }
+            if (other.MaximumAttackersPerBattle != 0)
+            {
+                MaximumAttackersPerBattle = other.MaximumAttackersPerBattle;
+            }
+            if (other.SameTypeAttackBonusMultiplier != 0F)
+            {
+                SameTypeAttackBonusMultiplier = other.SameTypeAttackBonusMultiplier;
+            }
+            if (other.MaximumEnergy != 0)
+            {
+                MaximumEnergy = other.MaximumEnergy;
+            }
+            if (other.EnergyDeltaPerHealthLost != 0F)
+            {
+                EnergyDeltaPerHealthLost = other.EnergyDeltaPerHealthLost;
+            }
+            if (other.DodgeDurationMs != 0)
+            {
+                DodgeDurationMs = other.DodgeDurationMs;
+            }
+            if (other.MinimumPlayerLevel != 0)
+            {
+                MinimumPlayerLevel = other.MinimumPlayerLevel;
+            }
+            if (other.SwapDurationMs != 0)
+            {
+                SwapDurationMs = other.SwapDurationMs;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 13:
+                        {
+                            EnergyPerSec = input.ReadFloat();
+                            break;
+                        }
+                    case 21:
+                        {
+                            DodgeEnergyCost = input.ReadFloat();
+                            break;
+                        }
+                    case 29:
+                        {
+                            RetargetSeconds = input.ReadFloat();
+                            break;
+                        }
+                    case 37:
+                        {
+                            EnemyAttackInterval = input.ReadFloat();
+                            break;
+                        }
+                    case 45:
+                        {
+                            AttackServerInterval = input.ReadFloat();
+                            break;
+                        }
+                    case 53:
+                        {
+                            RoundDurationSeconds = input.ReadFloat();
+                            break;
+                        }
+                    case 61:
+                        {
+                            BonusTimePerAllySeconds = input.ReadFloat();
+                            break;
+                        }
+                    case 64:
+                        {
+                            MaximumAttackersPerBattle = input.ReadInt32();
+                            break;
+                        }
+                    case 77:
+                        {
+                            SameTypeAttackBonusMultiplier = input.ReadFloat();
+                            break;
+                        }
+                    case 80:
+                        {
+                            MaximumEnergy = input.ReadInt32();
+                            break;
+                        }
+                    case 93:
+                        {
+                            EnergyDeltaPerHealthLost = input.ReadFloat();
+                            break;
+                        }
+                    case 96:
+                        {
+                            DodgeDurationMs = input.ReadInt32();
+                            break;
+                        }
+                    case 104:
+                        {
+                            MinimumPlayerLevel = input.ReadInt32();
+                            break;
+                        }
+                    case 112:
+                        {
+                            SwapDurationMs = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GymBattleSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (EnergyPerSec != 0F) hash ^= EnergyPerSec.GetHashCode();
+            if (DodgeEnergyCost != 0F) hash ^= DodgeEnergyCost.GetHashCode();
+            if (RetargetSeconds != 0F) hash ^= RetargetSeconds.GetHashCode();
+            if (EnemyAttackInterval != 0F) hash ^= EnemyAttackInterval.GetHashCode();
+            if (AttackServerInterval != 0F) hash ^= AttackServerInterval.GetHashCode();
+            if (RoundDurationSeconds != 0F) hash ^= RoundDurationSeconds.GetHashCode();
+            if (BonusTimePerAllySeconds != 0F) hash ^= BonusTimePerAllySeconds.GetHashCode();
+            if (MaximumAttackersPerBattle != 0) hash ^= MaximumAttackersPerBattle.GetHashCode();
+            if (SameTypeAttackBonusMultiplier != 0F) hash ^= SameTypeAttackBonusMultiplier.GetHashCode();
+            if (MaximumEnergy != 0) hash ^= MaximumEnergy.GetHashCode();
+            if (EnergyDeltaPerHealthLost != 0F) hash ^= EnergyDeltaPerHealthLost.GetHashCode();
+            if (DodgeDurationMs != 0) hash ^= DodgeDurationMs.GetHashCode();
+            if (MinimumPlayerLevel != 0) hash ^= MinimumPlayerLevel.GetHashCode();
+            if (SwapDurationMs != 0) hash ^= SwapDurationMs.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class GymLevelSettings : pb::IMessage<GymLevelSettings>
+    {
+        /// <summary>Field number for the "required_experience" field.</summary>
+        public const int RequiredExperienceFieldNumber = 1;
+
+        /// <summary>Field number for the "leader_slots" field.</summary>
+        public const int LeaderSlotsFieldNumber = 2;
+
+        /// <summary>Field number for the "trainer_slots" field.</summary>
+        public const int TrainerSlotsFieldNumber = 3;
+
+        /// <summary>Field number for the "search_roll_bonus" field.</summary>
+        public const int SearchRollBonusFieldNumber = 4;
+
+        private static readonly pb::MessageParser<GymLevelSettings> _parser =
+            new pb::MessageParser<GymLevelSettings>(() => new GymLevelSettings());
+
+        private static readonly pb::FieldCodec<int> _repeated_requiredExperience_codec
+            = pb::FieldCodec.ForInt32(10);
+
+        private static readonly pb::FieldCodec<int> _repeated_leaderSlots_codec
+            = pb::FieldCodec.ForInt32(18);
+
+        private static readonly pb::FieldCodec<int> _repeated_trainerSlots_codec
+            = pb::FieldCodec.ForInt32(26);
+
+        private static readonly pb::FieldCodec<int> _repeated_searchRollBonus_codec
+            = pb::FieldCodec.ForInt32(34);
+
+        private readonly pbc::RepeatedField<int> leaderSlots_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<int> requiredExperience_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<int> searchRollBonus_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<int> trainerSlots_ = new pbc::RepeatedField<int>();
+
+        public GymLevelSettings()
+        {
+            OnConstruction();
+        }
+
+        public GymLevelSettings(GymLevelSettings other) : this()
+        {
+            requiredExperience_ = other.requiredExperience_.Clone();
+            leaderSlots_ = other.leaderSlots_.Clone();
+            trainerSlots_ = other.trainerSlots_.Clone();
+            searchRollBonus_ = other.searchRollBonus_.Clone();
+        }
+
+        public static pb::MessageParser<GymLevelSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[72]; }
+        }
+
+        public pbc::RepeatedField<int> RequiredExperience
+        {
+            get { return requiredExperience_; }
+        }
+
+        public pbc::RepeatedField<int> LeaderSlots
+        {
+            get { return leaderSlots_; }
+        }
+
+        public pbc::RepeatedField<int> TrainerSlots
+        {
+            get { return trainerSlots_; }
+        }
+
+        public pbc::RepeatedField<int> SearchRollBonus
+        {
+            get { return searchRollBonus_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public GymLevelSettings Clone()
+        {
+            return new GymLevelSettings(this);
+        }
+
+        public bool Equals(GymLevelSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!requiredExperience_.Equals(other.requiredExperience_)) return false;
+            if (!leaderSlots_.Equals(other.leaderSlots_)) return false;
+            if (!trainerSlots_.Equals(other.trainerSlots_)) return false;
+            if (!searchRollBonus_.Equals(other.searchRollBonus_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            requiredExperience_.WriteTo(output, _repeated_requiredExperience_codec);
+            leaderSlots_.WriteTo(output, _repeated_leaderSlots_codec);
+            trainerSlots_.WriteTo(output, _repeated_trainerSlots_codec);
+            searchRollBonus_.WriteTo(output, _repeated_searchRollBonus_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += requiredExperience_.CalculateSize(_repeated_requiredExperience_codec);
+            size += leaderSlots_.CalculateSize(_repeated_leaderSlots_codec);
+            size += trainerSlots_.CalculateSize(_repeated_trainerSlots_codec);
+            size += searchRollBonus_.CalculateSize(_repeated_searchRollBonus_codec);
+            return size;
+        }
+
+        public void MergeFrom(GymLevelSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            requiredExperience_.Add(other.requiredExperience_);
+            leaderSlots_.Add(other.leaderSlots_);
+            trainerSlots_.Add(other.trainerSlots_);
+            searchRollBonus_.Add(other.searchRollBonus_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                    case 8:
+                        {
+                            requiredExperience_.AddEntriesFrom(input, _repeated_requiredExperience_codec);
+                            break;
+                        }
+                    case 18:
+                    case 16:
+                        {
+                            leaderSlots_.AddEntriesFrom(input, _repeated_leaderSlots_codec);
+                            break;
+                        }
+                    case 26:
+                    case 24:
+                        {
+                            trainerSlots_.AddEntriesFrom(input, _repeated_trainerSlots_codec);
+                            break;
+                        }
+                    case 34:
+                    case 32:
+                        {
+                            searchRollBonus_.AddEntriesFrom(input, _repeated_searchRollBonus_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as GymLevelSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= requiredExperience_.GetHashCode();
+            hash ^= leaderSlots_.GetHashCode();
+            hash ^= trainerSlots_.GetHashCode();
+            hash ^= searchRollBonus_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PlayerLevelSettings : pb::IMessage<PlayerLevelSettings>
+    {
+        /// <summary>Field number for the "rank_num" field.</summary>
+        public const int RankNumFieldNumber = 1;
+
+        /// <summary>Field number for the "required_experience" field.</summary>
+        public const int RequiredExperienceFieldNumber = 2;
+
+        /// <summary>Field number for the "cp_multiplier" field.</summary>
+        public const int CpMultiplierFieldNumber = 3;
+
+        /// <summary>Field number for the "max_egg_player_level" field.</summary>
+        public const int MaxEggPlayerLevelFieldNumber = 4;
+
+        /// <summary>Field number for the "max_encounter_player_level" field.</summary>
+        public const int MaxEncounterPlayerLevelFieldNumber = 5;
+
+        private static readonly pb::MessageParser<PlayerLevelSettings> _parser =
+            new pb::MessageParser<PlayerLevelSettings>(() => new PlayerLevelSettings());
+
+        private static readonly pb::FieldCodec<int> _repeated_rankNum_codec
+            = pb::FieldCodec.ForInt32(10);
+
+        private static readonly pb::FieldCodec<int> _repeated_requiredExperience_codec
+            = pb::FieldCodec.ForInt32(18);
+
+        private static readonly pb::FieldCodec<float> _repeated_cpMultiplier_codec
+            = pb::FieldCodec.ForFloat(26);
+
+        private readonly pbc::RepeatedField<float> cpMultiplier_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<int> rankNum_ = new pbc::RepeatedField<int>();
+        private readonly pbc::RepeatedField<int> requiredExperience_ = new pbc::RepeatedField<int>();
+        private int maxEggPlayerLevel_;
+        private int maxEncounterPlayerLevel_;
+
+        public PlayerLevelSettings()
+        {
+            OnConstruction();
+        }
+
+        public PlayerLevelSettings(PlayerLevelSettings other) : this()
+        {
+            rankNum_ = other.rankNum_.Clone();
+            requiredExperience_ = other.requiredExperience_.Clone();
+            cpMultiplier_ = other.cpMultiplier_.Clone();
+            maxEggPlayerLevel_ = other.maxEggPlayerLevel_;
+            maxEncounterPlayerLevel_ = other.maxEncounterPlayerLevel_;
+        }
+
+        public static pb::MessageParser<PlayerLevelSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[73]; }
+        }
+
+        public pbc::RepeatedField<int> RankNum
+        {
+            get { return rankNum_; }
+        }
+
+        public pbc::RepeatedField<int> RequiredExperience
+        {
+            get { return requiredExperience_; }
+        }
+
+        public pbc::RepeatedField<float> CpMultiplier
+        {
+            get { return cpMultiplier_; }
+        }
+
+        public int MaxEggPlayerLevel
+        {
+            get { return maxEggPlayerLevel_; }
+            set { maxEggPlayerLevel_ = value; }
+        }
+
+        public int MaxEncounterPlayerLevel
+        {
+            get { return maxEncounterPlayerLevel_; }
+            set { maxEncounterPlayerLevel_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PlayerLevelSettings Clone()
+        {
+            return new PlayerLevelSettings(this);
+        }
+
+        public bool Equals(PlayerLevelSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!rankNum_.Equals(other.rankNum_)) return false;
+            if (!requiredExperience_.Equals(other.requiredExperience_)) return false;
+            if (!cpMultiplier_.Equals(other.cpMultiplier_)) return false;
+            if (MaxEggPlayerLevel != other.MaxEggPlayerLevel) return false;
+            if (MaxEncounterPlayerLevel != other.MaxEncounterPlayerLevel) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            rankNum_.WriteTo(output, _repeated_rankNum_codec);
+            requiredExperience_.WriteTo(output, _repeated_requiredExperience_codec);
+            cpMultiplier_.WriteTo(output, _repeated_cpMultiplier_codec);
+            if (MaxEggPlayerLevel != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(MaxEggPlayerLevel);
+            }
+            if (MaxEncounterPlayerLevel != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(MaxEncounterPlayerLevel);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += rankNum_.CalculateSize(_repeated_rankNum_codec);
+            size += requiredExperience_.CalculateSize(_repeated_requiredExperience_codec);
+            size += cpMultiplier_.CalculateSize(_repeated_cpMultiplier_codec);
+            if (MaxEggPlayerLevel != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxEggPlayerLevel);
+            }
+            if (MaxEncounterPlayerLevel != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MaxEncounterPlayerLevel);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PlayerLevelSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            rankNum_.Add(other.rankNum_);
+            requiredExperience_.Add(other.requiredExperience_);
+            cpMultiplier_.Add(other.cpMultiplier_);
+            if (other.MaxEggPlayerLevel != 0)
+            {
+                MaxEggPlayerLevel = other.MaxEggPlayerLevel;
+            }
+            if (other.MaxEncounterPlayerLevel != 0)
+            {
+                MaxEncounterPlayerLevel = other.MaxEncounterPlayerLevel;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                    case 8:
+                        {
+                            rankNum_.AddEntriesFrom(input, _repeated_rankNum_codec);
+                            break;
+                        }
+                    case 18:
+                    case 16:
+                        {
+                            requiredExperience_.AddEntriesFrom(input, _repeated_requiredExperience_codec);
+                            break;
+                        }
+                    case 26:
+                    case 29:
+                        {
+                            cpMultiplier_.AddEntriesFrom(input, _repeated_cpMultiplier_codec);
+                            break;
+                        }
+                    case 32:
+                        {
+                            MaxEggPlayerLevel = input.ReadInt32();
+                            break;
+                        }
+                    case 40:
+                        {
+                            MaxEncounterPlayerLevel = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PlayerLevelSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= rankNum_.GetHashCode();
+            hash ^= requiredExperience_.GetHashCode();
+            hash ^= cpMultiplier_.GetHashCode();
+            if (MaxEggPlayerLevel != 0) hash ^= MaxEggPlayerLevel.GetHashCode();
+            if (MaxEncounterPlayerLevel != 0) hash ^= MaxEncounterPlayerLevel.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class CameraSettings : pb::IMessage<CameraSettings>
+    {
+        /// <summary>Field number for the "next_camera" field.</summary>
+        public const int NextCameraFieldNumber = 1;
+
+        /// <summary>Field number for the "interpolation" field.</summary>
+        public const int InterpolationFieldNumber = 2;
+
+        /// <summary>Field number for the "target_type" field.</summary>
+        public const int TargetTypeFieldNumber = 3;
+
+        /// <summary>Field number for the "ease_in_speed" field.</summary>
+        public const int EaseInSpeedFieldNumber = 4;
+
+        /// <summary>Field number for the "east_out_speed" field.</summary>
+        public const int EastOutSpeedFieldNumber = 5;
+
+        /// <summary>Field number for the "duration_seconds" field.</summary>
+        public const int DurationSecondsFieldNumber = 6;
+
+        /// <summary>Field number for the "wait_seconds" field.</summary>
+        public const int WaitSecondsFieldNumber = 7;
+
+        /// <summary>Field number for the "transition_seconds" field.</summary>
+        public const int TransitionSecondsFieldNumber = 8;
+
+        /// <summary>Field number for the "angle_degree" field.</summary>
+        public const int AngleDegreeFieldNumber = 9;
+
+        /// <summary>Field number for the "angle_offset_degree" field.</summary>
+        public const int AngleOffsetDegreeFieldNumber = 10;
+
+        /// <summary>Field number for the "pitch_degree" field.</summary>
+        public const int PitchDegreeFieldNumber = 11;
+
+        /// <summary>Field number for the "pitch_offset_degree" field.</summary>
+        public const int PitchOffsetDegreeFieldNumber = 12;
+
+        /// <summary>Field number for the "roll_degree" field.</summary>
+        public const int RollDegreeFieldNumber = 13;
+
+        /// <summary>Field number for the "distance_meters" field.</summary>
+        public const int DistanceMetersFieldNumber = 14;
+
+        /// <summary>Field number for the "height_percent" field.</summary>
+        public const int HeightPercentFieldNumber = 15;
+
+        /// <summary>Field number for the "vert_ctr_ratio" field.</summary>
+        public const int VertCtrRatioFieldNumber = 16;
+
+        private static readonly pb::MessageParser<CameraSettings> _parser =
+            new pb::MessageParser<CameraSettings>(() => new CameraSettings());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.CameraInterpolation>
+            _repeated_interpolation_codec
+                = pb::FieldCodec.ForEnum(18, x => (int)x,
+                    x => (global::PokemonGo.RocketAPI.GeneratedCode.CameraInterpolation)x);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.CameraTarget>
+            _repeated_targetType_codec
+                = pb::FieldCodec.ForEnum(26, x => (int)x,
+                    x => (global::PokemonGo.RocketAPI.GeneratedCode.CameraTarget)x);
+
+        private static readonly pb::FieldCodec<float> _repeated_easeInSpeed_codec
+            = pb::FieldCodec.ForFloat(34);
+
+        private static readonly pb::FieldCodec<float> _repeated_eastOutSpeed_codec
+            = pb::FieldCodec.ForFloat(42);
+
+        private static readonly pb::FieldCodec<float> _repeated_durationSeconds_codec
+            = pb::FieldCodec.ForFloat(50);
+
+        private static readonly pb::FieldCodec<float> _repeated_waitSeconds_codec
+            = pb::FieldCodec.ForFloat(58);
+
+        private static readonly pb::FieldCodec<float> _repeated_transitionSeconds_codec
+            = pb::FieldCodec.ForFloat(66);
+
+        private static readonly pb::FieldCodec<float> _repeated_angleDegree_codec
+            = pb::FieldCodec.ForFloat(74);
+
+        private static readonly pb::FieldCodec<float> _repeated_angleOffsetDegree_codec
+            = pb::FieldCodec.ForFloat(82);
+
+        private static readonly pb::FieldCodec<float> _repeated_pitchDegree_codec
+            = pb::FieldCodec.ForFloat(90);
+
+        private static readonly pb::FieldCodec<float> _repeated_pitchOffsetDegree_codec
+            = pb::FieldCodec.ForFloat(98);
+
+        private static readonly pb::FieldCodec<float> _repeated_rollDegree_codec
+            = pb::FieldCodec.ForFloat(106);
+
+        private static readonly pb::FieldCodec<float> _repeated_distanceMeters_codec
+            = pb::FieldCodec.ForFloat(114);
+
+        private static readonly pb::FieldCodec<float> _repeated_heightPercent_codec
+            = pb::FieldCodec.ForFloat(122);
+
+        private static readonly pb::FieldCodec<float> _repeated_vertCtrRatio_codec
+            = pb::FieldCodec.ForFloat(130);
+
+        private readonly pbc::RepeatedField<float> angleDegree_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> angleOffsetDegree_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> distanceMeters_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> durationSeconds_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> easeInSpeed_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> eastOutSpeed_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> heightPercent_ = new pbc::RepeatedField<float>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.CameraInterpolation>
+            interpolation_ = new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.CameraInterpolation>();
+
+        private readonly pbc::RepeatedField<float> pitchDegree_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> pitchOffsetDegree_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> rollDegree_ = new pbc::RepeatedField<float>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.CameraTarget> targetType_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.CameraTarget>();
+
+        private readonly pbc::RepeatedField<float> transitionSeconds_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> vertCtrRatio_ = new pbc::RepeatedField<float>();
+        private readonly pbc::RepeatedField<float> waitSeconds_ = new pbc::RepeatedField<float>();
+        private string nextCamera_ = "";
+
+        public CameraSettings()
+        {
+            OnConstruction();
+        }
+
+        public CameraSettings(CameraSettings other) : this()
+        {
+            nextCamera_ = other.nextCamera_;
+            interpolation_ = other.interpolation_.Clone();
+            targetType_ = other.targetType_.Clone();
+            easeInSpeed_ = other.easeInSpeed_.Clone();
+            eastOutSpeed_ = other.eastOutSpeed_.Clone();
+            durationSeconds_ = other.durationSeconds_.Clone();
+            waitSeconds_ = other.waitSeconds_.Clone();
+            transitionSeconds_ = other.transitionSeconds_.Clone();
+            angleDegree_ = other.angleDegree_.Clone();
+            angleOffsetDegree_ = other.angleOffsetDegree_.Clone();
+            pitchDegree_ = other.pitchDegree_.Clone();
+            pitchOffsetDegree_ = other.pitchOffsetDegree_.Clone();
+            rollDegree_ = other.rollDegree_.Clone();
+            distanceMeters_ = other.distanceMeters_.Clone();
+            heightPercent_ = other.heightPercent_.Clone();
+            vertCtrRatio_ = other.vertCtrRatio_.Clone();
+        }
+
+        public static pb::MessageParser<CameraSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[74]; }
+        }
+
+        public string NextCamera
+        {
+            get { return nextCamera_; }
+            set { nextCamera_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.CameraInterpolation> Interpolation
+        {
+            get { return interpolation_; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.CameraTarget> TargetType
+        {
+            get { return targetType_; }
+        }
+
+        public pbc::RepeatedField<float> EaseInSpeed
+        {
+            get { return easeInSpeed_; }
+        }
+
+        public pbc::RepeatedField<float> EastOutSpeed
+        {
+            get { return eastOutSpeed_; }
+        }
+
+        public pbc::RepeatedField<float> DurationSeconds
+        {
+            get { return durationSeconds_; }
+        }
+
+        public pbc::RepeatedField<float> WaitSeconds
+        {
+            get { return waitSeconds_; }
+        }
+
+        public pbc::RepeatedField<float> TransitionSeconds
+        {
+            get { return transitionSeconds_; }
+        }
+
+        public pbc::RepeatedField<float> AngleDegree
+        {
+            get { return angleDegree_; }
+        }
+
+        public pbc::RepeatedField<float> AngleOffsetDegree
+        {
+            get { return angleOffsetDegree_; }
+        }
+
+        public pbc::RepeatedField<float> PitchDegree
+        {
+            get { return pitchDegree_; }
+        }
+
+        public pbc::RepeatedField<float> PitchOffsetDegree
+        {
+            get { return pitchOffsetDegree_; }
+        }
+
+        public pbc::RepeatedField<float> RollDegree
+        {
+            get { return rollDegree_; }
+        }
+
+        public pbc::RepeatedField<float> DistanceMeters
+        {
+            get { return distanceMeters_; }
+        }
+
+        public pbc::RepeatedField<float> HeightPercent
+        {
+            get { return heightPercent_; }
+        }
+
+        public pbc::RepeatedField<float> VertCtrRatio
+        {
+            get { return vertCtrRatio_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public CameraSettings Clone()
+        {
+            return new CameraSettings(this);
+        }
+
+        public bool Equals(CameraSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (NextCamera != other.NextCamera) return false;
+            if (!interpolation_.Equals(other.interpolation_)) return false;
+            if (!targetType_.Equals(other.targetType_)) return false;
+            if (!easeInSpeed_.Equals(other.easeInSpeed_)) return false;
+            if (!eastOutSpeed_.Equals(other.eastOutSpeed_)) return false;
+            if (!durationSeconds_.Equals(other.durationSeconds_)) return false;
+            if (!waitSeconds_.Equals(other.waitSeconds_)) return false;
+            if (!transitionSeconds_.Equals(other.transitionSeconds_)) return false;
+            if (!angleDegree_.Equals(other.angleDegree_)) return false;
+            if (!angleOffsetDegree_.Equals(other.angleOffsetDegree_)) return false;
+            if (!pitchDegree_.Equals(other.pitchDegree_)) return false;
+            if (!pitchOffsetDegree_.Equals(other.pitchOffsetDegree_)) return false;
+            if (!rollDegree_.Equals(other.rollDegree_)) return false;
+            if (!distanceMeters_.Equals(other.distanceMeters_)) return false;
+            if (!heightPercent_.Equals(other.heightPercent_)) return false;
+            if (!vertCtrRatio_.Equals(other.vertCtrRatio_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (NextCamera.Length != 0)
+            {
+                output.WriteRawTag(10);
+                output.WriteString(NextCamera);
+            }
+            interpolation_.WriteTo(output, _repeated_interpolation_codec);
+            targetType_.WriteTo(output, _repeated_targetType_codec);
+            easeInSpeed_.WriteTo(output, _repeated_easeInSpeed_codec);
+            eastOutSpeed_.WriteTo(output, _repeated_eastOutSpeed_codec);
+            durationSeconds_.WriteTo(output, _repeated_durationSeconds_codec);
+            waitSeconds_.WriteTo(output, _repeated_waitSeconds_codec);
+            transitionSeconds_.WriteTo(output, _repeated_transitionSeconds_codec);
+            angleDegree_.WriteTo(output, _repeated_angleDegree_codec);
+            angleOffsetDegree_.WriteTo(output, _repeated_angleOffsetDegree_codec);
+            pitchDegree_.WriteTo(output, _repeated_pitchDegree_codec);
+            pitchOffsetDegree_.WriteTo(output, _repeated_pitchOffsetDegree_codec);
+            rollDegree_.WriteTo(output, _repeated_rollDegree_codec);
+            distanceMeters_.WriteTo(output, _repeated_distanceMeters_codec);
+            heightPercent_.WriteTo(output, _repeated_heightPercent_codec);
+            vertCtrRatio_.WriteTo(output, _repeated_vertCtrRatio_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (NextCamera.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(NextCamera);
+            }
+            size += interpolation_.CalculateSize(_repeated_interpolation_codec);
+            size += targetType_.CalculateSize(_repeated_targetType_codec);
+            size += easeInSpeed_.CalculateSize(_repeated_easeInSpeed_codec);
+            size += eastOutSpeed_.CalculateSize(_repeated_eastOutSpeed_codec);
+            size += durationSeconds_.CalculateSize(_repeated_durationSeconds_codec);
+            size += waitSeconds_.CalculateSize(_repeated_waitSeconds_codec);
+            size += transitionSeconds_.CalculateSize(_repeated_transitionSeconds_codec);
+            size += angleDegree_.CalculateSize(_repeated_angleDegree_codec);
+            size += angleOffsetDegree_.CalculateSize(_repeated_angleOffsetDegree_codec);
+            size += pitchDegree_.CalculateSize(_repeated_pitchDegree_codec);
+            size += pitchOffsetDegree_.CalculateSize(_repeated_pitchOffsetDegree_codec);
+            size += rollDegree_.CalculateSize(_repeated_rollDegree_codec);
+            size += distanceMeters_.CalculateSize(_repeated_distanceMeters_codec);
+            size += heightPercent_.CalculateSize(_repeated_heightPercent_codec);
+            size += vertCtrRatio_.CalculateSize(_repeated_vertCtrRatio_codec);
+            return size;
+        }
+
+        public void MergeFrom(CameraSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.NextCamera.Length != 0)
+            {
+                NextCamera = other.NextCamera;
+            }
+            interpolation_.Add(other.interpolation_);
+            targetType_.Add(other.targetType_);
+            easeInSpeed_.Add(other.easeInSpeed_);
+            eastOutSpeed_.Add(other.eastOutSpeed_);
+            durationSeconds_.Add(other.durationSeconds_);
+            waitSeconds_.Add(other.waitSeconds_);
+            transitionSeconds_.Add(other.transitionSeconds_);
+            angleDegree_.Add(other.angleDegree_);
+            angleOffsetDegree_.Add(other.angleOffsetDegree_);
+            pitchDegree_.Add(other.pitchDegree_);
+            pitchOffsetDegree_.Add(other.pitchOffsetDegree_);
+            rollDegree_.Add(other.rollDegree_);
+            distanceMeters_.Add(other.distanceMeters_);
+            heightPercent_.Add(other.heightPercent_);
+            vertCtrRatio_.Add(other.vertCtrRatio_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            NextCamera = input.ReadString();
+                            break;
+                        }
+                    case 18:
+                    case 16:
+                        {
+                            interpolation_.AddEntriesFrom(input, _repeated_interpolation_codec);
+                            break;
+                        }
+                    case 26:
+                    case 24:
+                        {
+                            targetType_.AddEntriesFrom(input, _repeated_targetType_codec);
+                            break;
+                        }
+                    case 34:
+                    case 37:
+                        {
+                            easeInSpeed_.AddEntriesFrom(input, _repeated_easeInSpeed_codec);
+                            break;
+                        }
+                    case 42:
+                    case 45:
+                        {
+                            eastOutSpeed_.AddEntriesFrom(input, _repeated_eastOutSpeed_codec);
+                            break;
+                        }
+                    case 50:
+                    case 53:
+                        {
+                            durationSeconds_.AddEntriesFrom(input, _repeated_durationSeconds_codec);
+                            break;
+                        }
+                    case 58:
+                    case 61:
+                        {
+                            waitSeconds_.AddEntriesFrom(input, _repeated_waitSeconds_codec);
+                            break;
+                        }
+                    case 66:
+                    case 69:
+                        {
+                            transitionSeconds_.AddEntriesFrom(input, _repeated_transitionSeconds_codec);
+                            break;
+                        }
+                    case 74:
+                    case 77:
+                        {
+                            angleDegree_.AddEntriesFrom(input, _repeated_angleDegree_codec);
+                            break;
+                        }
+                    case 82:
+                    case 85:
+                        {
+                            angleOffsetDegree_.AddEntriesFrom(input, _repeated_angleOffsetDegree_codec);
+                            break;
+                        }
+                    case 90:
+                    case 93:
+                        {
+                            pitchDegree_.AddEntriesFrom(input, _repeated_pitchDegree_codec);
+                            break;
+                        }
+                    case 98:
+                    case 101:
+                        {
+                            pitchOffsetDegree_.AddEntriesFrom(input, _repeated_pitchOffsetDegree_codec);
+                            break;
+                        }
+                    case 106:
+                    case 109:
+                        {
+                            rollDegree_.AddEntriesFrom(input, _repeated_rollDegree_codec);
+                            break;
+                        }
+                    case 114:
+                    case 117:
+                        {
+                            distanceMeters_.AddEntriesFrom(input, _repeated_distanceMeters_codec);
+                            break;
+                        }
+                    case 122:
+                    case 125:
+                        {
+                            heightPercent_.AddEntriesFrom(input, _repeated_heightPercent_codec);
+                            break;
+                        }
+                    case 130:
+                    case 133:
+                        {
+                            vertCtrRatio_.AddEntriesFrom(input, _repeated_vertCtrRatio_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as CameraSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (NextCamera.Length != 0) hash ^= NextCamera.GetHashCode();
+            hash ^= interpolation_.GetHashCode();
+            hash ^= targetType_.GetHashCode();
+            hash ^= easeInSpeed_.GetHashCode();
+            hash ^= eastOutSpeed_.GetHashCode();
+            hash ^= durationSeconds_.GetHashCode();
+            hash ^= waitSeconds_.GetHashCode();
+            hash ^= transitionSeconds_.GetHashCode();
+            hash ^= angleDegree_.GetHashCode();
+            hash ^= angleOffsetDegree_.GetHashCode();
+            hash ^= pitchDegree_.GetHashCode();
+            hash ^= pitchOffsetDegree_.GetHashCode();
+            hash ^= rollDegree_.GetHashCode();
+            hash ^= distanceMeters_.GetHashCode();
+            hash ^= heightPercent_.GetHashCode();
+            hash ^= vertCtrRatio_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class BadgeSettings : pb::IMessage<BadgeSettings>
+    {
+        /// <summary>Field number for the "badge_type" field.</summary>
+        public const int BadgeTypeFieldNumber = 1;
+
+        /// <summary>Field number for the "badge_rank" field.</summary>
+        public const int BadgeRankFieldNumber = 2;
+
+        /// <summary>Field number for the "targets" field.</summary>
+        public const int TargetsFieldNumber = 3;
+
+        private static readonly pb::MessageParser<BadgeSettings> _parser =
+            new pb::MessageParser<BadgeSettings>(() => new BadgeSettings());
+
+        private static readonly pb::FieldCodec<int> _repeated_targets_codec
+            = pb::FieldCodec.ForInt32(26);
+
+        private readonly pbc::RepeatedField<int> targets_ = new pbc::RepeatedField<int>();
+        private int badgeRank_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.BadgeType badgeType_ = 0;
+
+        public BadgeSettings()
+        {
+            OnConstruction();
+        }
+
+        public BadgeSettings(BadgeSettings other) : this()
+        {
+            badgeType_ = other.badgeType_;
+            badgeRank_ = other.badgeRank_;
+            targets_ = other.targets_.Clone();
+        }
+
+        public static pb::MessageParser<BadgeSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[75]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.BadgeType BadgeType
+        {
+            get { return badgeType_; }
+            set { badgeType_ = value; }
+        }
+
+        public int BadgeRank
+        {
+            get { return badgeRank_; }
+            set { badgeRank_ = value; }
+        }
+
+        public pbc::RepeatedField<int> Targets
+        {
+            get { return targets_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public BadgeSettings Clone()
+        {
+            return new BadgeSettings(this);
+        }
+
+        public bool Equals(BadgeSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (BadgeType != other.BadgeType) return false;
+            if (BadgeRank != other.BadgeRank) return false;
+            if (!targets_.Equals(other.targets_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (BadgeType != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)BadgeType);
+            }
+            if (BadgeRank != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(BadgeRank);
+            }
+            targets_.WriteTo(output, _repeated_targets_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (BadgeType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)BadgeType);
+            }
+            if (BadgeRank != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BadgeRank);
+            }
+            size += targets_.CalculateSize(_repeated_targets_codec);
+            return size;
+        }
+
+        public void MergeFrom(BadgeSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.BadgeType != 0)
+            {
+                BadgeType = other.BadgeType;
+            }
+            if (other.BadgeRank != 0)
+            {
+                BadgeRank = other.BadgeRank;
+            }
+            targets_.Add(other.targets_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            badgeType_ = (global::PokemonGo.RocketAPI.GeneratedCode.BadgeType)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            BadgeRank = input.ReadInt32();
+                            break;
+                        }
+                    case 26:
+                    case 24:
+                        {
+                            targets_.AddEntriesFrom(input, _repeated_targets_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as BadgeSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (BadgeType != 0) hash ^= BadgeType.GetHashCode();
+            if (BadgeRank != 0) hash ^= BadgeRank.GetHashCode();
+            hash ^= targets_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class TypeEffectiveSettings : pb::IMessage<TypeEffectiveSettings>
+    {
+        /// <summary>Field number for the "attack_scalar" field.</summary>
+        public const int AttackScalarFieldNumber = 1;
+
+        /// <summary>Field number for the "attack_type" field.</summary>
+        public const int AttackTypeFieldNumber = 2;
+
+        private static readonly pb::MessageParser<TypeEffectiveSettings> _parser =
+            new pb::MessageParser<TypeEffectiveSettings>(() => new TypeEffectiveSettings());
+
+        private static readonly pb::FieldCodec<float> _repeated_attackScalar_codec
+            = pb::FieldCodec.ForFloat(10);
+
+        private readonly pbc::RepeatedField<float> attackScalar_ = new pbc::RepeatedField<float>();
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonType attackType_ = 0;
+
+        public TypeEffectiveSettings()
+        {
+            OnConstruction();
+        }
+
+        public TypeEffectiveSettings(TypeEffectiveSettings other) : this()
+        {
+            attackScalar_ = other.attackScalar_.Clone();
+            attackType_ = other.attackType_;
+        }
+
+        public static pb::MessageParser<TypeEffectiveSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[76]; }
+        }
+
+        public pbc::RepeatedField<float> AttackScalar
+        {
+            get { return attackScalar_; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonType AttackType
+        {
+            get { return attackType_; }
+            set { attackType_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public TypeEffectiveSettings Clone()
+        {
+            return new TypeEffectiveSettings(this);
+        }
+
+        public bool Equals(TypeEffectiveSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!attackScalar_.Equals(other.attackScalar_)) return false;
+            if (AttackType != other.AttackType) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            attackScalar_.WriteTo(output, _repeated_attackScalar_codec);
+            if (AttackType != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)AttackType);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += attackScalar_.CalculateSize(_repeated_attackScalar_codec);
+            if (AttackType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)AttackType);
+            }
+            return size;
+        }
+
+        public void MergeFrom(TypeEffectiveSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            attackScalar_.Add(other.attackScalar_);
+            if (other.AttackType != 0)
+            {
+                AttackType = other.AttackType;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                    case 13:
+                        {
+                            attackScalar_.AddEntriesFrom(input, _repeated_attackScalar_codec);
+                            break;
+                        }
+                    case 16:
+                        {
+                            attackType_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonType)input.ReadEnum();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as TypeEffectiveSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= attackScalar_.GetHashCode();
+            if (AttackType != 0) hash ^= AttackType.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class MoveSequenceSettings : pb::IMessage<MoveSequenceSettings>
+    {
+        /// <summary>Field number for the "sequence" field.</summary>
+        public const int SequenceFieldNumber = 1;
+
+        private static readonly pb::MessageParser<MoveSequenceSettings> _parser =
+            new pb::MessageParser<MoveSequenceSettings>(() => new MoveSequenceSettings());
+
+        private static readonly pb::FieldCodec<string> _repeated_sequence_codec
+            = pb::FieldCodec.ForString(10);
+
+        private readonly pbc::RepeatedField<string> sequence_ = new pbc::RepeatedField<string>();
+
+        public MoveSequenceSettings()
+        {
+            OnConstruction();
+        }
+
+        public MoveSequenceSettings(MoveSequenceSettings other) : this()
+        {
+            sequence_ = other.sequence_.Clone();
+        }
+
+        public static pb::MessageParser<MoveSequenceSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[77]; }
+        }
+
+        public pbc::RepeatedField<string> Sequence
+        {
+            get { return sequence_; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public MoveSequenceSettings Clone()
+        {
+            return new MoveSequenceSettings(this);
+        }
+
+        public bool Equals(MoveSequenceSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!sequence_.Equals(other.sequence_)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            sequence_.WriteTo(output, _repeated_sequence_codec);
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += sequence_.CalculateSize(_repeated_sequence_codec);
+            return size;
+        }
+
+        public void MergeFrom(MoveSequenceSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            sequence_.Add(other.sequence_);
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                        {
+                            sequence_.AddEntriesFrom(input, _repeated_sequence_codec);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as MoveSequenceSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= sequence_.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class MoveSettings : pb::IMessage<MoveSettings>
+    {
+        /// <summary>Field number for the "movement_id" field.</summary>
+        public const int MovementIdFieldNumber = 1;
+
+        /// <summary>Field number for the "animation_id" field.</summary>
+        public const int AnimationIdFieldNumber = 2;
+
+        /// <summary>Field number for the "pokemon_type" field.</summary>
+        public const int PokemonTypeFieldNumber = 3;
+
+        /// <summary>Field number for the "power" field.</summary>
+        public const int PowerFieldNumber = 4;
+
+        /// <summary>Field number for the "accuracy_chance" field.</summary>
+        public const int AccuracyChanceFieldNumber = 5;
+
+        /// <summary>Field number for the "critical_chance" field.</summary>
+        public const int CriticalChanceFieldNumber = 6;
+
+        /// <summary>Field number for the "heal_scalar" field.</summary>
+        public const int HealScalarFieldNumber = 7;
+
+        /// <summary>Field number for the "stamina_loss_scalar" field.</summary>
+        public const int StaminaLossScalarFieldNumber = 8;
+
+        /// <summary>Field number for the "trainer_level_min" field.</summary>
+        public const int TrainerLevelMinFieldNumber = 9;
+
+        /// <summary>Field number for the "trainer_level_max" field.</summary>
+        public const int TrainerLevelMaxFieldNumber = 10;
+
+        /// <summary>Field number for the "vfx_name" field.</summary>
+        public const int VfxNameFieldNumber = 11;
+
+        /// <summary>Field number for the "duration_ms" field.</summary>
+        public const int DurationMsFieldNumber = 12;
+
+        /// <summary>Field number for the "damage_window_start_ms" field.</summary>
+        public const int DamageWindowStartMsFieldNumber = 13;
+
+        /// <summary>Field number for the "damage_window_end_ms" field.</summary>
+        public const int DamageWindowEndMsFieldNumber = 14;
+
+        /// <summary>Field number for the "energy_delta" field.</summary>
+        public const int EnergyDeltaFieldNumber = 15;
+
+        private static readonly pb::MessageParser<MoveSettings> _parser =
+            new pb::MessageParser<MoveSettings>(() => new MoveSettings());
+
+        private float accuracyChance_;
+        private int animationId_;
+        private float criticalChance_;
+        private int damageWindowEndMs_;
+        private int damageWindowStartMs_;
+        private int durationMs_;
+        private int energyDelta_;
+        private float healScalar_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonMovementType movementId_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonType pokemonType_ = 0;
+        private float power_;
+        private float staminaLossScalar_;
+        private int trainerLevelMax_;
+        private int trainerLevelMin_;
+        private string vfxName_ = "";
+
+        public MoveSettings()
+        {
+            OnConstruction();
+        }
+
+        public MoveSettings(MoveSettings other) : this()
+        {
+            movementId_ = other.movementId_;
+            animationId_ = other.animationId_;
+            pokemonType_ = other.pokemonType_;
+            power_ = other.power_;
+            accuracyChance_ = other.accuracyChance_;
+            criticalChance_ = other.criticalChance_;
+            healScalar_ = other.healScalar_;
+            staminaLossScalar_ = other.staminaLossScalar_;
+            trainerLevelMin_ = other.trainerLevelMin_;
+            trainerLevelMax_ = other.trainerLevelMax_;
+            vfxName_ = other.vfxName_;
+            durationMs_ = other.durationMs_;
+            damageWindowStartMs_ = other.damageWindowStartMs_;
+            damageWindowEndMs_ = other.damageWindowEndMs_;
+            energyDelta_ = other.energyDelta_;
+        }
+
+        public static pb::MessageParser<MoveSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[78]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonMovementType MovementId
+        {
+            get { return movementId_; }
+            set { movementId_ = value; }
+        }
+
+        public int AnimationId
+        {
+            get { return animationId_; }
+            set { animationId_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonType PokemonType
+        {
+            get { return pokemonType_; }
+            set { pokemonType_ = value; }
+        }
+
+        public float Power
+        {
+            get { return power_; }
+            set { power_ = value; }
+        }
+
+        public float AccuracyChance
+        {
+            get { return accuracyChance_; }
+            set { accuracyChance_ = value; }
+        }
+
+        public float CriticalChance
+        {
+            get { return criticalChance_; }
+            set { criticalChance_ = value; }
+        }
+
+        public float HealScalar
+        {
+            get { return healScalar_; }
+            set { healScalar_ = value; }
+        }
+
+        public float StaminaLossScalar
+        {
+            get { return staminaLossScalar_; }
+            set { staminaLossScalar_ = value; }
+        }
+
+        public int TrainerLevelMin
+        {
+            get { return trainerLevelMin_; }
+            set { trainerLevelMin_ = value; }
+        }
+
+        public int TrainerLevelMax
+        {
+            get { return trainerLevelMax_; }
+            set { trainerLevelMax_ = value; }
+        }
+
+        public string VfxName
+        {
+            get { return vfxName_; }
+            set { vfxName_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); }
+        }
+
+        public int DurationMs
+        {
+            get { return durationMs_; }
+            set { durationMs_ = value; }
+        }
+
+        public int DamageWindowStartMs
+        {
+            get { return damageWindowStartMs_; }
+            set { damageWindowStartMs_ = value; }
+        }
+
+        public int DamageWindowEndMs
+        {
+            get { return damageWindowEndMs_; }
+            set { damageWindowEndMs_ = value; }
+        }
+
+        public int EnergyDelta
+        {
+            get { return energyDelta_; }
+            set { energyDelta_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public MoveSettings Clone()
+        {
+            return new MoveSettings(this);
+        }
+
+        public bool Equals(MoveSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (MovementId != other.MovementId) return false;
+            if (AnimationId != other.AnimationId) return false;
+            if (PokemonType != other.PokemonType) return false;
+            if (Power != other.Power) return false;
+            if (AccuracyChance != other.AccuracyChance) return false;
+            if (CriticalChance != other.CriticalChance) return false;
+            if (HealScalar != other.HealScalar) return false;
+            if (StaminaLossScalar != other.StaminaLossScalar) return false;
+            if (TrainerLevelMin != other.TrainerLevelMin) return false;
+            if (TrainerLevelMax != other.TrainerLevelMax) return false;
+            if (VfxName != other.VfxName) return false;
+            if (DurationMs != other.DurationMs) return false;
+            if (DamageWindowStartMs != other.DamageWindowStartMs) return false;
+            if (DamageWindowEndMs != other.DamageWindowEndMs) return false;
+            if (EnergyDelta != other.EnergyDelta) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (MovementId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)MovementId);
+            }
+            if (AnimationId != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(AnimationId);
+            }
+            if (PokemonType != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteEnum((int)PokemonType);
+            }
+            if (Power != 0F)
+            {
+                output.WriteRawTag(37);
+                output.WriteFloat(Power);
+            }
+            if (AccuracyChance != 0F)
+            {
+                output.WriteRawTag(45);
+                output.WriteFloat(AccuracyChance);
+            }
+            if (CriticalChance != 0F)
+            {
+                output.WriteRawTag(53);
+                output.WriteFloat(CriticalChance);
+            }
+            if (HealScalar != 0F)
+            {
+                output.WriteRawTag(61);
+                output.WriteFloat(HealScalar);
+            }
+            if (StaminaLossScalar != 0F)
+            {
+                output.WriteRawTag(69);
+                output.WriteFloat(StaminaLossScalar);
+            }
+            if (TrainerLevelMin != 0)
+            {
+                output.WriteRawTag(72);
+                output.WriteInt32(TrainerLevelMin);
+            }
+            if (TrainerLevelMax != 0)
+            {
+                output.WriteRawTag(80);
+                output.WriteInt32(TrainerLevelMax);
+            }
+            if (VfxName.Length != 0)
+            {
+                output.WriteRawTag(90);
+                output.WriteString(VfxName);
+            }
+            if (DurationMs != 0)
+            {
+                output.WriteRawTag(96);
+                output.WriteInt32(DurationMs);
+            }
+            if (DamageWindowStartMs != 0)
+            {
+                output.WriteRawTag(104);
+                output.WriteInt32(DamageWindowStartMs);
+            }
+            if (DamageWindowEndMs != 0)
+            {
+                output.WriteRawTag(112);
+                output.WriteInt32(DamageWindowEndMs);
+            }
+            if (EnergyDelta != 0)
+            {
+                output.WriteRawTag(120);
+                output.WriteInt32(EnergyDelta);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (MovementId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)MovementId);
+            }
+            if (AnimationId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(AnimationId);
+            }
+            if (PokemonType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonType);
+            }
+            if (Power != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (AccuracyChance != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (CriticalChance != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (HealScalar != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (StaminaLossScalar != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (TrainerLevelMin != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TrainerLevelMin);
+            }
+            if (TrainerLevelMax != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TrainerLevelMax);
+            }
+            if (VfxName.Length != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeStringSize(VfxName);
+            }
+            if (DurationMs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DurationMs);
+            }
+            if (DamageWindowStartMs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DamageWindowStartMs);
+            }
+            if (DamageWindowEndMs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DamageWindowEndMs);
+            }
+            if (EnergyDelta != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EnergyDelta);
+            }
+            return size;
+        }
+
+        public void MergeFrom(MoveSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.MovementId != 0)
+            {
+                MovementId = other.MovementId;
+            }
+            if (other.AnimationId != 0)
+            {
+                AnimationId = other.AnimationId;
+            }
+            if (other.PokemonType != 0)
+            {
+                PokemonType = other.PokemonType;
+            }
+            if (other.Power != 0F)
+            {
+                Power = other.Power;
+            }
+            if (other.AccuracyChance != 0F)
+            {
+                AccuracyChance = other.AccuracyChance;
+            }
+            if (other.CriticalChance != 0F)
+            {
+                CriticalChance = other.CriticalChance;
+            }
+            if (other.HealScalar != 0F)
+            {
+                HealScalar = other.HealScalar;
+            }
+            if (other.StaminaLossScalar != 0F)
+            {
+                StaminaLossScalar = other.StaminaLossScalar;
+            }
+            if (other.TrainerLevelMin != 0)
+            {
+                TrainerLevelMin = other.TrainerLevelMin;
+            }
+            if (other.TrainerLevelMax != 0)
+            {
+                TrainerLevelMax = other.TrainerLevelMax;
+            }
+            if (other.VfxName.Length != 0)
+            {
+                VfxName = other.VfxName;
+            }
+            if (other.DurationMs != 0)
+            {
+                DurationMs = other.DurationMs;
+            }
+            if (other.DamageWindowStartMs != 0)
+            {
+                DamageWindowStartMs = other.DamageWindowStartMs;
+            }
+            if (other.DamageWindowEndMs != 0)
+            {
+                DamageWindowEndMs = other.DamageWindowEndMs;
+            }
+            if (other.EnergyDelta != 0)
+            {
+                EnergyDelta = other.EnergyDelta;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            movementId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonMovementType)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            AnimationId = input.ReadInt32();
+                            break;
+                        }
+                    case 24:
+                        {
+                            pokemonType_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonType)input.ReadEnum();
+                            break;
+                        }
+                    case 37:
+                        {
+                            Power = input.ReadFloat();
+                            break;
+                        }
+                    case 45:
+                        {
+                            AccuracyChance = input.ReadFloat();
+                            break;
+                        }
+                    case 53:
+                        {
+                            CriticalChance = input.ReadFloat();
+                            break;
+                        }
+                    case 61:
+                        {
+                            HealScalar = input.ReadFloat();
+                            break;
+                        }
+                    case 69:
+                        {
+                            StaminaLossScalar = input.ReadFloat();
+                            break;
+                        }
+                    case 72:
+                        {
+                            TrainerLevelMin = input.ReadInt32();
+                            break;
+                        }
+                    case 80:
+                        {
+                            TrainerLevelMax = input.ReadInt32();
+                            break;
+                        }
+                    case 90:
+                        {
+                            VfxName = input.ReadString();
+                            break;
+                        }
+                    case 96:
+                        {
+                            DurationMs = input.ReadInt32();
+                            break;
+                        }
+                    case 104:
+                        {
+                            DamageWindowStartMs = input.ReadInt32();
+                            break;
+                        }
+                    case 112:
+                        {
+                            DamageWindowEndMs = input.ReadInt32();
+                            break;
+                        }
+                    case 120:
+                        {
+                            EnergyDelta = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as MoveSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (MovementId != 0) hash ^= MovementId.GetHashCode();
+            if (AnimationId != 0) hash ^= AnimationId.GetHashCode();
+            if (PokemonType != 0) hash ^= PokemonType.GetHashCode();
+            if (Power != 0F) hash ^= Power.GetHashCode();
+            if (AccuracyChance != 0F) hash ^= AccuracyChance.GetHashCode();
+            if (CriticalChance != 0F) hash ^= CriticalChance.GetHashCode();
+            if (HealScalar != 0F) hash ^= HealScalar.GetHashCode();
+            if (StaminaLossScalar != 0F) hash ^= StaminaLossScalar.GetHashCode();
+            if (TrainerLevelMin != 0) hash ^= TrainerLevelMin.GetHashCode();
+            if (TrainerLevelMax != 0) hash ^= TrainerLevelMax.GetHashCode();
+            if (VfxName.Length != 0) hash ^= VfxName.GetHashCode();
+            if (DurationMs != 0) hash ^= DurationMs.GetHashCode();
+            if (DamageWindowStartMs != 0) hash ^= DamageWindowStartMs.GetHashCode();
+            if (DamageWindowEndMs != 0) hash ^= DamageWindowEndMs.GetHashCode();
+            if (EnergyDelta != 0) hash ^= EnergyDelta.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PokemonSettings : pb::IMessage<PokemonSettings>
+    {
+        /// <summary>Field number for the "pokemon_id" field.</summary>
+        public const int PokemonIdFieldNumber = 1;
+
+        /// <summary>Field number for the "model_scale" field.</summary>
+        public const int ModelScaleFieldNumber = 3;
+
+        /// <summary>Field number for the "type" field.</summary>
+        public const int TypeFieldNumber = 4;
+
+        /// <summary>Field number for the "type_2" field.</summary>
+        public const int Type2FieldNumber = 5;
+
+        /// <summary>Field number for the "camera" field.</summary>
+        public const int CameraFieldNumber = 6;
+
+        /// <summary>Field number for the "encounter" field.</summary>
+        public const int EncounterFieldNumber = 7;
+
+        /// <summary>Field number for the "stats" field.</summary>
+        public const int StatsFieldNumber = 8;
+
+        /// <summary>Field number for the "quick_moves" field.</summary>
+        public const int QuickMovesFieldNumber = 9;
+
+        /// <summary>Field number for the "cinematic_moves" field.</summary>
+        public const int CinematicMovesFieldNumber = 10;
+
+        /// <summary>Field number for the "animation_time" field.</summary>
+        public const int AnimationTimeFieldNumber = 11;
+
+        /// <summary>Field number for the "evolution_ids" field.</summary>
+        public const int EvolutionIdsFieldNumber = 12;
+
+        /// <summary>Field number for the "evolution_pips" field.</summary>
+        public const int EvolutionPipsFieldNumber = 13;
+
+        /// <summary>Field number for the "class" field.</summary>
+        public const int ClassFieldNumber = 14;
+
+        /// <summary>Field number for the "pokedex_height_m" field.</summary>
+        public const int PokedexHeightMFieldNumber = 15;
+
+        /// <summary>Field number for the "pokedex_weight_kg" field.</summary>
+        public const int PokedexWeightKgFieldNumber = 16;
+
+        /// <summary>Field number for the "parent_pokemon_id" field.</summary>
+        public const int ParentPokemonIdFieldNumber = 17;
+
+        /// <summary>Field number for the "height_std_dev" field.</summary>
+        public const int HeightStdDevFieldNumber = 18;
+
+        /// <summary>Field number for the "weight_std_dev" field.</summary>
+        public const int WeightStdDevFieldNumber = 19;
+
+        /// <summary>Field number for the "km_distance_to_hatch" field.</summary>
+        public const int KmDistanceToHatchFieldNumber = 20;
+
+        /// <summary>Field number for the "family_id" field.</summary>
+        public const int FamilyIdFieldNumber = 21;
+
+        /// <summary>Field number for the "candy_to_evolve" field.</summary>
+        public const int CandyToEvolveFieldNumber = 22;
+
+        private static readonly pb::MessageParser<PokemonSettings> _parser =
+            new pb::MessageParser<PokemonSettings>(() => new PokemonSettings());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove>
+            _repeated_quickMoves_codec
+                = pb::FieldCodec.ForEnum(74, x => (int)x,
+                    x => (global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove)x);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove>
+            _repeated_cinematicMoves_codec
+                = pb::FieldCodec.ForEnum(82, x => (int)x,
+                    x => (global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove)x);
+
+        private static readonly pb::FieldCodec<float> _repeated_animationTime_codec
+            = pb::FieldCodec.ForFloat(90);
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.PokemonId>
+            _repeated_evolutionIds_codec
+                = pb::FieldCodec.ForEnum(98, x => (int)x, x => (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)x);
+
+        private readonly pbc::RepeatedField<float> animationTime_ = new pbc::RepeatedField<float>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove> cinematicMoves_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonId> evolutionIds_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonId>();
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove> quickMoves_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove>();
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes camera_;
+        private int candyToEvolve_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonClass class_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes encounter_;
+        private int evolutionPips_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamilyId familyId_ = 0;
+        private float heightStdDev_;
+        private float kmDistanceToHatch_;
+        private float modelScale_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonId parentPokemonId_ = 0;
+        private float pokedexHeightM_;
+        private float pokedexWeightKg_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonId pokemonId_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes stats_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonType type_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonType type2_ = 0;
+        private float weightStdDev_;
+
+        public PokemonSettings()
+        {
+            OnConstruction();
+        }
+
+        public PokemonSettings(PokemonSettings other) : this()
+        {
+            pokemonId_ = other.pokemonId_;
+            modelScale_ = other.modelScale_;
+            type_ = other.type_;
+            type2_ = other.type2_;
+            Camera = other.camera_ != null ? other.Camera.Clone() : null;
+            Encounter = other.encounter_ != null ? other.Encounter.Clone() : null;
+            Stats = other.stats_ != null ? other.Stats.Clone() : null;
+            quickMoves_ = other.quickMoves_.Clone();
+            cinematicMoves_ = other.cinematicMoves_.Clone();
+            animationTime_ = other.animationTime_.Clone();
+            evolutionIds_ = other.evolutionIds_.Clone();
+            evolutionPips_ = other.evolutionPips_;
+            class_ = other.class_;
+            pokedexHeightM_ = other.pokedexHeightM_;
+            pokedexWeightKg_ = other.pokedexWeightKg_;
+            parentPokemonId_ = other.parentPokemonId_;
+            heightStdDev_ = other.heightStdDev_;
+            weightStdDev_ = other.weightStdDev_;
+            kmDistanceToHatch_ = other.kmDistanceToHatch_;
+            familyId_ = other.familyId_;
+            candyToEvolve_ = other.candyToEvolve_;
+        }
+
+        public static pb::MessageParser<PokemonSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[79]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonId PokemonId
+        {
+            get { return pokemonId_; }
+            set { pokemonId_ = value; }
+        }
+
+        public float ModelScale
+        {
+            get { return modelScale_; }
+            set { modelScale_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonType Type
+        {
+            get { return type_; }
+            set { type_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonType Type2
+        {
+            get { return type2_; }
+            set { type2_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes Camera
+        {
+            get { return camera_; }
+            set { camera_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes Encounter
+        {
+            get { return encounter_; }
+            set { encounter_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes Stats
+        {
+            get { return stats_; }
+            set { stats_ = value; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove> QuickMoves
+        {
+            get { return quickMoves_; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonMove> CinematicMoves
+        {
+            get { return cinematicMoves_; }
+        }
+
+        public pbc::RepeatedField<float> AnimationTime
+        {
+            get { return animationTime_; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonId> EvolutionIds
+        {
+            get { return evolutionIds_; }
+        }
+
+        public int EvolutionPips
+        {
+            get { return evolutionPips_; }
+            set { evolutionPips_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonClass Class
+        {
+            get { return class_; }
+            set { class_ = value; }
+        }
+
+        public float PokedexHeightM
+        {
+            get { return pokedexHeightM_; }
+            set { pokedexHeightM_ = value; }
+        }
+
+        public float PokedexWeightKg
+        {
+            get { return pokedexWeightKg_; }
+            set { pokedexWeightKg_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonId ParentPokemonId
+        {
+            get { return parentPokemonId_; }
+            set { parentPokemonId_ = value; }
+        }
+
+        public float HeightStdDev
+        {
+            get { return heightStdDev_; }
+            set { heightStdDev_ = value; }
+        }
+
+        public float WeightStdDev
+        {
+            get { return weightStdDev_; }
+            set { weightStdDev_ = value; }
+        }
+
+        public float KmDistanceToHatch
+        {
+            get { return kmDistanceToHatch_; }
+            set { kmDistanceToHatch_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamilyId FamilyId
+        {
+            get { return familyId_; }
+            set { familyId_ = value; }
+        }
+
+        public int CandyToEvolve
+        {
+            get { return candyToEvolve_; }
+            set { candyToEvolve_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PokemonSettings Clone()
+        {
+            return new PokemonSettings(this);
+        }
+
+        public bool Equals(PokemonSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (PokemonId != other.PokemonId) return false;
+            if (ModelScale != other.ModelScale) return false;
+            if (Type != other.Type) return false;
+            if (Type2 != other.Type2) return false;
+            if (!Equals(Camera, other.Camera)) return false;
+            if (!Equals(Encounter, other.Encounter)) return false;
+            if (!Equals(Stats, other.Stats)) return false;
+            if (!quickMoves_.Equals(other.quickMoves_)) return false;
+            if (!cinematicMoves_.Equals(other.cinematicMoves_)) return false;
+            if (!animationTime_.Equals(other.animationTime_)) return false;
+            if (!evolutionIds_.Equals(other.evolutionIds_)) return false;
+            if (EvolutionPips != other.EvolutionPips) return false;
+            if (Class != other.Class) return false;
+            if (PokedexHeightM != other.PokedexHeightM) return false;
+            if (PokedexWeightKg != other.PokedexWeightKg) return false;
+            if (ParentPokemonId != other.ParentPokemonId) return false;
+            if (HeightStdDev != other.HeightStdDev) return false;
+            if (WeightStdDev != other.WeightStdDev) return false;
+            if (KmDistanceToHatch != other.KmDistanceToHatch) return false;
+            if (FamilyId != other.FamilyId) return false;
+            if (CandyToEvolve != other.CandyToEvolve) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (PokemonId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)PokemonId);
+            }
+            if (ModelScale != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(ModelScale);
+            }
+            if (Type != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteEnum((int)Type);
+            }
+            if (Type2 != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteEnum((int)Type2);
+            }
+            if (camera_ != null)
+            {
+                output.WriteRawTag(50);
+                output.WriteMessage(Camera);
+            }
+            if (encounter_ != null)
+            {
+                output.WriteRawTag(58);
+                output.WriteMessage(Encounter);
+            }
+            if (stats_ != null)
+            {
+                output.WriteRawTag(66);
+                output.WriteMessage(Stats);
+            }
+            quickMoves_.WriteTo(output, _repeated_quickMoves_codec);
+            cinematicMoves_.WriteTo(output, _repeated_cinematicMoves_codec);
+            animationTime_.WriteTo(output, _repeated_animationTime_codec);
+            evolutionIds_.WriteTo(output, _repeated_evolutionIds_codec);
+            if (EvolutionPips != 0)
+            {
+                output.WriteRawTag(104);
+                output.WriteInt32(EvolutionPips);
+            }
+            if (Class != 0)
+            {
+                output.WriteRawTag(112);
+                output.WriteEnum((int)Class);
+            }
+            if (PokedexHeightM != 0F)
+            {
+                output.WriteRawTag(125);
+                output.WriteFloat(PokedexHeightM);
+            }
+            if (PokedexWeightKg != 0F)
+            {
+                output.WriteRawTag(133, 1);
+                output.WriteFloat(PokedexWeightKg);
+            }
+            if (ParentPokemonId != 0)
+            {
+                output.WriteRawTag(136, 1);
+                output.WriteEnum((int)ParentPokemonId);
+            }
+            if (HeightStdDev != 0F)
+            {
+                output.WriteRawTag(149, 1);
+                output.WriteFloat(HeightStdDev);
+            }
+            if (WeightStdDev != 0F)
+            {
+                output.WriteRawTag(157, 1);
+                output.WriteFloat(WeightStdDev);
+            }
+            if (KmDistanceToHatch != 0F)
+            {
+                output.WriteRawTag(165, 1);
+                output.WriteFloat(KmDistanceToHatch);
+            }
+            if (FamilyId != 0)
+            {
+                output.WriteRawTag(168, 1);
+                output.WriteEnum((int)FamilyId);
+            }
+            if (CandyToEvolve != 0)
+            {
+                output.WriteRawTag(176, 1);
+                output.WriteInt32(CandyToEvolve);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (PokemonId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)PokemonId);
+            }
+            if (ModelScale != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (Type != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Type);
+            }
+            if (Type2 != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Type2);
+            }
+            if (camera_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Camera);
+            }
+            if (encounter_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Encounter);
+            }
+            if (stats_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Stats);
+            }
+            size += quickMoves_.CalculateSize(_repeated_quickMoves_codec);
+            size += cinematicMoves_.CalculateSize(_repeated_cinematicMoves_codec);
+            size += animationTime_.CalculateSize(_repeated_animationTime_codec);
+            size += evolutionIds_.CalculateSize(_repeated_evolutionIds_codec);
+            if (EvolutionPips != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(EvolutionPips);
+            }
+            if (Class != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Class);
+            }
+            if (PokedexHeightM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (PokedexWeightKg != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (ParentPokemonId != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeEnumSize((int)ParentPokemonId);
+            }
+            if (HeightStdDev != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (WeightStdDev != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (KmDistanceToHatch != 0F)
+            {
+                size += 2 + 4;
+            }
+            if (FamilyId != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeEnumSize((int)FamilyId);
+            }
+            if (CandyToEvolve != 0)
+            {
+                size += 2 + pb::CodedOutputStream.ComputeInt32Size(CandyToEvolve);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PokemonSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.PokemonId != 0)
+            {
+                PokemonId = other.PokemonId;
+            }
+            if (other.ModelScale != 0F)
+            {
+                ModelScale = other.ModelScale;
+            }
+            if (other.Type != 0)
+            {
+                Type = other.Type;
+            }
+            if (other.Type2 != 0)
+            {
+                Type2 = other.Type2;
+            }
+            if (other.camera_ != null)
+            {
+                if (camera_ == null)
+                {
+                    camera_ = new global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes();
+                }
+                Camera.MergeFrom(other.Camera);
+            }
+            if (other.encounter_ != null)
+            {
+                if (encounter_ == null)
+                {
+                    encounter_ = new global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes();
+                }
+                Encounter.MergeFrom(other.Encounter);
+            }
+            if (other.stats_ != null)
+            {
+                if (stats_ == null)
+                {
+                    stats_ = new global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes();
+                }
+                Stats.MergeFrom(other.Stats);
+            }
+            quickMoves_.Add(other.quickMoves_);
+            cinematicMoves_.Add(other.cinematicMoves_);
+            animationTime_.Add(other.animationTime_);
+            evolutionIds_.Add(other.evolutionIds_);
+            if (other.EvolutionPips != 0)
+            {
+                EvolutionPips = other.EvolutionPips;
+            }
+            if (other.Class != 0)
+            {
+                Class = other.Class;
+            }
+            if (other.PokedexHeightM != 0F)
+            {
+                PokedexHeightM = other.PokedexHeightM;
+            }
+            if (other.PokedexWeightKg != 0F)
+            {
+                PokedexWeightKg = other.PokedexWeightKg;
+            }
+            if (other.ParentPokemonId != 0)
+            {
+                ParentPokemonId = other.ParentPokemonId;
+            }
+            if (other.HeightStdDev != 0F)
+            {
+                HeightStdDev = other.HeightStdDev;
+            }
+            if (other.WeightStdDev != 0F)
+            {
+                WeightStdDev = other.WeightStdDev;
+            }
+            if (other.KmDistanceToHatch != 0F)
+            {
+                KmDistanceToHatch = other.KmDistanceToHatch;
+            }
+            if (other.FamilyId != 0)
+            {
+                FamilyId = other.FamilyId;
+            }
+            if (other.CandyToEvolve != 0)
+            {
+                CandyToEvolve = other.CandyToEvolve;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            pokemonId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)input.ReadEnum();
+                            break;
+                        }
+                    case 29:
+                        {
+                            ModelScale = input.ReadFloat();
+                            break;
+                        }
+                    case 32:
+                        {
+                            type_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonType)input.ReadEnum();
+                            break;
+                        }
+                    case 40:
+                        {
+                            type2_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonType)input.ReadEnum();
+                            break;
+                        }
+                    case 50:
+                        {
+                            if (camera_ == null)
+                            {
+                                camera_ = new global::PokemonGo.RocketAPI.GeneratedCode.CameraAttributes();
+                            }
+                            input.ReadMessage(camera_);
+                            break;
+                        }
+                    case 58:
+                        {
+                            if (encounter_ == null)
+                            {
+                                encounter_ = new global::PokemonGo.RocketAPI.GeneratedCode.EncounterAttributes();
+                            }
+                            input.ReadMessage(encounter_);
+                            break;
+                        }
+                    case 66:
+                        {
+                            if (stats_ == null)
+                            {
+                                stats_ = new global::PokemonGo.RocketAPI.GeneratedCode.StatsAttributes();
+                            }
+                            input.ReadMessage(stats_);
+                            break;
+                        }
+                    case 74:
+                    case 72:
+                        {
+                            quickMoves_.AddEntriesFrom(input, _repeated_quickMoves_codec);
+                            break;
+                        }
+                    case 82:
+                    case 80:
+                        {
+                            cinematicMoves_.AddEntriesFrom(input, _repeated_cinematicMoves_codec);
+                            break;
+                        }
+                    case 90:
+                    case 93:
+                        {
+                            animationTime_.AddEntriesFrom(input, _repeated_animationTime_codec);
+                            break;
+                        }
+                    case 98:
+                    case 96:
+                        {
+                            evolutionIds_.AddEntriesFrom(input, _repeated_evolutionIds_codec);
+                            break;
+                        }
+                    case 104:
+                        {
+                            EvolutionPips = input.ReadInt32();
+                            break;
+                        }
+                    case 112:
+                        {
+                            class_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonClass)input.ReadEnum();
+                            break;
+                        }
+                    case 125:
+                        {
+                            PokedexHeightM = input.ReadFloat();
+                            break;
+                        }
+                    case 133:
+                        {
+                            PokedexWeightKg = input.ReadFloat();
+                            break;
+                        }
+                    case 136:
+                        {
+                            parentPokemonId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonId)input.ReadEnum();
+                            break;
+                        }
+                    case 149:
+                        {
+                            HeightStdDev = input.ReadFloat();
+                            break;
+                        }
+                    case 157:
+                        {
+                            WeightStdDev = input.ReadFloat();
+                            break;
+                        }
+                    case 165:
+                        {
+                            KmDistanceToHatch = input.ReadFloat();
+                            break;
+                        }
+                    case 168:
+                        {
+                            familyId_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonFamilyId)input.ReadEnum();
+                            break;
+                        }
+                    case 176:
+                        {
+                            CandyToEvolve = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PokemonSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (PokemonId != 0) hash ^= PokemonId.GetHashCode();
+            if (ModelScale != 0F) hash ^= ModelScale.GetHashCode();
+            if (Type != 0) hash ^= Type.GetHashCode();
+            if (Type2 != 0) hash ^= Type2.GetHashCode();
+            if (camera_ != null) hash ^= Camera.GetHashCode();
+            if (encounter_ != null) hash ^= Encounter.GetHashCode();
+            if (stats_ != null) hash ^= Stats.GetHashCode();
+            hash ^= quickMoves_.GetHashCode();
+            hash ^= cinematicMoves_.GetHashCode();
+            hash ^= animationTime_.GetHashCode();
+            hash ^= evolutionIds_.GetHashCode();
+            if (EvolutionPips != 0) hash ^= EvolutionPips.GetHashCode();
+            if (Class != 0) hash ^= Class.GetHashCode();
+            if (PokedexHeightM != 0F) hash ^= PokedexHeightM.GetHashCode();
+            if (PokedexWeightKg != 0F) hash ^= PokedexWeightKg.GetHashCode();
+            if (ParentPokemonId != 0) hash ^= ParentPokemonId.GetHashCode();
+            if (HeightStdDev != 0F) hash ^= HeightStdDev.GetHashCode();
+            if (WeightStdDev != 0F) hash ^= WeightStdDev.GetHashCode();
+            if (KmDistanceToHatch != 0F) hash ^= KmDistanceToHatch.GetHashCode();
+            if (FamilyId != 0) hash ^= FamilyId.GetHashCode();
+            if (CandyToEvolve != 0) hash ^= CandyToEvolve.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class CameraAttributes : pb::IMessage<CameraAttributes>
+    {
+        /// <summary>Field number for the "disk_radius_m" field.</summary>
+        public const int DiskRadiusMFieldNumber = 1;
+
+        /// <summary>Field number for the "cylinder_radius_m" field.</summary>
+        public const int CylinderRadiusMFieldNumber = 2;
+
+        /// <summary>Field number for the "cylinder_height_m" field.</summary>
+        public const int CylinderHeightMFieldNumber = 3;
+
+        /// <summary>Field number for the "cylinder_ground_m" field.</summary>
+        public const int CylinderGroundMFieldNumber = 4;
+
+        /// <summary>Field number for the "shoulder_mode_scale" field.</summary>
+        public const int ShoulderModeScaleFieldNumber = 5;
+
+        private static readonly pb::MessageParser<CameraAttributes> _parser =
+            new pb::MessageParser<CameraAttributes>(() => new CameraAttributes());
+
+        private float cylinderGroundM_;
+        private float cylinderHeightM_;
+        private float cylinderRadiusM_;
+        private float diskRadiusM_;
+        private float shoulderModeScale_;
+
+        public CameraAttributes()
+        {
+            OnConstruction();
+        }
+
+        public CameraAttributes(CameraAttributes other) : this()
+        {
+            diskRadiusM_ = other.diskRadiusM_;
+            cylinderRadiusM_ = other.cylinderRadiusM_;
+            cylinderHeightM_ = other.cylinderHeightM_;
+            cylinderGroundM_ = other.cylinderGroundM_;
+            shoulderModeScale_ = other.shoulderModeScale_;
+        }
+
+        public static pb::MessageParser<CameraAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[80]; }
+        }
+
+        public float DiskRadiusM
+        {
+            get { return diskRadiusM_; }
+            set { diskRadiusM_ = value; }
+        }
+
+        public float CylinderRadiusM
+        {
+            get { return cylinderRadiusM_; }
+            set { cylinderRadiusM_ = value; }
+        }
+
+        public float CylinderHeightM
+        {
+            get { return cylinderHeightM_; }
+            set { cylinderHeightM_ = value; }
+        }
+
+        public float CylinderGroundM
+        {
+            get { return cylinderGroundM_; }
+            set { cylinderGroundM_ = value; }
+        }
+
+        public float ShoulderModeScale
+        {
+            get { return shoulderModeScale_; }
+            set { shoulderModeScale_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public CameraAttributes Clone()
+        {
+            return new CameraAttributes(this);
+        }
+
+        public bool Equals(CameraAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (DiskRadiusM != other.DiskRadiusM) return false;
+            if (CylinderRadiusM != other.CylinderRadiusM) return false;
+            if (CylinderHeightM != other.CylinderHeightM) return false;
+            if (CylinderGroundM != other.CylinderGroundM) return false;
+            if (ShoulderModeScale != other.ShoulderModeScale) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (DiskRadiusM != 0F)
+            {
+                output.WriteRawTag(13);
+                output.WriteFloat(DiskRadiusM);
+            }
+            if (CylinderRadiusM != 0F)
+            {
+                output.WriteRawTag(21);
+                output.WriteFloat(CylinderRadiusM);
+            }
+            if (CylinderHeightM != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(CylinderHeightM);
+            }
+            if (CylinderGroundM != 0F)
+            {
+                output.WriteRawTag(37);
+                output.WriteFloat(CylinderGroundM);
+            }
+            if (ShoulderModeScale != 0F)
+            {
+                output.WriteRawTag(45);
+                output.WriteFloat(ShoulderModeScale);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (DiskRadiusM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (CylinderRadiusM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (CylinderHeightM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (CylinderGroundM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (ShoulderModeScale != 0F)
+            {
+                size += 1 + 4;
+            }
+            return size;
+        }
+
+        public void MergeFrom(CameraAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.DiskRadiusM != 0F)
+            {
+                DiskRadiusM = other.DiskRadiusM;
+            }
+            if (other.CylinderRadiusM != 0F)
+            {
+                CylinderRadiusM = other.CylinderRadiusM;
+            }
+            if (other.CylinderHeightM != 0F)
+            {
+                CylinderHeightM = other.CylinderHeightM;
+            }
+            if (other.CylinderGroundM != 0F)
+            {
+                CylinderGroundM = other.CylinderGroundM;
+            }
+            if (other.ShoulderModeScale != 0F)
+            {
+                ShoulderModeScale = other.ShoulderModeScale;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 13:
+                        {
+                            DiskRadiusM = input.ReadFloat();
+                            break;
+                        }
+                    case 21:
+                        {
+                            CylinderRadiusM = input.ReadFloat();
+                            break;
+                        }
+                    case 29:
+                        {
+                            CylinderHeightM = input.ReadFloat();
+                            break;
+                        }
+                    case 37:
+                        {
+                            CylinderGroundM = input.ReadFloat();
+                            break;
+                        }
+                    case 45:
+                        {
+                            ShoulderModeScale = input.ReadFloat();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as CameraAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (DiskRadiusM != 0F) hash ^= DiskRadiusM.GetHashCode();
+            if (CylinderRadiusM != 0F) hash ^= CylinderRadiusM.GetHashCode();
+            if (CylinderHeightM != 0F) hash ^= CylinderHeightM.GetHashCode();
+            if (CylinderGroundM != 0F) hash ^= CylinderGroundM.GetHashCode();
+            if (ShoulderModeScale != 0F) hash ^= ShoulderModeScale.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EncounterAttributes : pb::IMessage<EncounterAttributes>
+    {
+        /// <summary>Field number for the "base_capture_rate" field.</summary>
+        public const int BaseCaptureRateFieldNumber = 1;
+
+        /// <summary>Field number for the "base_flee_rate" field.</summary>
+        public const int BaseFleeRateFieldNumber = 2;
+
+        /// <summary>Field number for the "collision_radius_m" field.</summary>
+        public const int CollisionRadiusMFieldNumber = 3;
+
+        /// <summary>Field number for the "collision_height_m" field.</summary>
+        public const int CollisionHeightMFieldNumber = 4;
+
+        /// <summary>Field number for the "collision_head_radius_m" field.</summary>
+        public const int CollisionHeadRadiusMFieldNumber = 5;
+
+        /// <summary>Field number for the "movement_type" field.</summary>
+        public const int MovementTypeFieldNumber = 6;
+
+        /// <summary>Field number for the "movement_timer_s" field.</summary>
+        public const int MovementTimerSFieldNumber = 7;
+
+        /// <summary>Field number for the "jump_time_s" field.</summary>
+        public const int JumpTimeSFieldNumber = 8;
+
+        /// <summary>Field number for the "attack_timer_s" field.</summary>
+        public const int AttackTimerSFieldNumber = 9;
+
+        private static readonly pb::MessageParser<EncounterAttributes> _parser =
+            new pb::MessageParser<EncounterAttributes>(() => new EncounterAttributes());
+
+        private float attackTimerS_;
+        private float baseCaptureRate_;
+        private float baseFleeRate_;
+        private float collisionHeadRadiusM_;
+        private float collisionHeightM_;
+        private float collisionRadiusM_;
+        private float jumpTimeS_;
+        private float movementTimerS_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokemonMovementType movementType_ = 0;
+
+        public EncounterAttributes()
+        {
+            OnConstruction();
+        }
+
+        public EncounterAttributes(EncounterAttributes other) : this()
+        {
+            baseCaptureRate_ = other.baseCaptureRate_;
+            baseFleeRate_ = other.baseFleeRate_;
+            collisionRadiusM_ = other.collisionRadiusM_;
+            collisionHeightM_ = other.collisionHeightM_;
+            collisionHeadRadiusM_ = other.collisionHeadRadiusM_;
+            movementType_ = other.movementType_;
+            movementTimerS_ = other.movementTimerS_;
+            jumpTimeS_ = other.jumpTimeS_;
+            attackTimerS_ = other.attackTimerS_;
+        }
+
+        public static pb::MessageParser<EncounterAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[81]; }
+        }
+
+        public float BaseCaptureRate
+        {
+            get { return baseCaptureRate_; }
+            set { baseCaptureRate_ = value; }
+        }
+
+        public float BaseFleeRate
+        {
+            get { return baseFleeRate_; }
+            set { baseFleeRate_ = value; }
+        }
+
+        public float CollisionRadiusM
+        {
+            get { return collisionRadiusM_; }
+            set { collisionRadiusM_ = value; }
+        }
+
+        public float CollisionHeightM
+        {
+            get { return collisionHeightM_; }
+            set { collisionHeightM_ = value; }
+        }
+
+        public float CollisionHeadRadiusM
+        {
+            get { return collisionHeadRadiusM_; }
+            set { collisionHeadRadiusM_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokemonMovementType MovementType
+        {
+            get { return movementType_; }
+            set { movementType_ = value; }
+        }
+
+        public float MovementTimerS
+        {
+            get { return movementTimerS_; }
+            set { movementTimerS_ = value; }
+        }
+
+        public float JumpTimeS
+        {
+            get { return jumpTimeS_; }
+            set { jumpTimeS_ = value; }
+        }
+
+        public float AttackTimerS
+        {
+            get { return attackTimerS_; }
+            set { attackTimerS_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EncounterAttributes Clone()
+        {
+            return new EncounterAttributes(this);
+        }
+
+        public bool Equals(EncounterAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (BaseCaptureRate != other.BaseCaptureRate) return false;
+            if (BaseFleeRate != other.BaseFleeRate) return false;
+            if (CollisionRadiusM != other.CollisionRadiusM) return false;
+            if (CollisionHeightM != other.CollisionHeightM) return false;
+            if (CollisionHeadRadiusM != other.CollisionHeadRadiusM) return false;
+            if (MovementType != other.MovementType) return false;
+            if (MovementTimerS != other.MovementTimerS) return false;
+            if (JumpTimeS != other.JumpTimeS) return false;
+            if (AttackTimerS != other.AttackTimerS) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (BaseCaptureRate != 0F)
+            {
+                output.WriteRawTag(13);
+                output.WriteFloat(BaseCaptureRate);
+            }
+            if (BaseFleeRate != 0F)
+            {
+                output.WriteRawTag(21);
+                output.WriteFloat(BaseFleeRate);
+            }
+            if (CollisionRadiusM != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(CollisionRadiusM);
+            }
+            if (CollisionHeightM != 0F)
+            {
+                output.WriteRawTag(37);
+                output.WriteFloat(CollisionHeightM);
+            }
+            if (CollisionHeadRadiusM != 0F)
+            {
+                output.WriteRawTag(45);
+                output.WriteFloat(CollisionHeadRadiusM);
+            }
+            if (MovementType != 0)
+            {
+                output.WriteRawTag(48);
+                output.WriteEnum((int)MovementType);
+            }
+            if (MovementTimerS != 0F)
+            {
+                output.WriteRawTag(61);
+                output.WriteFloat(MovementTimerS);
+            }
+            if (JumpTimeS != 0F)
+            {
+                output.WriteRawTag(69);
+                output.WriteFloat(JumpTimeS);
+            }
+            if (AttackTimerS != 0F)
+            {
+                output.WriteRawTag(77);
+                output.WriteFloat(AttackTimerS);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (BaseCaptureRate != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (BaseFleeRate != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (CollisionRadiusM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (CollisionHeightM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (CollisionHeadRadiusM != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (MovementType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)MovementType);
+            }
+            if (MovementTimerS != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (JumpTimeS != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (AttackTimerS != 0F)
+            {
+                size += 1 + 4;
+            }
+            return size;
+        }
+
+        public void MergeFrom(EncounterAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.BaseCaptureRate != 0F)
+            {
+                BaseCaptureRate = other.BaseCaptureRate;
+            }
+            if (other.BaseFleeRate != 0F)
+            {
+                BaseFleeRate = other.BaseFleeRate;
+            }
+            if (other.CollisionRadiusM != 0F)
+            {
+                CollisionRadiusM = other.CollisionRadiusM;
+            }
+            if (other.CollisionHeightM != 0F)
+            {
+                CollisionHeightM = other.CollisionHeightM;
+            }
+            if (other.CollisionHeadRadiusM != 0F)
+            {
+                CollisionHeadRadiusM = other.CollisionHeadRadiusM;
+            }
+            if (other.MovementType != 0)
+            {
+                MovementType = other.MovementType;
+            }
+            if (other.MovementTimerS != 0F)
+            {
+                MovementTimerS = other.MovementTimerS;
+            }
+            if (other.JumpTimeS != 0F)
+            {
+                JumpTimeS = other.JumpTimeS;
+            }
+            if (other.AttackTimerS != 0F)
+            {
+                AttackTimerS = other.AttackTimerS;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 13:
+                        {
+                            BaseCaptureRate = input.ReadFloat();
+                            break;
+                        }
+                    case 21:
+                        {
+                            BaseFleeRate = input.ReadFloat();
+                            break;
+                        }
+                    case 29:
+                        {
+                            CollisionRadiusM = input.ReadFloat();
+                            break;
+                        }
+                    case 37:
+                        {
+                            CollisionHeightM = input.ReadFloat();
+                            break;
+                        }
+                    case 45:
+                        {
+                            CollisionHeadRadiusM = input.ReadFloat();
+                            break;
+                        }
+                    case 48:
+                        {
+                            movementType_ = (global::PokemonGo.RocketAPI.GeneratedCode.PokemonMovementType)input.ReadEnum();
+                            break;
+                        }
+                    case 61:
+                        {
+                            MovementTimerS = input.ReadFloat();
+                            break;
+                        }
+                    case 69:
+                        {
+                            JumpTimeS = input.ReadFloat();
+                            break;
+                        }
+                    case 77:
+                        {
+                            AttackTimerS = input.ReadFloat();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EncounterAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (BaseCaptureRate != 0F) hash ^= BaseCaptureRate.GetHashCode();
+            if (BaseFleeRate != 0F) hash ^= BaseFleeRate.GetHashCode();
+            if (CollisionRadiusM != 0F) hash ^= CollisionRadiusM.GetHashCode();
+            if (CollisionHeightM != 0F) hash ^= CollisionHeightM.GetHashCode();
+            if (CollisionHeadRadiusM != 0F) hash ^= CollisionHeadRadiusM.GetHashCode();
+            if (MovementType != 0) hash ^= MovementType.GetHashCode();
+            if (MovementTimerS != 0F) hash ^= MovementTimerS.GetHashCode();
+            if (JumpTimeS != 0F) hash ^= JumpTimeS.GetHashCode();
+            if (AttackTimerS != 0F) hash ^= AttackTimerS.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class StatsAttributes : pb::IMessage<StatsAttributes>
+    {
+        /// <summary>Field number for the "base_stamina" field.</summary>
+        public const int BaseStaminaFieldNumber = 1;
+
+        /// <summary>Field number for the "base_attack" field.</summary>
+        public const int BaseAttackFieldNumber = 2;
+
+        /// <summary>Field number for the "base_defense" field.</summary>
+        public const int BaseDefenseFieldNumber = 3;
+
+        /// <summary>Field number for the "dodge_energy_delta" field.</summary>
+        public const int DodgeEnergyDeltaFieldNumber = 8;
+
+        private static readonly pb::MessageParser<StatsAttributes> _parser =
+            new pb::MessageParser<StatsAttributes>(() => new StatsAttributes());
+
+        private int baseAttack_;
+        private int baseDefense_;
+        private int baseStamina_;
+        private int dodgeEnergyDelta_;
+
+        public StatsAttributes()
+        {
+            OnConstruction();
+        }
+
+        public StatsAttributes(StatsAttributes other) : this()
+        {
+            baseStamina_ = other.baseStamina_;
+            baseAttack_ = other.baseAttack_;
+            baseDefense_ = other.baseDefense_;
+            dodgeEnergyDelta_ = other.dodgeEnergyDelta_;
+        }
+
+        public static pb::MessageParser<StatsAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[82]; }
+        }
+
+        public int BaseStamina
+        {
+            get { return baseStamina_; }
+            set { baseStamina_ = value; }
+        }
+
+        public int BaseAttack
+        {
+            get { return baseAttack_; }
+            set { baseAttack_ = value; }
+        }
+
+        public int BaseDefense
+        {
+            get { return baseDefense_; }
+            set { baseDefense_ = value; }
+        }
+
+        public int DodgeEnergyDelta
+        {
+            get { return dodgeEnergyDelta_; }
+            set { dodgeEnergyDelta_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public StatsAttributes Clone()
+        {
+            return new StatsAttributes(this);
+        }
+
+        public bool Equals(StatsAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (BaseStamina != other.BaseStamina) return false;
+            if (BaseAttack != other.BaseAttack) return false;
+            if (BaseDefense != other.BaseDefense) return false;
+            if (DodgeEnergyDelta != other.DodgeEnergyDelta) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (BaseStamina != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(BaseStamina);
+            }
+            if (BaseAttack != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(BaseAttack);
+            }
+            if (BaseDefense != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(BaseDefense);
+            }
+            if (DodgeEnergyDelta != 0)
+            {
+                output.WriteRawTag(64);
+                output.WriteInt32(DodgeEnergyDelta);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (BaseStamina != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseStamina);
+            }
+            if (BaseAttack != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseAttack);
+            }
+            if (BaseDefense != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BaseDefense);
+            }
+            if (DodgeEnergyDelta != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DodgeEnergyDelta);
+            }
+            return size;
+        }
+
+        public void MergeFrom(StatsAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.BaseStamina != 0)
+            {
+                BaseStamina = other.BaseStamina;
+            }
+            if (other.BaseAttack != 0)
+            {
+                BaseAttack = other.BaseAttack;
+            }
+            if (other.BaseDefense != 0)
+            {
+                BaseDefense = other.BaseDefense;
+            }
+            if (other.DodgeEnergyDelta != 0)
+            {
+                DodgeEnergyDelta = other.DodgeEnergyDelta;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            BaseStamina = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            BaseAttack = input.ReadInt32();
+                            break;
+                        }
+                    case 24:
+                        {
+                            BaseDefense = input.ReadInt32();
+                            break;
+                        }
+                    case 64:
+                        {
+                            DodgeEnergyDelta = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as StatsAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (BaseStamina != 0) hash ^= BaseStamina.GetHashCode();
+            if (BaseAttack != 0) hash ^= BaseAttack.GetHashCode();
+            if (BaseDefense != 0) hash ^= BaseDefense.GetHashCode();
+            if (DodgeEnergyDelta != 0) hash ^= DodgeEnergyDelta.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class ItemSettings : pb::IMessage<ItemSettings>
+    {
+        /// <summary>Field number for the "item_id" field.</summary>
+        public const int ItemIdFieldNumber = 1;
+
+        /// <summary>Field number for the "item_type" field.</summary>
+        public const int ItemTypeFieldNumber = 2;
+
+        /// <summary>Field number for the "category" field.</summary>
+        public const int CategoryFieldNumber = 3;
+
+        /// <summary>Field number for the "drop_freq" field.</summary>
+        public const int DropFreqFieldNumber = 4;
+
+        /// <summary>Field number for the "drop_trainer_level" field.</summary>
+        public const int DropTrainerLevelFieldNumber = 5;
+
+        /// <summary>Field number for the "pokeball" field.</summary>
+        public const int PokeballFieldNumber = 6;
+
+        /// <summary>Field number for the "potion" field.</summary>
+        public const int PotionFieldNumber = 7;
+
+        /// <summary>Field number for the "revive" field.</summary>
+        public const int ReviveFieldNumber = 8;
+
+        /// <summary>Field number for the "battle" field.</summary>
+        public const int BattleFieldNumber = 9;
+
+        /// <summary>Field number for the "food" field.</summary>
+        public const int FoodFieldNumber = 10;
+
+        /// <summary>Field number for the "inventory_upgrade" field.</summary>
+        public const int InventoryUpgradeFieldNumber = 11;
+
+        /// <summary>Field number for the "xp_boost" field.</summary>
+        public const int XpBoostFieldNumber = 12;
+
+        /// <summary>Field number for the "incense" field.</summary>
+        public const int IncenseFieldNumber = 13;
+
+        /// <summary>Field number for the "egg_incubator" field.</summary>
+        public const int EggIncubatorFieldNumber = 14;
+
+        /// <summary>Field number for the "fort_modifier" field.</summary>
+        public const int FortModifierFieldNumber = 15;
+
+        private static readonly pb::MessageParser<ItemSettings> _parser =
+            new pb::MessageParser<ItemSettings>(() => new ItemSettings());
+
+        private global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes battle_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemCategory category_ = 0;
+        private float dropFreq_;
+        private int dropTrainerLevel_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes eggIncubator_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes food_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes fortModifier_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes incense_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes inventoryUpgrade_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemId itemId_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemType itemType_ = 0;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes pokeball_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes potion_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes revive_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes xpBoost_;
+
+        public ItemSettings()
+        {
+            OnConstruction();
+        }
+
+        public ItemSettings(ItemSettings other) : this()
+        {
+            itemId_ = other.itemId_;
+            itemType_ = other.itemType_;
+            category_ = other.category_;
+            dropFreq_ = other.dropFreq_;
+            dropTrainerLevel_ = other.dropTrainerLevel_;
+            Pokeball = other.pokeball_ != null ? other.Pokeball.Clone() : null;
+            Potion = other.potion_ != null ? other.Potion.Clone() : null;
+            Revive = other.revive_ != null ? other.Revive.Clone() : null;
+            Battle = other.battle_ != null ? other.Battle.Clone() : null;
+            Food = other.food_ != null ? other.Food.Clone() : null;
+            InventoryUpgrade = other.inventoryUpgrade_ != null ? other.InventoryUpgrade.Clone() : null;
+            XpBoost = other.xpBoost_ != null ? other.XpBoost.Clone() : null;
+            Incense = other.incense_ != null ? other.Incense.Clone() : null;
+            EggIncubator = other.eggIncubator_ != null ? other.EggIncubator.Clone() : null;
+            FortModifier = other.fortModifier_ != null ? other.FortModifier.Clone() : null;
+        }
+
+        public static pb::MessageParser<ItemSettings> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[83]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemId ItemId
+        {
+            get { return itemId_; }
+            set { itemId_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemType ItemType
+        {
+            get { return itemType_; }
+            set { itemType_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemCategory Category
+        {
+            get { return category_; }
+            set { category_ = value; }
+        }
+
+        public float DropFreq
+        {
+            get { return dropFreq_; }
+            set { dropFreq_ = value; }
+        }
+
+        public int DropTrainerLevel
+        {
+            get { return dropTrainerLevel_; }
+            set { dropTrainerLevel_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes Pokeball
+        {
+            get { return pokeball_; }
+            set { pokeball_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes Potion
+        {
+            get { return potion_; }
+            set { potion_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes Revive
+        {
+            get { return revive_; }
+            set { revive_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes Battle
+        {
+            get { return battle_; }
+            set { battle_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes Food
+        {
+            get { return food_; }
+            set { food_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes InventoryUpgrade
+        {
+            get { return inventoryUpgrade_; }
+            set { inventoryUpgrade_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes XpBoost
+        {
+            get { return xpBoost_; }
+            set { xpBoost_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes Incense
+        {
+            get { return incense_; }
+            set { incense_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes EggIncubator
+        {
+            get { return eggIncubator_; }
+            set { eggIncubator_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes FortModifier
+        {
+            get { return fortModifier_; }
+            set { fortModifier_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public ItemSettings Clone()
+        {
+            return new ItemSettings(this);
+        }
+
+        public bool Equals(ItemSettings other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ItemId != other.ItemId) return false;
+            if (ItemType != other.ItemType) return false;
+            if (Category != other.Category) return false;
+            if (DropFreq != other.DropFreq) return false;
+            if (DropTrainerLevel != other.DropTrainerLevel) return false;
+            if (!Equals(Pokeball, other.Pokeball)) return false;
+            if (!Equals(Potion, other.Potion)) return false;
+            if (!Equals(Revive, other.Revive)) return false;
+            if (!Equals(Battle, other.Battle)) return false;
+            if (!Equals(Food, other.Food)) return false;
+            if (!Equals(InventoryUpgrade, other.InventoryUpgrade)) return false;
+            if (!Equals(XpBoost, other.XpBoost)) return false;
+            if (!Equals(Incense, other.Incense)) return false;
+            if (!Equals(EggIncubator, other.EggIncubator)) return false;
+            if (!Equals(FortModifier, other.FortModifier)) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ItemId != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)ItemId);
+            }
+            if (ItemType != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)ItemType);
+            }
+            if (Category != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteEnum((int)Category);
+            }
+            if (DropFreq != 0F)
+            {
+                output.WriteRawTag(37);
+                output.WriteFloat(DropFreq);
+            }
+            if (DropTrainerLevel != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(DropTrainerLevel);
+            }
+            if (pokeball_ != null)
+            {
+                output.WriteRawTag(50);
+                output.WriteMessage(Pokeball);
+            }
+            if (potion_ != null)
+            {
+                output.WriteRawTag(58);
+                output.WriteMessage(Potion);
+            }
+            if (revive_ != null)
+            {
+                output.WriteRawTag(66);
+                output.WriteMessage(Revive);
+            }
+            if (battle_ != null)
+            {
+                output.WriteRawTag(74);
+                output.WriteMessage(Battle);
+            }
+            if (food_ != null)
+            {
+                output.WriteRawTag(82);
+                output.WriteMessage(Food);
+            }
+            if (inventoryUpgrade_ != null)
+            {
+                output.WriteRawTag(90);
+                output.WriteMessage(InventoryUpgrade);
+            }
+            if (xpBoost_ != null)
+            {
+                output.WriteRawTag(98);
+                output.WriteMessage(XpBoost);
+            }
+            if (incense_ != null)
+            {
+                output.WriteRawTag(106);
+                output.WriteMessage(Incense);
+            }
+            if (eggIncubator_ != null)
+            {
+                output.WriteRawTag(114);
+                output.WriteMessage(EggIncubator);
+            }
+            if (fortModifier_ != null)
+            {
+                output.WriteRawTag(122);
+                output.WriteMessage(FortModifier);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ItemId != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemId);
+            }
+            if (ItemType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemType);
+            }
+            if (Category != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Category);
+            }
+            if (DropFreq != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (DropTrainerLevel != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DropTrainerLevel);
+            }
+            if (pokeball_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Pokeball);
+            }
+            if (potion_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Potion);
+            }
+            if (revive_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Revive);
+            }
+            if (battle_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Battle);
+            }
+            if (food_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Food);
+            }
+            if (inventoryUpgrade_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(InventoryUpgrade);
+            }
+            if (xpBoost_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(XpBoost);
+            }
+            if (incense_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(Incense);
+            }
+            if (eggIncubator_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(EggIncubator);
+            }
+            if (fortModifier_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(FortModifier);
+            }
+            return size;
+        }
+
+        public void MergeFrom(ItemSettings other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ItemId != 0)
+            {
+                ItemId = other.ItemId;
+            }
+            if (other.ItemType != 0)
+            {
+                ItemType = other.ItemType;
+            }
+            if (other.Category != 0)
+            {
+                Category = other.Category;
+            }
+            if (other.DropFreq != 0F)
+            {
+                DropFreq = other.DropFreq;
+            }
+            if (other.DropTrainerLevel != 0)
+            {
+                DropTrainerLevel = other.DropTrainerLevel;
+            }
+            if (other.pokeball_ != null)
+            {
+                if (pokeball_ == null)
+                {
+                    pokeball_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes();
+                }
+                Pokeball.MergeFrom(other.Pokeball);
+            }
+            if (other.potion_ != null)
+            {
+                if (potion_ == null)
+                {
+                    potion_ = new global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes();
+                }
+                Potion.MergeFrom(other.Potion);
+            }
+            if (other.revive_ != null)
+            {
+                if (revive_ == null)
+                {
+                    revive_ = new global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes();
+                }
+                Revive.MergeFrom(other.Revive);
+            }
+            if (other.battle_ != null)
+            {
+                if (battle_ == null)
+                {
+                    battle_ = new global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes();
+                }
+                Battle.MergeFrom(other.Battle);
+            }
+            if (other.food_ != null)
+            {
+                if (food_ == null)
+                {
+                    food_ = new global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes();
+                }
+                Food.MergeFrom(other.Food);
+            }
+            if (other.inventoryUpgrade_ != null)
+            {
+                if (inventoryUpgrade_ == null)
+                {
+                    inventoryUpgrade_ = new global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes();
+                }
+                InventoryUpgrade.MergeFrom(other.InventoryUpgrade);
+            }
+            if (other.xpBoost_ != null)
+            {
+                if (xpBoost_ == null)
+                {
+                    xpBoost_ = new global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes();
+                }
+                XpBoost.MergeFrom(other.XpBoost);
+            }
+            if (other.incense_ != null)
+            {
+                if (incense_ == null)
+                {
+                    incense_ = new global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes();
+                }
+                Incense.MergeFrom(other.Incense);
+            }
+            if (other.eggIncubator_ != null)
+            {
+                if (eggIncubator_ == null)
+                {
+                    eggIncubator_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes();
+                }
+                EggIncubator.MergeFrom(other.EggIncubator);
+            }
+            if (other.fortModifier_ != null)
+            {
+                if (fortModifier_ == null)
+                {
+                    fortModifier_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes();
+                }
+                FortModifier.MergeFrom(other.FortModifier);
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            itemId_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemId)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            itemType_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemType)input.ReadEnum();
+                            break;
+                        }
+                    case 24:
+                        {
+                            category_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemCategory)input.ReadEnum();
+                            break;
+                        }
+                    case 37:
+                        {
+                            DropFreq = input.ReadFloat();
+                            break;
+                        }
+                    case 40:
+                        {
+                            DropTrainerLevel = input.ReadInt32();
+                            break;
+                        }
+                    case 50:
+                        {
+                            if (pokeball_ == null)
+                            {
+                                pokeball_ = new global::PokemonGo.RocketAPI.GeneratedCode.PokeballAttributes();
+                            }
+                            input.ReadMessage(pokeball_);
+                            break;
+                        }
+                    case 58:
+                        {
+                            if (potion_ == null)
+                            {
+                                potion_ = new global::PokemonGo.RocketAPI.GeneratedCode.PotionAttributes();
+                            }
+                            input.ReadMessage(potion_);
+                            break;
+                        }
+                    case 66:
+                        {
+                            if (revive_ == null)
+                            {
+                                revive_ = new global::PokemonGo.RocketAPI.GeneratedCode.ReviveAttributes();
+                            }
+                            input.ReadMessage(revive_);
+                            break;
+                        }
+                    case 74:
+                        {
+                            if (battle_ == null)
+                            {
+                                battle_ = new global::PokemonGo.RocketAPI.GeneratedCode.BattleAttributes();
+                            }
+                            input.ReadMessage(battle_);
+                            break;
+                        }
+                    case 82:
+                        {
+                            if (food_ == null)
+                            {
+                                food_ = new global::PokemonGo.RocketAPI.GeneratedCode.FoodAttributes();
+                            }
+                            input.ReadMessage(food_);
+                            break;
+                        }
+                    case 90:
+                        {
+                            if (inventoryUpgrade_ == null)
+                            {
+                                inventoryUpgrade_ =
+                                    new global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeAttributes();
+                            }
+                            input.ReadMessage(inventoryUpgrade_);
+                            break;
+                        }
+                    case 98:
+                        {
+                            if (xpBoost_ == null)
+                            {
+                                xpBoost_ = new global::PokemonGo.RocketAPI.GeneratedCode.ExperienceBoostAttributes();
+                            }
+                            input.ReadMessage(xpBoost_);
+                            break;
+                        }
+                    case 106:
+                        {
+                            if (incense_ == null)
+                            {
+                                incense_ = new global::PokemonGo.RocketAPI.GeneratedCode.IncenseAttributes();
+                            }
+                            input.ReadMessage(incense_);
+                            break;
+                        }
+                    case 114:
+                        {
+                            if (eggIncubator_ == null)
+                            {
+                                eggIncubator_ = new global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorAttributes();
+                            }
+                            input.ReadMessage(eggIncubator_);
+                            break;
+                        }
+                    case 122:
+                        {
+                            if (fortModifier_ == null)
+                            {
+                                fortModifier_ = new global::PokemonGo.RocketAPI.GeneratedCode.FortModifierAttributes();
+                            }
+                            input.ReadMessage(fortModifier_);
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as ItemSettings);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ItemId != 0) hash ^= ItemId.GetHashCode();
+            if (ItemType != 0) hash ^= ItemType.GetHashCode();
+            if (Category != 0) hash ^= Category.GetHashCode();
+            if (DropFreq != 0F) hash ^= DropFreq.GetHashCode();
+            if (DropTrainerLevel != 0) hash ^= DropTrainerLevel.GetHashCode();
+            if (pokeball_ != null) hash ^= Pokeball.GetHashCode();
+            if (potion_ != null) hash ^= Potion.GetHashCode();
+            if (revive_ != null) hash ^= Revive.GetHashCode();
+            if (battle_ != null) hash ^= Battle.GetHashCode();
+            if (food_ != null) hash ^= Food.GetHashCode();
+            if (inventoryUpgrade_ != null) hash ^= InventoryUpgrade.GetHashCode();
+            if (xpBoost_ != null) hash ^= XpBoost.GetHashCode();
+            if (incense_ != null) hash ^= Incense.GetHashCode();
+            if (eggIncubator_ != null) hash ^= EggIncubator.GetHashCode();
+            if (fortModifier_ != null) hash ^= FortModifier.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class BattleAttributes : pb::IMessage<BattleAttributes>
+    {
+        /// <summary>Field number for the "sta_percent" field.</summary>
+        public const int StaPercentFieldNumber = 1;
+
+        private static readonly pb::MessageParser<BattleAttributes> _parser =
+            new pb::MessageParser<BattleAttributes>(() => new BattleAttributes());
+
+        private float staPercent_;
+
+        public BattleAttributes()
+        {
+            OnConstruction();
+        }
+
+        public BattleAttributes(BattleAttributes other) : this()
+        {
+            staPercent_ = other.staPercent_;
+        }
+
+        public static pb::MessageParser<BattleAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[84]; }
+        }
+
+        public float StaPercent
+        {
+            get { return staPercent_; }
+            set { staPercent_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public BattleAttributes Clone()
+        {
+            return new BattleAttributes(this);
+        }
+
+        public bool Equals(BattleAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (StaPercent != other.StaPercent) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (StaPercent != 0F)
+            {
+                output.WriteRawTag(13);
+                output.WriteFloat(StaPercent);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (StaPercent != 0F)
+            {
+                size += 1 + 4;
+            }
+            return size;
+        }
+
+        public void MergeFrom(BattleAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.StaPercent != 0F)
+            {
+                StaPercent = other.StaPercent;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 13:
+                        {
+                            StaPercent = input.ReadFloat();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as BattleAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (StaPercent != 0F) hash ^= StaPercent.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EggIncubatorAttributes : pb::IMessage<EggIncubatorAttributes>
+    {
+        /// <summary>Field number for the "incubator_type" field.</summary>
+        public const int IncubatorTypeFieldNumber = 1;
+
+        /// <summary>Field number for the "uses" field.</summary>
+        public const int UsesFieldNumber = 2;
+
+        /// <summary>Field number for the "distance_multiplier" field.</summary>
+        public const int DistanceMultiplierFieldNumber = 3;
+
+        private static readonly pb::MessageParser<EggIncubatorAttributes> _parser =
+            new pb::MessageParser<EggIncubatorAttributes>(() => new EggIncubatorAttributes());
+
+        private float distanceMultiplier_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorType incubatorType_ = 0;
+        private int uses_;
+
+        public EggIncubatorAttributes()
+        {
+            OnConstruction();
+        }
+
+        public EggIncubatorAttributes(EggIncubatorAttributes other) : this()
+        {
+            incubatorType_ = other.incubatorType_;
+            uses_ = other.uses_;
+            distanceMultiplier_ = other.distanceMultiplier_;
+        }
+
+        public static pb::MessageParser<EggIncubatorAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[85]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorType IncubatorType
+        {
+            get { return incubatorType_; }
+            set { incubatorType_ = value; }
+        }
+
+        public int Uses
+        {
+            get { return uses_; }
+            set { uses_ = value; }
+        }
+
+        public float DistanceMultiplier
+        {
+            get { return distanceMultiplier_; }
+            set { distanceMultiplier_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EggIncubatorAttributes Clone()
+        {
+            return new EggIncubatorAttributes(this);
+        }
+
+        public bool Equals(EggIncubatorAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (IncubatorType != other.IncubatorType) return false;
+            if (Uses != other.Uses) return false;
+            if (DistanceMultiplier != other.DistanceMultiplier) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (IncubatorType != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)IncubatorType);
+            }
+            if (Uses != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(Uses);
+            }
+            if (DistanceMultiplier != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(DistanceMultiplier);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (IncubatorType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)IncubatorType);
+            }
+            if (Uses != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Uses);
+            }
+            if (DistanceMultiplier != 0F)
+            {
+                size += 1 + 4;
+            }
+            return size;
+        }
+
+        public void MergeFrom(EggIncubatorAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.IncubatorType != 0)
+            {
+                IncubatorType = other.IncubatorType;
+            }
+            if (other.Uses != 0)
+            {
+                Uses = other.Uses;
+            }
+            if (other.DistanceMultiplier != 0F)
+            {
+                DistanceMultiplier = other.DistanceMultiplier;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            incubatorType_ = (global::PokemonGo.RocketAPI.GeneratedCode.EggIncubatorType)input.ReadEnum();
+                            break;
+                        }
+                    case 16:
+                        {
+                            Uses = input.ReadInt32();
+                            break;
+                        }
+                    case 29:
+                        {
+                            DistanceMultiplier = input.ReadFloat();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EggIncubatorAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (IncubatorType != 0) hash ^= IncubatorType.GetHashCode();
+            if (Uses != 0) hash ^= Uses.GetHashCode();
+            if (DistanceMultiplier != 0F) hash ^= DistanceMultiplier.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class ExperienceBoostAttributes : pb::IMessage<ExperienceBoostAttributes>
+    {
+        /// <summary>Field number for the "xp_multiplier" field.</summary>
+        public const int XpMultiplierFieldNumber = 1;
+
+        /// <summary>Field number for the "boost_duration_ms" field.</summary>
+        public const int BoostDurationMsFieldNumber = 2;
+
+        private static readonly pb::MessageParser<ExperienceBoostAttributes> _parser =
+            new pb::MessageParser<ExperienceBoostAttributes>(() => new ExperienceBoostAttributes());
+
+        private int boostDurationMs_;
+        private float xpMultiplier_;
+
+        public ExperienceBoostAttributes()
+        {
+            OnConstruction();
+        }
+
+        public ExperienceBoostAttributes(ExperienceBoostAttributes other) : this()
+        {
+            xpMultiplier_ = other.xpMultiplier_;
+            boostDurationMs_ = other.boostDurationMs_;
+        }
+
+        public static pb::MessageParser<ExperienceBoostAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[86]; }
+        }
+
+        public float XpMultiplier
+        {
+            get { return xpMultiplier_; }
+            set { xpMultiplier_ = value; }
+        }
+
+        public int BoostDurationMs
+        {
+            get { return boostDurationMs_; }
+            set { boostDurationMs_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public ExperienceBoostAttributes Clone()
+        {
+            return new ExperienceBoostAttributes(this);
+        }
+
+        public bool Equals(ExperienceBoostAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (XpMultiplier != other.XpMultiplier) return false;
+            if (BoostDurationMs != other.BoostDurationMs) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (XpMultiplier != 0F)
+            {
+                output.WriteRawTag(13);
+                output.WriteFloat(XpMultiplier);
+            }
+            if (BoostDurationMs != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(BoostDurationMs);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (XpMultiplier != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (BoostDurationMs != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(BoostDurationMs);
+            }
+            return size;
+        }
+
+        public void MergeFrom(ExperienceBoostAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.XpMultiplier != 0F)
+            {
+                XpMultiplier = other.XpMultiplier;
+            }
+            if (other.BoostDurationMs != 0)
+            {
+                BoostDurationMs = other.BoostDurationMs;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 13:
+                        {
+                            XpMultiplier = input.ReadFloat();
+                            break;
+                        }
+                    case 16:
+                        {
+                            BoostDurationMs = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as ExperienceBoostAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (XpMultiplier != 0F) hash ^= XpMultiplier.GetHashCode();
+            if (BoostDurationMs != 0) hash ^= BoostDurationMs.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FoodAttributes : pb::IMessage<FoodAttributes>
+    {
+        /// <summary>Field number for the "item_effect" field.</summary>
+        public const int ItemEffectFieldNumber = 1;
+
+        /// <summary>Field number for the "item_effect_percent" field.</summary>
+        public const int ItemEffectPercentFieldNumber = 2;
+
+        /// <summary>Field number for the "growth_percent" field.</summary>
+        public const int GrowthPercentFieldNumber = 3;
+
+        private static readonly pb::MessageParser<FoodAttributes> _parser =
+            new pb::MessageParser<FoodAttributes>(() => new FoodAttributes());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect>
+            _repeated_itemEffect_codec
+                = pb::FieldCodec.ForEnum(10, x => (int)x, x => (global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect)x);
+
+        private static readonly pb::FieldCodec<float> _repeated_itemEffectPercent_codec
+            = pb::FieldCodec.ForFloat(18);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect> itemEffect_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect>();
+
+        private readonly pbc::RepeatedField<float> itemEffectPercent_ = new pbc::RepeatedField<float>();
+        private float growthPercent_;
+
+        public FoodAttributes()
+        {
+            OnConstruction();
+        }
+
+        public FoodAttributes(FoodAttributes other) : this()
+        {
+            itemEffect_ = other.itemEffect_.Clone();
+            itemEffectPercent_ = other.itemEffectPercent_.Clone();
+            growthPercent_ = other.growthPercent_;
+        }
+
+        public static pb::MessageParser<FoodAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[87]; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect> ItemEffect
+        {
+            get { return itemEffect_; }
+        }
+
+        public pbc::RepeatedField<float> ItemEffectPercent
+        {
+            get { return itemEffectPercent_; }
+        }
+
+        public float GrowthPercent
+        {
+            get { return growthPercent_; }
+            set { growthPercent_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FoodAttributes Clone()
+        {
+            return new FoodAttributes(this);
+        }
+
+        public bool Equals(FoodAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (!itemEffect_.Equals(other.itemEffect_)) return false;
+            if (!itemEffectPercent_.Equals(other.itemEffectPercent_)) return false;
+            if (GrowthPercent != other.GrowthPercent) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            itemEffect_.WriteTo(output, _repeated_itemEffect_codec);
+            itemEffectPercent_.WriteTo(output, _repeated_itemEffectPercent_codec);
+            if (GrowthPercent != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(GrowthPercent);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            size += itemEffect_.CalculateSize(_repeated_itemEffect_codec);
+            size += itemEffectPercent_.CalculateSize(_repeated_itemEffectPercent_codec);
+            if (GrowthPercent != 0F)
+            {
+                size += 1 + 4;
+            }
+            return size;
+        }
+
+        public void MergeFrom(FoodAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            itemEffect_.Add(other.itemEffect_);
+            itemEffectPercent_.Add(other.itemEffectPercent_);
+            if (other.GrowthPercent != 0F)
+            {
+                GrowthPercent = other.GrowthPercent;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 10:
+                    case 8:
+                        {
+                            itemEffect_.AddEntriesFrom(input, _repeated_itemEffect_codec);
+                            break;
+                        }
+                    case 18:
+                    case 21:
+                        {
+                            itemEffectPercent_.AddEntriesFrom(input, _repeated_itemEffectPercent_codec);
+                            break;
+                        }
+                    case 29:
+                        {
+                            GrowthPercent = input.ReadFloat();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FoodAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            hash ^= itemEffect_.GetHashCode();
+            hash ^= itemEffectPercent_.GetHashCode();
+            if (GrowthPercent != 0F) hash ^= GrowthPercent.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class FortModifierAttributes : pb::IMessage<FortModifierAttributes>
+    {
+        /// <summary>Field number for the "modifier_lifetime_seconds" field.</summary>
+        public const int ModifierLifetimeSecondsFieldNumber = 1;
+
+        /// <summary>Field number for the "troy_disk_num_pokemon_spawned" field.</summary>
+        public const int TroyDiskNumPokemonSpawnedFieldNumber = 2;
+
+        private static readonly pb::MessageParser<FortModifierAttributes> _parser =
+            new pb::MessageParser<FortModifierAttributes>(() => new FortModifierAttributes());
+
+        private int modifierLifetimeSeconds_;
+        private int troyDiskNumPokemonSpawned_;
+
+        public FortModifierAttributes()
+        {
+            OnConstruction();
+        }
+
+        public FortModifierAttributes(FortModifierAttributes other) : this()
+        {
+            modifierLifetimeSeconds_ = other.modifierLifetimeSeconds_;
+            troyDiskNumPokemonSpawned_ = other.troyDiskNumPokemonSpawned_;
+        }
+
+        public static pb::MessageParser<FortModifierAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[88]; }
+        }
+
+        public int ModifierLifetimeSeconds
+        {
+            get { return modifierLifetimeSeconds_; }
+            set { modifierLifetimeSeconds_ = value; }
+        }
+
+        public int TroyDiskNumPokemonSpawned
+        {
+            get { return troyDiskNumPokemonSpawned_; }
+            set { troyDiskNumPokemonSpawned_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public FortModifierAttributes Clone()
+        {
+            return new FortModifierAttributes(this);
+        }
+
+        public bool Equals(FortModifierAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ModifierLifetimeSeconds != other.ModifierLifetimeSeconds) return false;
+            if (TroyDiskNumPokemonSpawned != other.TroyDiskNumPokemonSpawned) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ModifierLifetimeSeconds != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(ModifierLifetimeSeconds);
+            }
+            if (TroyDiskNumPokemonSpawned != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(TroyDiskNumPokemonSpawned);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ModifierLifetimeSeconds != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ModifierLifetimeSeconds);
+            }
+            if (TroyDiskNumPokemonSpawned != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(TroyDiskNumPokemonSpawned);
+            }
+            return size;
+        }
+
+        public void MergeFrom(FortModifierAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ModifierLifetimeSeconds != 0)
+            {
+                ModifierLifetimeSeconds = other.ModifierLifetimeSeconds;
+            }
+            if (other.TroyDiskNumPokemonSpawned != 0)
+            {
+                TroyDiskNumPokemonSpawned = other.TroyDiskNumPokemonSpawned;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            ModifierLifetimeSeconds = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            TroyDiskNumPokemonSpawned = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as FortModifierAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ModifierLifetimeSeconds != 0) hash ^= ModifierLifetimeSeconds.GetHashCode();
+            if (TroyDiskNumPokemonSpawned != 0) hash ^= TroyDiskNumPokemonSpawned.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class IncenseAttributes : pb::IMessage<IncenseAttributes>
+    {
+        /// <summary>Field number for the "incense_lifetime_seconds" field.</summary>
+        public const int IncenseLifetimeSecondsFieldNumber = 1;
+
+        /// <summary>Field number for the "pokemon_type" field.</summary>
+        public const int PokemonTypeFieldNumber = 2;
+
+        /// <summary>Field number for the "pokemon_incense_type_probability" field.</summary>
+        public const int PokemonIncenseTypeProbabilityFieldNumber = 3;
+
+        /// <summary>Field number for the "standing_time_between_encounters_seconds" field.</summary>
+        public const int StandingTimeBetweenEncountersSecondsFieldNumber = 4;
+
+        /// <summary>Field number for the "moving_time_between_encounter_seconds" field.</summary>
+        public const int MovingTimeBetweenEncounterSecondsFieldNumber = 5;
+
+        /// <summary>Field number for the "distance_required_for_shorter_interval_meters" field.</summary>
+        public const int DistanceRequiredForShorterIntervalMetersFieldNumber = 6;
+
+        /// <summary>Field number for the "pokemon_attracted_length_sec" field.</summary>
+        public const int PokemonAttractedLengthSecFieldNumber = 7;
+
+        private static readonly pb::MessageParser<IncenseAttributes> _parser =
+            new pb::MessageParser<IncenseAttributes>(() => new IncenseAttributes());
+
+        private static readonly pb::FieldCodec<global::PokemonGo.RocketAPI.GeneratedCode.PokemonType>
+            _repeated_pokemonType_codec
+                = pb::FieldCodec.ForEnum(18, x => (int)x,
+                    x => (global::PokemonGo.RocketAPI.GeneratedCode.PokemonType)x);
+
+        private readonly pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonType> pokemonType_ =
+            new pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonType>();
+
+        private int distanceRequiredForShorterIntervalMeters_;
+        private int incenseLifetimeSeconds_;
+        private int movingTimeBetweenEncounterSeconds_;
+        private int pokemonAttractedLengthSec_;
+        private float pokemonIncenseTypeProbability_;
+        private int standingTimeBetweenEncountersSeconds_;
+
+        public IncenseAttributes()
+        {
+            OnConstruction();
+        }
+
+        public IncenseAttributes(IncenseAttributes other) : this()
+        {
+            incenseLifetimeSeconds_ = other.incenseLifetimeSeconds_;
+            pokemonType_ = other.pokemonType_.Clone();
+            pokemonIncenseTypeProbability_ = other.pokemonIncenseTypeProbability_;
+            standingTimeBetweenEncountersSeconds_ = other.standingTimeBetweenEncountersSeconds_;
+            movingTimeBetweenEncounterSeconds_ = other.movingTimeBetweenEncounterSeconds_;
+            distanceRequiredForShorterIntervalMeters_ = other.distanceRequiredForShorterIntervalMeters_;
+            pokemonAttractedLengthSec_ = other.pokemonAttractedLengthSec_;
+        }
+
+        public static pb::MessageParser<IncenseAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[89]; }
+        }
+
+        public int IncenseLifetimeSeconds
+        {
+            get { return incenseLifetimeSeconds_; }
+            set { incenseLifetimeSeconds_ = value; }
+        }
+
+        public pbc::RepeatedField<global::PokemonGo.RocketAPI.GeneratedCode.PokemonType> PokemonType
+        {
+            get { return pokemonType_; }
+        }
+
+        public float PokemonIncenseTypeProbability
+        {
+            get { return pokemonIncenseTypeProbability_; }
+            set { pokemonIncenseTypeProbability_ = value; }
+        }
+
+        public int StandingTimeBetweenEncountersSeconds
+        {
+            get { return standingTimeBetweenEncountersSeconds_; }
+            set { standingTimeBetweenEncountersSeconds_ = value; }
+        }
+
+        public int MovingTimeBetweenEncounterSeconds
+        {
+            get { return movingTimeBetweenEncounterSeconds_; }
+            set { movingTimeBetweenEncounterSeconds_ = value; }
+        }
+
+        public int DistanceRequiredForShorterIntervalMeters
+        {
+            get { return distanceRequiredForShorterIntervalMeters_; }
+            set { distanceRequiredForShorterIntervalMeters_ = value; }
+        }
+
+        public int PokemonAttractedLengthSec
+        {
+            get { return pokemonAttractedLengthSec_; }
+            set { pokemonAttractedLengthSec_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public IncenseAttributes Clone()
+        {
+            return new IncenseAttributes(this);
+        }
+
+        public bool Equals(IncenseAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (IncenseLifetimeSeconds != other.IncenseLifetimeSeconds) return false;
+            if (!pokemonType_.Equals(other.pokemonType_)) return false;
+            if (PokemonIncenseTypeProbability != other.PokemonIncenseTypeProbability) return false;
+            if (StandingTimeBetweenEncountersSeconds != other.StandingTimeBetweenEncountersSeconds) return false;
+            if (MovingTimeBetweenEncounterSeconds != other.MovingTimeBetweenEncounterSeconds) return false;
+            if (DistanceRequiredForShorterIntervalMeters != other.DistanceRequiredForShorterIntervalMeters)
+                return false;
+            if (PokemonAttractedLengthSec != other.PokemonAttractedLengthSec) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (IncenseLifetimeSeconds != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(IncenseLifetimeSeconds);
+            }
+            pokemonType_.WriteTo(output, _repeated_pokemonType_codec);
+            if (PokemonIncenseTypeProbability != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(PokemonIncenseTypeProbability);
+            }
+            if (StandingTimeBetweenEncountersSeconds != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(StandingTimeBetweenEncountersSeconds);
+            }
+            if (MovingTimeBetweenEncounterSeconds != 0)
+            {
+                output.WriteRawTag(40);
+                output.WriteInt32(MovingTimeBetweenEncounterSeconds);
+            }
+            if (DistanceRequiredForShorterIntervalMeters != 0)
+            {
+                output.WriteRawTag(48);
+                output.WriteInt32(DistanceRequiredForShorterIntervalMeters);
+            }
+            if (PokemonAttractedLengthSec != 0)
+            {
+                output.WriteRawTag(56);
+                output.WriteInt32(PokemonAttractedLengthSec);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (IncenseLifetimeSeconds != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(IncenseLifetimeSeconds);
+            }
+            size += pokemonType_.CalculateSize(_repeated_pokemonType_codec);
+            if (PokemonIncenseTypeProbability != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (StandingTimeBetweenEncountersSeconds != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(StandingTimeBetweenEncountersSeconds);
+            }
+            if (MovingTimeBetweenEncounterSeconds != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(MovingTimeBetweenEncounterSeconds);
+            }
+            if (DistanceRequiredForShorterIntervalMeters != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(DistanceRequiredForShorterIntervalMeters);
+            }
+            if (PokemonAttractedLengthSec != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(PokemonAttractedLengthSec);
+            }
+            return size;
+        }
+
+        public void MergeFrom(IncenseAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.IncenseLifetimeSeconds != 0)
+            {
+                IncenseLifetimeSeconds = other.IncenseLifetimeSeconds;
+            }
+            pokemonType_.Add(other.pokemonType_);
+            if (other.PokemonIncenseTypeProbability != 0F)
+            {
+                PokemonIncenseTypeProbability = other.PokemonIncenseTypeProbability;
+            }
+            if (other.StandingTimeBetweenEncountersSeconds != 0)
+            {
+                StandingTimeBetweenEncountersSeconds = other.StandingTimeBetweenEncountersSeconds;
+            }
+            if (other.MovingTimeBetweenEncounterSeconds != 0)
+            {
+                MovingTimeBetweenEncounterSeconds = other.MovingTimeBetweenEncounterSeconds;
+            }
+            if (other.DistanceRequiredForShorterIntervalMeters != 0)
+            {
+                DistanceRequiredForShorterIntervalMeters = other.DistanceRequiredForShorterIntervalMeters;
+            }
+            if (other.PokemonAttractedLengthSec != 0)
+            {
+                PokemonAttractedLengthSec = other.PokemonAttractedLengthSec;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            IncenseLifetimeSeconds = input.ReadInt32();
+                            break;
+                        }
+                    case 18:
+                    case 16:
+                        {
+                            pokemonType_.AddEntriesFrom(input, _repeated_pokemonType_codec);
+                            break;
+                        }
+                    case 29:
+                        {
+                            PokemonIncenseTypeProbability = input.ReadFloat();
+                            break;
+                        }
+                    case 32:
+                        {
+                            StandingTimeBetweenEncountersSeconds = input.ReadInt32();
+                            break;
+                        }
+                    case 40:
+                        {
+                            MovingTimeBetweenEncounterSeconds = input.ReadInt32();
+                            break;
+                        }
+                    case 48:
+                        {
+                            DistanceRequiredForShorterIntervalMeters = input.ReadInt32();
+                            break;
+                        }
+                    case 56:
+                        {
+                            PokemonAttractedLengthSec = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as IncenseAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (IncenseLifetimeSeconds != 0) hash ^= IncenseLifetimeSeconds.GetHashCode();
+            hash ^= pokemonType_.GetHashCode();
+            if (PokemonIncenseTypeProbability != 0F) hash ^= PokemonIncenseTypeProbability.GetHashCode();
+            if (StandingTimeBetweenEncountersSeconds != 0) hash ^= StandingTimeBetweenEncountersSeconds.GetHashCode();
+            if (MovingTimeBetweenEncounterSeconds != 0) hash ^= MovingTimeBetweenEncounterSeconds.GetHashCode();
+            if (DistanceRequiredForShorterIntervalMeters != 0)
+                hash ^= DistanceRequiredForShorterIntervalMeters.GetHashCode();
+            if (PokemonAttractedLengthSec != 0) hash ^= PokemonAttractedLengthSec.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class InventoryUpgradeAttributes : pb::IMessage<InventoryUpgradeAttributes>
+    {
+        /// <summary>Field number for the "additional_storage" field.</summary>
+        public const int AdditionalStorageFieldNumber = 1;
+
+        /// <summary>Field number for the "upgrade_type" field.</summary>
+        public const int UpgradeTypeFieldNumber = 2;
+
+        private static readonly pb::MessageParser<InventoryUpgradeAttributes> _parser =
+            new pb::MessageParser<InventoryUpgradeAttributes>(() => new InventoryUpgradeAttributes());
+
+        private int additionalStorage_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeType upgradeType_ = 0;
+
+        public InventoryUpgradeAttributes()
+        {
+            OnConstruction();
+        }
+
+        public InventoryUpgradeAttributes(InventoryUpgradeAttributes other) : this()
+        {
+            additionalStorage_ = other.additionalStorage_;
+            upgradeType_ = other.upgradeType_;
+        }
+
+        public static pb::MessageParser<InventoryUpgradeAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[90]; }
+        }
+
+        public int AdditionalStorage
+        {
+            get { return additionalStorage_; }
+            set { additionalStorage_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeType UpgradeType
+        {
+            get { return upgradeType_; }
+            set { upgradeType_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public InventoryUpgradeAttributes Clone()
+        {
+            return new InventoryUpgradeAttributes(this);
+        }
+
+        public bool Equals(InventoryUpgradeAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (AdditionalStorage != other.AdditionalStorage) return false;
+            if (UpgradeType != other.UpgradeType) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (AdditionalStorage != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(AdditionalStorage);
+            }
+            if (UpgradeType != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteEnum((int)UpgradeType);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (AdditionalStorage != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(AdditionalStorage);
+            }
+            if (UpgradeType != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)UpgradeType);
+            }
+            return size;
+        }
+
+        public void MergeFrom(InventoryUpgradeAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.AdditionalStorage != 0)
+            {
+                AdditionalStorage = other.AdditionalStorage;
+            }
+            if (other.UpgradeType != 0)
+            {
+                UpgradeType = other.UpgradeType;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            AdditionalStorage = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            upgradeType_ = (global::PokemonGo.RocketAPI.GeneratedCode.InventoryUpgradeType)input.ReadEnum();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as InventoryUpgradeAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (AdditionalStorage != 0) hash ^= AdditionalStorage.GetHashCode();
+            if (UpgradeType != 0) hash ^= UpgradeType.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PokeballAttributes : pb::IMessage<PokeballAttributes>
+    {
+        /// <summary>Field number for the "item_effect" field.</summary>
+        public const int ItemEffectFieldNumber = 1;
+
+        /// <summary>Field number for the "capture_multi" field.</summary>
+        public const int CaptureMultiFieldNumber = 2;
+
+        /// <summary>Field number for the "capture_multi_effect" field.</summary>
+        public const int CaptureMultiEffectFieldNumber = 3;
+
+        /// <summary>Field number for the "item_effect_mod" field.</summary>
+        public const int ItemEffectModFieldNumber = 4;
+
+        private static readonly pb::MessageParser<PokeballAttributes> _parser =
+            new pb::MessageParser<PokeballAttributes>(() => new PokeballAttributes());
+
+        private float captureMulti_;
+        private float captureMultiEffect_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect itemEffect_ = 0;
+        private float itemEffectMod_;
+
+        public PokeballAttributes()
+        {
+            OnConstruction();
+        }
+
+        public PokeballAttributes(PokeballAttributes other) : this()
+        {
+            itemEffect_ = other.itemEffect_;
+            captureMulti_ = other.captureMulti_;
+            captureMultiEffect_ = other.captureMultiEffect_;
+            itemEffectMod_ = other.itemEffectMod_;
+        }
+
+        public static pb::MessageParser<PokeballAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[91]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect ItemEffect
+        {
+            get { return itemEffect_; }
+            set { itemEffect_ = value; }
+        }
+
+        public float CaptureMulti
+        {
+            get { return captureMulti_; }
+            set { captureMulti_ = value; }
+        }
+
+        public float CaptureMultiEffect
+        {
+            get { return captureMultiEffect_; }
+            set { captureMultiEffect_ = value; }
+        }
+
+        public float ItemEffectMod
+        {
+            get { return itemEffectMod_; }
+            set { itemEffectMod_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PokeballAttributes Clone()
+        {
+            return new PokeballAttributes(this);
+        }
+
+        public bool Equals(PokeballAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (ItemEffect != other.ItemEffect) return false;
+            if (CaptureMulti != other.CaptureMulti) return false;
+            if (CaptureMultiEffect != other.CaptureMultiEffect) return false;
+            if (ItemEffectMod != other.ItemEffectMod) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (ItemEffect != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)ItemEffect);
+            }
+            if (CaptureMulti != 0F)
+            {
+                output.WriteRawTag(21);
+                output.WriteFloat(CaptureMulti);
+            }
+            if (CaptureMultiEffect != 0F)
+            {
+                output.WriteRawTag(29);
+                output.WriteFloat(CaptureMultiEffect);
+            }
+            if (ItemEffectMod != 0F)
+            {
+                output.WriteRawTag(37);
+                output.WriteFloat(ItemEffectMod);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (ItemEffect != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)ItemEffect);
+            }
+            if (CaptureMulti != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (CaptureMultiEffect != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (ItemEffectMod != 0F)
+            {
+                size += 1 + 4;
+            }
+            return size;
+        }
+
+        public void MergeFrom(PokeballAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.ItemEffect != 0)
+            {
+                ItemEffect = other.ItemEffect;
+            }
+            if (other.CaptureMulti != 0F)
+            {
+                CaptureMulti = other.CaptureMulti;
+            }
+            if (other.CaptureMultiEffect != 0F)
+            {
+                CaptureMultiEffect = other.CaptureMultiEffect;
+            }
+            if (other.ItemEffectMod != 0F)
+            {
+                ItemEffectMod = other.ItemEffectMod;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            itemEffect_ = (global::PokemonGo.RocketAPI.GeneratedCode.ItemEffect)input.ReadEnum();
+                            break;
+                        }
+                    case 21:
+                        {
+                            CaptureMulti = input.ReadFloat();
+                            break;
+                        }
+                    case 29:
+                        {
+                            CaptureMultiEffect = input.ReadFloat();
+                            break;
+                        }
+                    case 37:
+                        {
+                            ItemEffectMod = input.ReadFloat();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PokeballAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (ItemEffect != 0) hash ^= ItemEffect.GetHashCode();
+            if (CaptureMulti != 0F) hash ^= CaptureMulti.GetHashCode();
+            if (CaptureMultiEffect != 0F) hash ^= CaptureMultiEffect.GetHashCode();
+            if (ItemEffectMod != 0F) hash ^= ItemEffectMod.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class PotionAttributes : pb::IMessage<PotionAttributes>
+    {
+        /// <summary>Field number for the "sta_percent" field.</summary>
+        public const int StaPercentFieldNumber = 1;
+
+        /// <summary>Field number for the "sta_amount" field.</summary>
+        public const int StaAmountFieldNumber = 2;
+
+        private static readonly pb::MessageParser<PotionAttributes> _parser =
+            new pb::MessageParser<PotionAttributes>(() => new PotionAttributes());
+
+        private int staAmount_;
+        private float staPercent_;
+
+        public PotionAttributes()
+        {
+            OnConstruction();
+        }
+
+        public PotionAttributes(PotionAttributes other) : this()
+        {
+            staPercent_ = other.staPercent_;
+            staAmount_ = other.staAmount_;
+        }
+
+        public static pb::MessageParser<PotionAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[92]; }
+        }
+
+        public float StaPercent
+        {
+            get { return staPercent_; }
+            set { staPercent_ = value; }
+        }
+
+        public int StaAmount
+        {
+            get { return staAmount_; }
+            set { staAmount_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public PotionAttributes Clone()
+        {
+            return new PotionAttributes(this);
+        }
+
+        public bool Equals(PotionAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (StaPercent != other.StaPercent) return false;
+            if (StaAmount != other.StaAmount) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (StaPercent != 0F)
+            {
+                output.WriteRawTag(13);
+                output.WriteFloat(StaPercent);
+            }
+            if (StaAmount != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(StaAmount);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (StaPercent != 0F)
+            {
+                size += 1 + 4;
+            }
+            if (StaAmount != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(StaAmount);
+            }
+            return size;
+        }
+
+        public void MergeFrom(PotionAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.StaPercent != 0F)
+            {
+                StaPercent = other.StaPercent;
+            }
+            if (other.StaAmount != 0)
+            {
+                StaAmount = other.StaAmount;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 13:
+                        {
+                            StaPercent = input.ReadFloat();
+                            break;
+                        }
+                    case 16:
+                        {
+                            StaAmount = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as PotionAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (StaPercent != 0F) hash ^= StaPercent.GetHashCode();
+            if (StaAmount != 0) hash ^= StaAmount.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class ReviveAttributes : pb::IMessage<ReviveAttributes>
+    {
+        /// <summary>Field number for the "sta_percent" field.</summary>
+        public const int StaPercentFieldNumber = 1;
+
+        private static readonly pb::MessageParser<ReviveAttributes> _parser =
+            new pb::MessageParser<ReviveAttributes>(() => new ReviveAttributes());
+
+        private float staPercent_;
+
+        public ReviveAttributes()
+        {
+            OnConstruction();
+        }
+
+        public ReviveAttributes(ReviveAttributes other) : this()
+        {
+            staPercent_ = other.staPercent_;
+        }
+
+        public static pb::MessageParser<ReviveAttributes> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[93]; }
+        }
+
+        public float StaPercent
+        {
+            get { return staPercent_; }
+            set { staPercent_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public ReviveAttributes Clone()
+        {
+            return new ReviveAttributes(this);
+        }
+
+        public bool Equals(ReviveAttributes other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (StaPercent != other.StaPercent) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (StaPercent != 0F)
+            {
+                output.WriteRawTag(13);
+                output.WriteFloat(StaPercent);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (StaPercent != 0F)
+            {
+                size += 1 + 4;
+            }
+            return size;
+        }
+
+        public void MergeFrom(ReviveAttributes other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.StaPercent != 0F)
+            {
+                StaPercent = other.StaPercent;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 13:
+                        {
+                            StaPercent = input.ReadFloat();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as ReviveAttributes);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (StaPercent != 0F) hash ^= StaPercent.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    /// <summary>
+    ///     POKEMON TRANSFER
+    /// </summary>
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class TransferPokemon : pb::IMessage<TransferPokemon>
+    {
+        /// <summary>Field number for the "PokemonId" field.</summary>
+        public const int PokemonIdFieldNumber = 1;
+
+        private static readonly pb::MessageParser<TransferPokemon> _parser =
+            new pb::MessageParser<TransferPokemon>(() => new TransferPokemon());
+
+        private ulong pokemonId_;
+
+        public TransferPokemon()
+        {
+            OnConstruction();
+        }
+
+        public TransferPokemon(TransferPokemon other) : this()
+        {
+            pokemonId_ = other.pokemonId_;
+        }
+
+        public static pb::MessageParser<TransferPokemon> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[94]; }
+        }
+
+        public ulong PokemonId
+        {
+            get { return pokemonId_; }
+            set { pokemonId_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public TransferPokemon Clone()
+        {
+            return new TransferPokemon(this);
+        }
+
+        public bool Equals(TransferPokemon other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (PokemonId != other.PokemonId) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (PokemonId != 0UL)
+            {
+                output.WriteRawTag(9);
+                output.WriteFixed64(PokemonId);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (PokemonId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(TransferPokemon other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.PokemonId != 0UL)
+            {
+                PokemonId = other.PokemonId;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            PokemonId = input.ReadFixed64();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as TransferPokemon);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (PokemonId != 0UL) hash ^= PokemonId.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class TransferPokemonOut : pb::IMessage<TransferPokemonOut>
+    {
+        /// <summary>Field number for the "Status" field.</summary>
+        public const int StatusFieldNumber = 1;
+
+        /// <summary>Field number for the "CandyAwarded" field.</summary>
+        public const int CandyAwardedFieldNumber = 2;
+
+        private static readonly pb::MessageParser<TransferPokemonOut> _parser =
+            new pb::MessageParser<TransferPokemonOut>(() => new TransferPokemonOut());
+
+        private int candyAwarded_;
+        private int status_;
+
+        public TransferPokemonOut()
+        {
+            OnConstruction();
+        }
+
+        public TransferPokemonOut(TransferPokemonOut other) : this()
+        {
+            status_ = other.status_;
+            candyAwarded_ = other.candyAwarded_;
+        }
+
+        public static pb::MessageParser<TransferPokemonOut> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[95]; }
+        }
+
+        public int Status
+        {
+            get { return status_; }
+            set { status_ = value; }
+        }
+
+        public int CandyAwarded
+        {
+            get { return candyAwarded_; }
+            set { candyAwarded_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public TransferPokemonOut Clone()
+        {
+            return new TransferPokemonOut(this);
+        }
+
+        public bool Equals(TransferPokemonOut other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Status != other.Status) return false;
+            if (CandyAwarded != other.CandyAwarded) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Status != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteInt32(Status);
+            }
+            if (CandyAwarded != 0)
+            {
+                output.WriteRawTag(16);
+                output.WriteInt32(CandyAwarded);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Status != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(Status);
+            }
+            if (CandyAwarded != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(CandyAwarded);
+            }
+            return size;
+        }
+
+        public void MergeFrom(TransferPokemonOut other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Status != 0)
+            {
+                Status = other.Status;
+            }
+            if (other.CandyAwarded != 0)
+            {
+                CandyAwarded = other.CandyAwarded;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            Status = input.ReadInt32();
+                            break;
+                        }
+                    case 16:
+                        {
+                            CandyAwarded = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as TransferPokemonOut);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Status != 0) hash ^= Status.GetHashCode();
+            if (CandyAwarded != 0) hash ^= CandyAwarded.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    /// <summary>
+    ///     EVOLVE
+    /// </summary>
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EvolvePokemon : pb::IMessage<EvolvePokemon>
+    {
+        /// <summary>Field number for the "PokemonId" field.</summary>
+        public const int PokemonIdFieldNumber = 1;
+
+        private static readonly pb::MessageParser<EvolvePokemon> _parser =
+            new pb::MessageParser<EvolvePokemon>(() => new EvolvePokemon());
+
+        private ulong pokemonId_;
+
+        public EvolvePokemon()
+        {
+            OnConstruction();
+        }
+
+        public EvolvePokemon(EvolvePokemon other) : this()
+        {
+            pokemonId_ = other.pokemonId_;
+        }
+
+        public static pb::MessageParser<EvolvePokemon> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[96]; }
+        }
+
+        public ulong PokemonId
+        {
+            get { return pokemonId_; }
+            set { pokemonId_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EvolvePokemon Clone()
+        {
+            return new EvolvePokemon(this);
+        }
+
+        public bool Equals(EvolvePokemon other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (PokemonId != other.PokemonId) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (PokemonId != 0UL)
+            {
+                output.WriteRawTag(9);
+                output.WriteFixed64(PokemonId);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (PokemonId != 0UL)
+            {
+                size += 1 + 8;
+            }
+            return size;
+        }
+
+        public void MergeFrom(EvolvePokemon other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.PokemonId != 0UL)
+            {
+                PokemonId = other.PokemonId;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 9:
+                        {
+                            PokemonId = input.ReadFixed64();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EvolvePokemon);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (PokemonId != 0UL) hash ^= PokemonId.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+    }
+
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    public sealed partial class EvolvePokemonOut : pb::IMessage<EvolvePokemonOut>
+    {
+        /// <summary>Field number for the "Result" field.</summary>
+        public const int ResultFieldNumber = 1;
+
+        /// <summary>Field number for the "EvolvedPokemon" field.</summary>
+        public const int EvolvedPokemonFieldNumber = 2;
+
+        /// <summary>Field number for the "ExpAwarded" field.</summary>
+        public const int ExpAwardedFieldNumber = 3;
+
+        /// <summary>Field number for the "CandyAwarded" field.</summary>
+        public const int CandyAwardedFieldNumber = 4;
+
+        private static readonly pb::MessageParser<EvolvePokemonOut> _parser =
+            new pb::MessageParser<EvolvePokemonOut>(() => new EvolvePokemonOut());
+
+        private int candyAwarded_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.Pokemon evolvedPokemon_;
+        private int expAwarded_;
+        private global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Types.EvolvePokemonStatus result_ = 0;
+
+        public EvolvePokemonOut()
+        {
+            OnConstruction();
+        }
+
+        public EvolvePokemonOut(EvolvePokemonOut other) : this()
+        {
+            result_ = other.result_;
+            EvolvedPokemon = other.evolvedPokemon_ != null ? other.EvolvedPokemon.Clone() : null;
+            expAwarded_ = other.expAwarded_;
+            candyAwarded_ = other.candyAwarded_;
+        }
+
+        public static pb::MessageParser<EvolvePokemonOut> Parser
+        {
+            get { return _parser; }
+        }
+
+        public static pbr::MessageDescriptor Descriptor
+        {
+            get { return global::PokemonGo.RocketAPI.GeneratedCode.PayloadsReflection.Descriptor.MessageTypes[97]; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Types.EvolvePokemonStatus Result
+        {
+            get { return result_; }
+            set { result_ = value; }
+        }
+
+        public global::PokemonGo.RocketAPI.GeneratedCode.Pokemon EvolvedPokemon
+        {
+            get { return evolvedPokemon_; }
+            set { evolvedPokemon_ = value; }
+        }
+
+        public int ExpAwarded
+        {
+            get { return expAwarded_; }
+            set { expAwarded_ = value; }
+        }
+
+        public int CandyAwarded
+        {
+            get { return candyAwarded_; }
+            set { candyAwarded_ = value; }
+        }
+
+        pbr::MessageDescriptor pb::IMessage.Descriptor
+        {
+            get { return Descriptor; }
+        }
+
+        public EvolvePokemonOut Clone()
+        {
+            return new EvolvePokemonOut(this);
+        }
+
+        public bool Equals(EvolvePokemonOut other)
+        {
+            if (ReferenceEquals(other, null))
+            {
+                return false;
+            }
+            if (ReferenceEquals(other, this))
+            {
+                return true;
+            }
+            if (Result != other.Result) return false;
+            if (!Equals(EvolvedPokemon, other.EvolvedPokemon)) return false;
+            if (ExpAwarded != other.ExpAwarded) return false;
+            if (CandyAwarded != other.CandyAwarded) return false;
+            return true;
+        }
+
+        public void WriteTo(pb::CodedOutputStream output)
+        {
+            if (Result != 0)
+            {
+                output.WriteRawTag(8);
+                output.WriteEnum((int)Result);
+            }
+            if (evolvedPokemon_ != null)
+            {
+                output.WriteRawTag(18);
+                output.WriteMessage(EvolvedPokemon);
+            }
+            if (ExpAwarded != 0)
+            {
+                output.WriteRawTag(24);
+                output.WriteInt32(ExpAwarded);
+            }
+            if (CandyAwarded != 0)
+            {
+                output.WriteRawTag(32);
+                output.WriteInt32(CandyAwarded);
+            }
+        }
+
+        public int CalculateSize()
+        {
+            var size = 0;
+            if (Result != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeEnumSize((int)Result);
+            }
+            if (evolvedPokemon_ != null)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeMessageSize(EvolvedPokemon);
+            }
+            if (ExpAwarded != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(ExpAwarded);
+            }
+            if (CandyAwarded != 0)
+            {
+                size += 1 + pb::CodedOutputStream.ComputeInt32Size(CandyAwarded);
+            }
+            return size;
+        }
+
+        public void MergeFrom(EvolvePokemonOut other)
+        {
+            if (other == null)
+            {
+                return;
+            }
+            if (other.Result != 0)
+            {
+                Result = other.Result;
+            }
+            if (other.evolvedPokemon_ != null)
+            {
+                if (evolvedPokemon_ == null)
+                {
+                    evolvedPokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.Pokemon();
+                }
+                EvolvedPokemon.MergeFrom(other.EvolvedPokemon);
+            }
+            if (other.ExpAwarded != 0)
+            {
+                ExpAwarded = other.ExpAwarded;
+            }
+            if (other.CandyAwarded != 0)
+            {
+                CandyAwarded = other.CandyAwarded;
+            }
+        }
+
+        public void MergeFrom(pb::CodedInputStream input)
+        {
+            uint tag;
+            while ((tag = input.ReadTag()) != 0)
+            {
+                switch (tag)
+                {
+                    default:
+                        input.SkipLastField();
+                        break;
+                    case 8:
+                        {
+                            result_ =
+                                (global::PokemonGo.RocketAPI.GeneratedCode.EvolvePokemonOut.Types.EvolvePokemonStatus)
+                                    input.ReadEnum();
+                            break;
+                        }
+                    case 18:
+                        {
+                            if (evolvedPokemon_ == null)
+                            {
+                                evolvedPokemon_ = new global::PokemonGo.RocketAPI.GeneratedCode.Pokemon();
+                            }
+                            input.ReadMessage(evolvedPokemon_);
+                            break;
+                        }
+                    case 24:
+                        {
+                            ExpAwarded = input.ReadInt32();
+                            break;
+                        }
+                    case 32:
+                        {
+                            CandyAwarded = input.ReadInt32();
+                            break;
+                        }
+                }
+            }
+        }
+
+        public override bool Equals(object other)
+        {
+            return Equals(other as EvolvePokemonOut);
+        }
+
+        public override int GetHashCode()
+        {
+            var hash = 1;
+            if (Result != 0) hash ^= Result.GetHashCode();
+            if (evolvedPokemon_ != null) hash ^= EvolvedPokemon.GetHashCode();
+            if (ExpAwarded != 0) hash ^= ExpAwarded.GetHashCode();
+            if (CandyAwarded != 0) hash ^= CandyAwarded.GetHashCode();
+            return hash;
+        }
+
+        partial void OnConstruction();
+
+        public override string ToString()
+        {
+            return pb::JsonFormatter.ToDiagnosticString(this);
+        }
+
+        #region Nested types
+
+        /// <summary>Container for nested types declared in the EvolvePokemonOut message type.</summary>
+        [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        public static partial class Types
+        {
+            public enum EvolvePokemonStatus
+            {
+                [pbr::OriginalName("POKEMON_EVOLVED_UNSET")]
+                PokemonEvolvedUnset = 0,
+                [pbr::OriginalName("POKEMON_EVOLVED_SUCCESS")]
+                PokemonEvolvedSuccess = 1,
+                [pbr::OriginalName("FAILED_POKEMON_MISSING")]
+                FailedPokemonMissing = 2,
+                [pbr::OriginalName("FAILED_INSUFFICIENT_RESOURCES")]
+                FailedInsufficientResources = 3,
+                [pbr::OriginalName("FAILED_POKEMON_CANNOT_EVOLVE")]
+                FailedPokemonCannotEvolve = 4,
+                [pbr::OriginalName("FAILED_POKEMON_IS_DEPLOYED")]
+                FailedPokemonIsDeployed = 5,
+            }
+        }
+
+        #endregion
+    }
+
+    #endregion
+}
+
 #endregion Designer generated code
\ No newline at end of file
diff --git a/PokemonGo.RocketAPI/Helpers/Utils.cs b/PokemonGo.RocketAPI/Helpers/Utils.cs
index b28cf30..724f982 100644
--- a/PokemonGo.RocketAPI/Helpers/Utils.cs
+++ b/PokemonGo.RocketAPI/Helpers/Utils.cs
@@ -1,10 +1,11 @@
 #region

 using System;
-
+using System.IO;
+
 #endregion
-
-
+
+
 namespace PokemonGo.RocketAPI.Helpers
 {
     public class Utils
@@ -14,6 +15,5 @@ namespace PokemonGo.RocketAPI.Helpers
             var bytes = BitConverter.GetBytes(value);
             return BitConverter.ToUInt64(bytes, 0);
         }
-
     }
 }
diff --git a/PokemonGo.RocketAPI/ISettings.cs b/PokemonGo.RocketAPI/ISettings.cs
index 76deca6..3e5e245 100644
--- a/PokemonGo.RocketAPI/ISettings.cs
+++ b/PokemonGo.RocketAPI/ISettings.cs
@@ -3,7 +3,6 @@
 using PokemonGo.RocketAPI.Enums;
 using System.Collections.Generic;
 using PokemonGo.RocketAPI.GeneratedCode;
-using AllEnum;

 #endregion

diff --git a/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj b/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
index 65ff04d..e6b8ae8 100644
--- a/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
+++ b/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
@@ -17,7 +17,7 @@
     <UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
     <AssemblyVersionSettings>YearStamp.MonthStamp.DayStamp.Increment</AssemblyVersionSettings>
     <PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
-    <AssemblyVersion>2016.7.23.133</AssemblyVersion>
+    <AssemblyVersion>2016.7.23.159</AssemblyVersion>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <DebugSymbols>true</DebugSymbols>
@@ -86,6 +86,7 @@
     <Compile Include="Enums\MiscEnums.cs" />
     <Compile Include="Enums\RequestType.cs" />
     <Compile Include="Exceptions\AccessTokenExpiredException.cs" />
+    <Compile Include="Exceptions\AccountNotVerifiedException.cs" />
     <Compile Include="Exceptions\InvalidResponseException.cs" />
     <Compile Include="Exceptions\PtcOfflineException.cs" />
     <Compile Include="Extensions\DateTimeExtensions.cs" />
@@ -113,6 +114,7 @@
     <Compile Include="Extensions\HttpClientExtensions.cs" />
     <Compile Include="Helpers\RandomHelper.cs" />
     <Compile Include="Helpers\RequestBuilder.cs" />
+    <Compile Include="PokemonInfo.cs" />
     <Compile Include="Resources.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
   </ItemGroup>
diff --git a/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs b/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
index 0478559..3273a9e 100644
--- a/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
+++ b/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
 // You can specify all the values or you can default the Build and Revision Numbers
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2016.7.23.133")]
+[assembly: AssemblyVersion("2016.7.23.159")]
 [assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/PokemonGo.RocketAPI/Proto/Payloads.proto b/PokemonGo.RocketAPI/Proto/Payloads.proto
index fcbbda3..3056709 100644
--- a/PokemonGo.RocketAPI/Proto/Payloads.proto
+++ b/PokemonGo.RocketAPI/Proto/Payloads.proto
@@ -98,7 +98,7 @@ message Pokemon {
   int32 individual_attack = 17;
   int32 individual_defense = 18;
   int32 individual_stamina = 19;
-  int32 cp_multiplier = 20;
+  float cp_multiplier = 20;
   int32 pokeball = 21;
   uint64 captured_cell_id = 22;
   int32 battles_attacked = 23;
@@ -106,7 +106,7 @@ message Pokemon {
   int32 egg_incubator_id = 25;
   uint64 creation_time_ms = 26;
   int32 num_upgrades = 27;
-  int32 additional_cp_multiplier = 28;
+  float additional_cp_multiplier = 28;
   int32 favorite = 29;
   string nickname = 30;
   int32 from_fort = 31;
@@ -315,7 +315,7 @@ message PokemonData {
   int32 individual_attack = 17;
   int32 individual_defense = 18;
   int32 individual_stamina = 19;
-  int32 cp_multiplier = 20;
+  float cp_multiplier = 20;
   int32 pokeball = 21;
   uint64 captured_cell_id = 22;
   int32 battles_attacked = 23;
@@ -323,7 +323,7 @@ message PokemonData {
   int32 egg_incubator_id = 25;
   uint64 creation_time_ms = 26;
   int32 num_upgrades = 27;
-  int32 additional_cp_multiplier = 28;
+  float additional_cp_multiplier = 28;
   int32 favorite = 29;
   string nickname = 30;
   int32 from_fort = 31;
You may download the files in Public Git.